PHP 8.1
-
Fatal Error:
Got error ‘PHP message: PHP Fatal error: Array and string offset access syntax with curly braces is no longer supported in
/wp-content/plugins/wp-download-codes/includes/helpers/string.php on line 49There is a few lines referencing curly brackets
$string = $chars{rand(0, $chars_length)};
Just need to be updated to:
$string = $chars[rand(0, $chars_length)];
After addressing those the site works again, still checking for any other issues.
Thank you
Viewing 7 replies - 1 through 7 (of 7 total)
Viewing 7 replies - 1 through 7 (of 7 total)
- The topic ‘PHP 8.1’ is closed to new replies.