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

bscan48bscan48 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)

Answers

  • allanallan Posts: 63,761Questions: 1Answers: 10,510 Site admin

    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 of CURRENT_TIMESTAMP which requires 5.6. To address this simply change the datetime field types to be timestamp.

    It means that you have less range of valid dates, but it will work fine for 1970+.

    Allan

This discussion has been closed.