• Hello,

    I am getting this error on my website:

    Deprecated: Array and string offset access syntax with curly braces is deprecated in …./wp-content/plugins/aceide/src/Modules/FileOps.php on line 749

    Can you please help me out?

    Thanks in advance!

Viewing 1 replies (of 1 total)
  • Since php 7.4 curly brackets method to get individual characters inside a string has been deprecated. We are seeing this error as well. The developer of this plugin hasn’t released a new version for over two years so we suspect they have abandoned the plugin but hope they haven’t.

    If they do update this plugin, all they have to do is change line 749 of “/src/Modules/FileOps.php” from …

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

    … to …

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

    Because we use this plugin we would be interested in taking over its development if the current developers didn’t want to keep it going anymore.

    Oliver

Viewing 1 replies (of 1 total)
  • The topic ‘Getting error on my website’ is closed to new replies.