Need to upgrade a site from 3.07 to 3.53 - what issues might I encounter??

4 posts by 3 authors in: Forums > CMS Builder
Last Post: January 16, 2020   (RSS)

By kevbarker1 - January 15, 2020

I need to upgrade a site from 3.07 to 3.53 due to recent PHP upgrade on hosting from PHP 5.6 to 7.2. What if any issues might I encounter??

Thanks

Kevin

By kitsguru - January 15, 2020

You might want to make a backup first, then upgrade. Things that happened to me:

  1. Issue with index to long - fixed by changing all table engine=innodb in the backup and restore
  2. default values of Null were altered to 'NULL' which is wrong after the upgrade
    1. upgrade
    2. backup again
    3. use text editor to find and replace
      • Default 'NULL'  -> Default Null
    4. restore backup

If you can do it offline as a test run first might be useful.

Jeff Shields

By kevbarker1 - January 16, 2020

Thanks for the input. I will give it a try soon.