• When running PHP 8, I get the following error when attempting to activate the plugin:

    Fatal error: Array and string offset access syntax with curly braces is no longer supported in /var/www/mysite.com/public_html/wp-content/plugins/aceide/src/Modules/FileOps.php on line 749

    Switching

    if ( $filePathRel{0} === '/' ) {

    to

    if ( $filePathRel[0] === '/' ) {

    Seems to resolve it. Would be happy to send a PR for that but don’t see this on Github, is there a repo somewhere?

Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
  • The topic ‘PHP 8: fatal error on activation’ is closed to new replies.