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 ... 23
1
Feng Office 2 / Re: Fengoffice 2.7.1beta - classifying cause error
« on: September 19, 2014, 12:10:51 pm »
Thanks for the error detail, now we could reproduce the issue and we could fix it.

We have released the version 2.7.1.1, in this version this issue is fixed.
https://sourceforge.net/projects/opengoo/files/latest/download?source=files

Best regards

2
Feng Office 2 / Re: Missing language files
« on: September 16, 2014, 06:19:52 pm »
These options shouldn't be visible, a quick fix to this issue is running this query:

UPDATE fo_contact_config_options SET `is_system` = '1' WHERE `name` IN ('folder_received_columns','folder_sent_columns','folder_draft_columns','folder_junk_columns','folder_outbox_columns');

best regards

3
Feng Office 2 / Re: Problem with permissions
« on: September 16, 2014, 05:00:23 pm »
Hi Griffin,

Please set the constant "DEBUG" to true in config/config.php, so you can get a detailed error report, and send us the error detail.

In this week we'll be releasing version 2.7.1, it has many changes in the users and groups administration, so you can try this version and check if the error is still present.

Best regards

4
Feng Office 2 / Re: Fengoffice 2.7.1beta - classifying cause error
« on: September 16, 2014, 02:07:14 pm »
Hello Emiliano,

Please set the constant DEBUG to true in file "config/config.php" and try again, you will see the error detail. Please send us the screenshot of the error detail.

Best regards.

5
Feng Office 2 / Re: UTF-8 Bug
« on: August 29, 2014, 02:52:41 pm »
We have released the version 2.7.0.1 which includes the fix for this issue.

Best regards.

6
Feng Office 2 / Re: UTF-8 Bug
« on: August 29, 2014, 01:00:39 pm »
Hello,

This issue will be fixed in the next release.

Thanks for reporting!
Best regards

7
Feng Office 2 / Re: Bug language
« on: August 29, 2014, 12:37:56 pm »
Hello,
Thanks for reporting this issue.

It has been fixed for version 2.7 final.


We appreciate very much that you want to upgrade the German language pack, we can give you access to our official translation tool so all the changes you make there will be included in the next release.
If you are interested in using this tool please write to us at support@fengoffice.com and we'll give you the access and the instructions.

Best regards

8
Getting Started / Re: Document: images are sometime not displayed
« on: June 21, 2012, 02:43:24 pm »
This issue has been fixed for next release.
regards

9
Announcements / Re: Feng Office 2.1 RC released
« on: June 21, 2012, 12:05:27 pm »
Hello,

To fix that error replace the function "function mail_update_1_2" in plugins/mail/update.php with this one:
Code: [Select]
function mail_update_1_2() {
DB::execute("UPDATE ".TABLE_PREFIX."tab_panels SET
type = 'plugin',
plugin_id = (SELECT id FROM ".TABLE_PREFIX."plugins WHERE name='mail')
WHERE id='mails-panel'");
}

Don't worry about this issue, it doesn't affect any feature. Mail should be working as usual.

We will be releasing a new version in a few days, if no show-stopper issues are found in these days it will be the 2.1 final.

regards

10
How To's / Re: Email notifications doesn't contain the full direct URL
« on: March 20, 2012, 12:39:20 pm »
Hi,
Look at your 'config/config.php', check the constant ROOT_URL.
It souldn't have a relative url. It must define the complete url of your installation.

define('ROOT_URL', 'http://<server>/<installation_name>');

The url sent in notifications is built from this constant and the object type. Seeing the url you posted I guess the constant ROOT_URL is not correct.

regards

11
Hi,

The upgrade script of the RC version that migrates 1.7x versions to 2.0 is not working properly. We expect to have it ok in the final version.
For now if you try to use it and it fails, after running it again delete all tables with prefix "fo_", to avoid failures for existent structures, and to ensure that the last structure definition will be instantiated.

We hope to have the upgrade from 1.7x to 2.0 working fine for next release.

12
Development / Re: hook and interface
« on: August 05, 2010, 06:36:31 pm »
To override a view you can use the "after_action" hook.
Here is an example:
Code: [Select]
Hook::register("your_hook_name");

function your_hook_name_after_action($args, &$ret) {
$controller = array_var($args, 'controller');
$action = array_var($args, 'action');
if ($controller instanceof TaskController && $action == 'add_task') {
$controller->setTemplate('new_add_task');
}
}

Here for the action "add_task" the template will be overriden by the new php file "new_add_task.php" which must be located in the folder "application/views/task/".

For more information about the available hooks and its specification you can look at the file "application/hooks/opengoo_hooks.php".

regards

13
In previous versions all email data was stored in one table, now for each email its info is splitted in these two tables due to performance issues.
If you want to delete an email you have to delete it from both tables, registries with the same id are part of the same email.

14
This is happening because the installer executes every file found in "/public/install/installation/templates/sql/plugins/" except dummy.txt.
In this folder you have a file named "_dummy.txt" so the installer is trying to execute it.
Remove the underscore from the beggining of that filename (so that the installer will ignore it) and try again.

You may not need to install again, because these files (found in "plugin" folder) are excetued after the normal scripts, so everything should have gone ok. But in order to clear any possible mistakes it would be good to run the installer again.

15
How To's / Re: Date wise Workspace sorting
« on: July 28, 2010, 11:31:23 am »
Workspaces are sent ordered by the server, the function that return the workspaces is list_projects() in ProjectController.
There it is called the function User::getWorkspaces() and this function uses
ProjectUsers::getProjectsByUser().
This last function takes the parameter "order_by", if not passed then name will be used to order. You have to pass your order criteria to this function

Pages: [1] 2 3 ... 23