• working on a develop website I had this error while I was activating two plugins:

    • Chained quiz
    • Admin and Site Enhancements (ASE)
    ErrorException (E_COMPILE_ERROR)
    Array and string offset access syntax with curly braces is no longer supported

    Gantry 5.5.23
    WordPress 6.8.2
    PHP 8.1

    Do you think it’s a bug of gantry or of the plugin?

    I am using ASE on other installation and never gave this error.

Viewing 1 replies (of 1 total)
  • Thread Starter Andrea Scarfo’

    (@andreascarfo)

    Maybe it was not a Gantry bug, anyway I fixed it this way

    In wp-admin/install.php

    while( $l >= 0 && $sql{$l} == '\\' ) {

    had to change this way

    while( $l >= 0 && $sql[$l] == '\\' ) {
Viewing 1 replies (of 1 total)

The topic ‘Fatal error when I activate some plugins’ is closed to new replies.