Do sites running on C5.6 work with MySQL 5.7 ?
PermalinkDoes anyone have any experience / advice as to whether Concrete5.6 works okay or not with MySQL 5.7?
Thanks.

Cheers.
I am planning to migrate my client website currently using 5.6.4.0,
Is it okay on PHP 7.3 and MySQL 5.7?
Thanks!
It should run on MySQL5.7 okay. I have sites using 5.6.4, and have just upgraded MySQL from 5.6 -> 5.7. All seems to be running fine.
But - it won't run on PHP7.
There is a version of the 5.6 branch of Concrete5 that you could try using - details here:
https://www.concrete5.org/community/forums/chat/concrete5.6-on-php7...
But you might find that addons or custom code might not work without some further work. My advice would be to only apply these updates to a development copy of the site and see how you get on. And in both cases of updating MySQL, and PHP - obviously make sure you take full backups of everything first.
so PHP 7 is also fine?
I have seen some people here says it is the legacy version that works on PHP 7.
Your Addons might need some tweaking to run on PHP 7 but the Concrete Core runs fine.
Take a look at
https://www.deepsea.co.uk/phpinfo.php...
Donyou have any idea how can I know if is add-on is not compatible? currently I have 4
Any help is appreciated. I
Those addons appear to work fine, the only error I could find was in 'Page List Title' , one of the template files ( blog_index.php ) has this on line 20
$entryController = Loader::controller($cobj); $comments = $entryController->getCommentCountString('%s '.t('Comment'), '%s '.t('Comments'));
And I patched it by changing the code to this
$entryController = Loader::controller($cobj); if(method_exists($entryController,'getCommentCountString')) { $comments = $entryController->getCommentCountString('%s '.t('Comment'), '%s '.t('Comments')); }
Thanks for the time, so that error is not related to Concrete5 Core but on Add-on but Page Title right?
I will try to check where is that file
By the way this is the website I am planning to migrate
http://www.boistec.com/
May I know how do you test and find that error?
So I loaded up my development 5.6.4 site on PHP 7.3.8 and installed those addons.
I then created a new page, loaded the addons to be tested and looked for the errors.
Once the errors are displayed it is just a matter of tracking down the code and patching it.
@juandavid0528 - I would think that it will be a simple matter of trial + error.
Can you give points how can I test those add-ons?
I am planning to transfer it first on my local XAMPP using latest php7.3
I have updated several members legacy sites to run on PHP7 and have always managed to patch the addons to work also.
If you run into difficulty getting your addons to work, post the error messages here on the forums and together we should be able to resolve them.
If you want your site updated as a job, Just send me a PM