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 [2] 3 4 ... 23
16
Installation problems / Re: Error upgrade 1.6.2 -- 1.7.0
« on: June 30, 2010, 12:35:35 pm »
Hi,

Try replacing lines 6 - 9 of "public/upgrade/templates/db_migration/1_7_pastafrola.php"
Code: [Select]
INSERT INTO `<?php echo $table_prefix ?>file_types` (`extension`, `icon`, `is_searchable`, `is_image`) VALUES
('slim', 'ppt.png', 1, 0),
('html', 'html.png', 1, 0),
('webfile', 'webfile.png', 0, 0);

with these ones:
Code: [Select]
INSERT INTO `<?php echo $table_prefix ?>file_types` (`extension`, `icon`, `is_searchable`, `is_image`) VALUES
('slim', 'ppt.png', 1, 0),
('html', 'html.png', 1, 0),
('webfile', 'webfile.png', 0, 0)
ON DUPLICATE KEY UPDATE id=id;

this will prevent that failure when insterting a row that already exists.

17
Older versions / Re: [1.7-rc2] Empty Trash
« on: June 17, 2010, 04:26:00 pm »
This issue will be fixed in 1.7 final

18
Older versions / Re: 1.7-rc task dates off by one day
« on: June 09, 2010, 03:17:18 pm »
Hi, this will be fixed for 1.7 final
regards

19
Hi,
This is not a bug, the application does not allow to modify permission module selection for all selected workspaces automatically.

You should set permissions for every workspace separately, or set permissions on a parent workspace and then apply to its subworkspaces.

regards

20
Hi Fill,

this is fixed in next release.
if you want to fix your installation paste this line after line 1909 of "application/models/projects/Project.class.php"
Code: [Select]
if (!$perm->getUserOrGroup() instanceof User && !$perm->getUserOrGroup() instanceof Group) continue;

regards

21
Older versions / Re: [1.7-RC] [1.7-b2] UTF-8 support problems.
« on: May 17, 2010, 12:51:35 pm »
The problem is that the file has UTF-8 characters but the file is saved as ANSI.
If you open it with a text editor and save it with UTF-8 encoding it will work.
The same applies to the .vcf

If the file contains UTF-8 characters the application requires that the file is saved as UTF-8.

regards

22
Older versions / Re: [1.7-RC] [1.7-b2] UTF-8 support problems.
« on: May 14, 2010, 06:24:47 pm »
Hi Fill,

The problem in email attachments is fixed for next release.
We still can not reproduce the error while importing contacts,
can you give us an example csv file that fails?

meanwhile we will keep working on this.
regards

23
Older versions / Re: [1.7 beta] email not going into workspace
« on: May 14, 2010, 02:58:10 pm »
can you look at  the cron.log and cache/log.php files to look for some error message?
if you want you can send me these files and i can see if there is something legged there.

24
Older versions / Re: [1.7-RC] Bad HTML/CSS
« on: May 14, 2010, 12:19:13 pm »
thank you !
we will fix this file and look for this kind of mistakes in the rest of the code.

regards

25
How To's / Re: Email working and then sudden 500 error
« on: May 13, 2010, 06:59:09 pm »
Hi,
Can you try to reproduce it in DEBUG mode, in order to get more details about this error.
To turn on DEBUG mode please read this post:
http://forums.fengoffice.com/index.php?topic=1424.0

After that please send me the error's detail.
thanks!

26
Older versions / Re: [1.7 beta] email not going into workspace
« on: May 13, 2010, 06:35:55 pm »
Does the folders "upload" and "tmp" have write permissions for the user that runs the cron ?
These folders must be writtable for this user in order to save the email content.

27
Older versions / Re: [1.6.2] Google ics calendar parse error
« on: May 13, 2010, 05:04:11 pm »
thanks for the fix lukacsp!

the "+" symbol is missing when the user timezone is > 0
the fix in the code is in line 84 of environment/classes/event/CalFormatUtilities.php:
Code: [Select]
$tz = ($user->getTimezone() < 0 ? "-":"+").str_pad(abs($user->getTimezone())*100, 4, '0', STR_PAD_LEFT);

this fix will be in next release.

28
How To's / Re: Email - Error 500: OK
« on: May 13, 2010, 04:46:23 pm »
Hi,
Can you try to reproduce it in DEBUG mode, in order to get more details about this error.
To turn on DEBUG mode please read this post:
http://forums.fengoffice.com/index.php?topic=1424.0

thanks!

29
Older versions / Re: [1.7 beta] email not going into workspace
« on: May 13, 2010, 04:31:36 pm »
Which version of the application are you using?

30
Feature requests / Re: Export Calendar by Workspace
« on: May 13, 2010, 03:19:09 pm »
To export the calendar for only a workspace, you have to select that workspace in the left panel, and then export, only events from the selected workspace will be exported.

We noticed that the export process was exporting events which the user was not invited to, this will be fixed for next release.

Pages: 1 [2] 3 4 ... 23