To run the editor demo what version of PHP and MySQL should one use and what version can one get by
To run the editor demo what version of PHP and MySQL should one use and what version can one get by
bscan48
Posts: 2Questions: 1Answers: 0
We are using PHP 5.4.12 and MySQL 5.5.
Commented out some parts of the script that builds the database (mostly date oriented stuff), but cant get the samples to return any data)
This discussion has been closed.
Answers
PHP 5.4 is absolutely fine - anything from around 5.3.17 is supported.
For MySQL, 5.5 is supported, but the demo SQL uses
datetime
with a default ofCURRENT_TIMESTAMP
which requires 5.6. To address this simply change thedatetime
field types to betimestamp
.It means that you have less range of valid dates, but it will work fine for 1970+.
Allan