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 - caillech

Pages: [1]
1
Feng Office 2 / Re: Error when changing the due date
« on: April 04, 2013, 10:50:38 am »
I solved my problem with the due date by adding the column "is_required" to the table "fo_dimensions". Apparantly it wasn't created when upgrading from 1.7.5 to 2.2.3.1.

2
Feng Office 2 / Re: Error when changing the due date
« on: March 06, 2013, 10:19:53 am »
I have the same problem as blatour. But I upgraded from 1.7.5 to 2.2.3.1. I followed the update script to the letter.

Also log.php gets filled up with this error because of it:

ERROR: Error: Undefined index: multi_assignment in 'C:\Apache\htdocs\fengoffice\application\models\project_tasks\ProjectTasks.class.php' on line 430 (error code: 8)

3
Installation problems / Re: table fo_mail_spam_filters is missing
« on: March 05, 2013, 10:17:25 am »
OK, after searching a while through the php upgrade scripts, I found the following SQL in public\upgrade\scripts\AsadoUpgradeScript.class.php:

CREATE TABLE IF NOT EXISTS `fo_mail_spam_filters` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`account_id` int(10) unsigned NOT NULL,
`text_type` enum('email_address','subject') COLLATE utf8_unicode_ci NOT NULL,
`text` text COLLATE utf8_unicode_ci NOT NULL,
`spam_state` enum('no spam','spam') COLLATE utf8_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB;

Apparantly this SQL was never executed during the upgrade. I executed it manually and the table was created. I checked my emails again and everything works fine.

I hope this will help other people who experience the same problem.
This topic may be closed.

4
Installation problems / table fo_mail_spam_filters is missing
« on: March 05, 2013, 07:16:44 am »
I upgraded Feng Office from version 1.7.5 to 2.2.3.1.

When checking my email, I receive a message that 3 messages are received, but they don't show up. I checked the log.php and I see that the table fo_mail_spam_filters is missing. Is there a way to create this table so that my emails can arrive again?

Pages: [1]