Problem occurred while try to create new category with the PHP & MySQL 8
heytoufiq opened this issue · 2 comments
heytoufiq commented
Fatal error: Array and string offset access syntax with curly braces is no longer supported media/k2/assets/vendors/verot/class.upload.php/src/class.upload.php on line 2726
Here is the solution
File location
media/k2/assets/vendors/verot/class.upload.php/src/class.upload.php
Find out this code
$last = strtolower($size{strlen($size)-1});
And replace with this code
$last = strtolower($size[strlen($size)-1]);
fevangelou commented
Thanks, it's been fixed already in the repo (for some time now)...
heytoufiq commented
Thanks, it's been fixed already in the repo (for some time now)...
Thanks