When I ran the installation it bombed when trying to insert data with a datetime value.
Creating default Sugar data
Inserting default settings... done
Creating default users... done
Creating default scheduler jobs... Query Failed:INSERT into schedulers set id='df880d21-5be6-ada9-93e4-45193d53ea7c', deleted='0', date_entered='2006-09-26 14:49:09', date_modified='2006-09-26 14:49:09', created_by=null, modified_user_id='1', name='Check Inbound Mailboxes', job='function:ollMonitoredInboxes', date_time_start='2000-01-01 H:00:00', date_time_end='2000-01-01 H:00:00', job_interval='*::*::*::*::*', status='Active', catch_up='0'::MySQL error 1292: Incorrect datetime value: '2000-01-01 H:00:00' for column 'date_time_start' at row 1
Environment:
Windows XP
Sugarcrm 4.5
Php 4.4.2
mySQL 5.0.22
Note: I had to work around the PHP 4.x/mySQL 5 password issue that isn't documented in your installation instructions. It might be worth mentioning in your docs. Here's the commands that I had to issue, after creating the user 'sugarcrm'.
GRANT ALL ON sugarcrm TO sugarcrm;
UPDATE mysql.user SET Password = OLD_PASSWORD('my-secret-password') WHERE user='sugarcrm';
flush PRIVILEGES;


LinkBack URL
About LinkBacks
ollMonitoredInboxes', date_time_start='2000-01-01 H:00:00', date_time_end='2000-01-01 H:00:00', job_interval='*::*::*::*::*', status='Active', catch_up='0'::MySQL error 1292: Incorrect datetime value: '2000-01-01 H:00:00' for column 'date_time_start' at row 1



Reply With Quote
Bookmarks