Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - alvarotm01

Pages: 1 ... 3 4 [5] 6 7 ... 23
61
para crearla puedes ejecutar este script en la base de datos
Code: [Select]
CREATE TABLE  `opengoo`.`og_queued_emails` (
  `id` int(10) NOT NULL auto_increment,
  `to` text collate utf8_unicode_ci,
  `from` text collate utf8_unicode_ci,
  `subject` text collate utf8_unicode_ci,
  `body` text collate utf8_unicode_ci,
  `timestamp` datetime NOT NULL default '0000-00-00 00:00:00',
  PRIMARY KEY  (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

saludos

62
Older versions / Re: Repeating events, Holiday style
« on: August 28, 2009, 03:17:02 pm »
Hi,

The repeat holiday mode for events has been modified for version 1.6.
Now you will be able to add a repeating event in the <1st, 2nd, 3rd, 4th> <Sun, Mon, ...,Sat> every X months.

regards

63
Hi,
to fix the issue when sending mails, you can replace line 367 of /environment/classes/mail/MailUtilities.class.php with this code
Code: [Select]
if (is_array($v)) {
if (isset($v[1]) && trim($v[1]) == '') unset($to[$k]);
}
else if (trim($v) == '') unset($to[$k]);

About the received mails that not appear in inbox, they can be sent mails, so in that case they will appear in the sent box. If not, please tell us.

regards

64
Older versions / Re: error after reply on a mail
« on: August 28, 2009, 02:41:55 pm »
Hi,
is there any javascript error in the bottom left of the browser?
if not, can you try this using Firefox?, because firefox throws a more detailed error message (if error occurs in firefox)

65
to apply the patch you must replace lines 369 - 372 of /environment/classes/mail/MailUtilities.class.php
Code: [Select]
$cc = trim($cc, " ,");
$bcc = trim($bcc, " ,");
if ($cc != '') $mailer->addCc(explode(",", $cc));
if ($bcc != '') $mailer->addBcc(explode(",", $bcc));
for these ones:
Code: [Select]
$ccArr = explode(",", $cc);
foreach ($ccArr as $k => $v) {
if (trim($v) == '') unset($ccArr[$k]);
}
if(count($ccArr)>0) $mailer->addCc($ccArr);
$bccArr = explode(",", $bcc);
foreach ($bccArr as $k => $v) {
if (trim($v) == '') unset($bccArr[$k]);
}
if(count($bccArr)>0) $mailer->addBcc($bccArr);

66
Hi,
We agree that this notification should not be sent to all subscribers, this behaviour will be modified in version 1.6.

regards

67
Older versions / Re: Dashboard in all tabs in OG 1.5.2
« on: August 26, 2009, 06:35:21 pm »
Hi,
This happens when you click on the letters "All", if you click on the whitespace to the right of the letters this doesn't happens.

This bug will be fixed in next release.

regards

68
Older versions / Re: Can't Import csv file with cirillic letters
« on: August 26, 2009, 05:01:22 pm »
Which version are you using ?
I made a csv file with cyrillic text inside and could import successfully in version 1.5.2.

69
Ideas / Re: Gmail Imap and Folders
« on: August 26, 2009, 04:33:04 pm »
Which version are you using?
In version 1.5.2 mails which its "from" address is the same as the account 's address are marked as read when they are downloaded.

70
Older versions / Re: mp3 still not recognized in 1.5.1 and 1.5.2
« on: August 26, 2009, 03:36:46 pm »
Hi,
In version 1.6 opengoo will have a config option (in Administration -> General) to detect file's mime type by file extension, enabling this will solve the problem.

regards

71
Hi
this happens because that 6 milestones are assigned to everybody or another user, and you are filtering calendar by yourself.

To fix this you can change line 240 of "application/models/project_milestones/ProjectMilestones.class.php" with this one
Code: [Select]
$assignedFilter = ' AND (`assigned_to_user_id` = '.$assignedUser->getId().' OR
(`id` IN (SELECT milestone_id FROM '.TABLE_PREFIX.'project_tasks WHERE `trashed_by_id` = 0 AND `milestone_id` > 0 AND `assigned_to_user_id` = ' . $assignedUser->getId() . ') OR
(`assigned_to_user_id` = 0 AND (`assigned_to_company_id` = '. $assignedUser->getCompanyId().' OR `assigned_to_company_id` = 0))))';

With this you will be able to see milestones assigned to everybody in calendar views when filtering by yourself (to view milestones assigned to another user you must change the filter).

72
Older versions / Re: 1.5.2 Internal server error 500 can not delete user
« on: August 26, 2009, 02:42:17 pm »
Hi
To fix this, change line 374 of "/application/controllers/UserController.class.php" for this one
Code: [Select]
if ($project instanceof Project && $delete_ws == 1 && $project->canDelete(logged_user())) {

73
The tables where templates are defined are
og_templates
og_template_parameters
og_template_objects
og_template_object_properties

Also you can try editing the old template and saving it without making changes, and then try to instantiate it.

74
Older versions / Re: Cannot upload files in workspaces
« on: August 24, 2009, 07:04:54 pm »
Hi,
The problem may be that the encoding of the file (or filename) you want to upload is not utf-8.
Try adding this code before line 91 of "/application/models/ApplicationDataObject.class.php"
Code: [Select]
if (get_class($this->manager()) == 'ProjectFiles') {
$content = utf8_encode($content);
}
please let us know if this does not work.
            

75
Older versions / Re: Template Object Tags and Linked Objects are ignored
« on: August 24, 2009, 12:55:29 pm »
Hi,
this will be fixed in next release.

regards

Pages: 1 ... 3 4 [5] 6 7 ... 23