MySQL-Error 1292 on install

Permalink
Hi,
I am trying to install concrete5, but after I enter the site details and click "Install Concrete" I get the following error:

mysql error: [1292: Incorrect datetime value: '2008-11-20 19:46:08 PM' for column 'jDateInstalled' at row 1] in EXECUTE("INSERT INTO Jobs (jName, jDescription, jDateInstalled, jNotUninstallable, jHandle) VALUES('Index Search Engine','Index the site to allow searching to work quickly and accurately.','2008-11-20 19:46:08 PM',1,'index_search')")

What can I do about this? Running on Vista with a XAMP-System (PHP 5.5.2, MySQL 5.0.41).

Thx,
André

 
vercasson replied on at Permalink Reply
vercasson
No idea, but vista is probably not helping you out.
andrew replied on at Permalink Reply
andrew
However I might be able to help you.

1. Remove config/site.php
2. Remove your database
3. Open concrete/models/job.php and everywhere you see

date('Y-m-d H:i:s A')


replace it with

date('Y-m-d H:i:s');


I believe there should be two instances.
andre replied on at Permalink Reply
Thanks for the quick help!