• Resolved nikcree

    (@nikcree)


    There is a fatal error with PHP v8.0

    Fatal error: Array and string offset access syntax with curly braces is no longer supported in …/public_html/wp-content/plugins/brozzme-db-prefix-change/includes/brozzmeDbPSettings.php on line 211

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello,
    the same thing happened to me and there are several solutions, but the most stable is that you change the PHP version from 8.0 to 7.4 or earlier, as it seems that the plugin is not 100% compatible with PHP 8.
    Greetings!

    This is easily fixable.

    Go to plugins/brozzme-db-prefix-change/includes/brozzmeDbPSettings.php
    Line 211
    Replace:
    $key .= $inputs{mt_rand(0,37)};
    By;
    $key .= $inputs[mt_rand(0,37)];

    Plugin Author Benoti

    (@benoti)

    An update has been published to resolve this issue.
    Thank Coin-coin for the solution before the update !

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Fatal Error PHP 8.0’ is closed to new replies.