Index: install/install_schema.sql =================================================================== --- install/install_schema.sql (revision 14881) +++ install/install_schema.sql (working copy) @@ -665,31 +665,31 @@ ); CREATE TABLE ScheduledTasks ( - ScheduledTaskId int(11) NOT NULL auto_increment, - `Name` varchar(255) NOT NULL default '', - `Type` tinyint(3) unsigned NOT NULL default '1', - Status tinyint(3) unsigned NOT NULL default '1', - Event varchar(255) NOT NULL default '', - RunInterval int(10) unsigned NOT NULL default '0', - RunMode tinyint(3) unsigned NOT NULL default '2', - LastRunOn int(10) unsigned default NULL, - LastRunStatus tinyint(3) unsigned NOT NULL default '1', - NextRunOn int(11) default NULL, - RunTime int(10) unsigned NOT NULL default '0', - Timeout int(10) UNSIGNED NULL, - LastTimeoutOn int(10) unsigned default NULL, + ScheduledTaskId int(11) NOT NULL AUTO_INCREMENT, + `Name` varchar(255) NOT NULL DEFAULT '', + `Type` tinyint(3) unsigned NOT NULL DEFAULT '1', + `Status` tinyint(3) unsigned NOT NULL DEFAULT '1', + `Event` varchar(255) NOT NULL DEFAULT '', + RunInterval int(10) unsigned NOT NULL DEFAULT '0', + RunMode tinyint(3) unsigned NOT NULL DEFAULT '2', + LastRunOn int(10) unsigned DEFAULT NULL, + LastRunStatus tinyint(3) unsigned NOT NULL DEFAULT '1', + NextRunOn int(11) DEFAULT NULL, + RunTime int(10) unsigned NOT NULL DEFAULT '0', + Timeout int(10) unsigned DEFAULT NULL, + LastTimeoutOn int(10) unsigned DEFAULT NULL, SiteDomainLimitation varchar(255) NOT NULL, - PRIMARY KEY (ScheduledTaskId), - KEY Status (Status), + PRIMARY KEY (ScheduledTaskId), + KEY `Status` (`Status`), KEY RunInterval (RunInterval), KEY RunMode (RunMode), - KEY `Type` (`Type`), KEY LastRunOn (LastRunOn), KEY LastRunStatus (LastRunStatus), KEY RunTime (RunTime), KEY NextRunOn (NextRunOn), + KEY SiteDomainLimitation (SiteDomainLimitation), KEY Timeout (Timeout), - KEY SiteDomainLimitation (SiteDomainLimitation) + KEY `Type` (`Type`) ); CREATE TABLE SpellingDictionary ( Index: install/remove_schema.sql =================================================================== --- install/remove_schema.sql (revision 14881) +++ install/remove_schema.sql (working copy) @@ -33,7 +33,7 @@ DROP TABLE SessionLogs; DROP TABLE StatisticsCapture; DROP TABLE SlowSqlCapture; -DROP TABLE Agents; +DROP TABLE ScheduledTasks; DROP TABLE SpellingDictionary; DROP TABLE Thesaurus; DROP TABLE LocalesList; Index: install/steps_db.xml =================================================================== --- install/steps_db.xml (revision 14881) +++ install/steps_db.xml (working copy) @@ -87,12 +87,12 @@

Additional Recommendations:

1. Use Cron (UNIX/BSD/Linux) or Task Scheduler (Windows) to run Regular Events in your In-Portal.
- It's highly recommended to setup your cron to run every minute so all system events that are enabled will run in the background based on their schedule. These events can be managed in Admin Console via Configuration -> Website -> Agents section. + It's highly recommended to setup your cron to run every minute so all system events that are enabled will run in the background based on their schedule. These events can be managed in Admin Console via Configuration -> Website -> Scheduled Tasks section.

In-Portal cron file is located in /tools/cron.php folder and can be setup using hosting Control Panel or manually. In Plesk or CPanel interfaces use dialog to add a new cron job and specify the following (use correct paths)
   /absolute/path/to/bin/php -f /absolute/path/to/in-portal/tools/cron.php

-

2. Adjust Agents
- As was explained in the previous recommendation there is a Configuration -> Website -> Agents section where you can control Events triggered by the system. These events do their job to cleanup the data, old image files, check the data integrity, RSS feeds and other processes required for your In-Portal to run efficiently. We do recommend to review and enable/disable these events based on your website needs.

+

2. Adjust Scheduled Tasks
+ As was explained in the previous recommendation there is a Configuration -> Website -> Scheduled Tasks section where you can control Events triggered by the system. These events do their job to cleanup the data, old image files, check the data integrity, RSS feeds and other processes required for your In-Portal to run efficiently. We do recommend to review and enable/disable these events based on your website needs.

3. Set Mail Server
It's recommended to review and adjust your mail server settings once your In-Portal is up and running. This can be done in Admin Console under Configuration -> Website -> Advanced section.