phpBMS
phpBMS copied to clipboard
Bug Fix - MySQL 5.5.8 Install Errors
Attempts to install on servers running MySQL 5.5.8 fail with numerous SQL errors during the install process. These stem from the changes made to the timestamp functionality in later versions on MySQL and are fairly easy to correct.
- Replace all occurrences of modifieddate timestamp(14) NOT NULL with modifieddate timestamp DEFAULT CURRENT_TIMESTAMP
- Replace all occurrences of modifieddate timestamp(14) with modifieddate timestamp
This will correct the install files and allow the installer to complete. Note this needs to be done in all install directories (including modules).
I have a full set of fixed install files available if needed, let me know.
Jim.
Thanks for the description. Instead of the files, would you consider creating a pull request by forking, patching, etc?