PassMark Logo
Home » Forum

Announcement

Collapse
No announcement yet.

Deprecated: Array and string offset access syntax errors

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Deprecated: Array and string offset access syntax errors

    Installing a new instance on my intranet. Receiving the following message when I try to run a search. Any ideas? Using Zoom 8 build 1008, PHP 7.4.1.


    Deprecated: Array and string offset access syntax with curly braces is deprecated in C:\Apache24\htdocs\search\search.php on line 967
    Deprecated: Array and string offset access syntax with curly braces is deprecated in C:\Apache24\htdocs\search\search.php on line 979
    Deprecated: Array and string offset access syntax with curly braces is deprecated in C:\Apache24\htdocs\search\search.php on line 991
    Deprecated: Array and string offset access syntax with curly braces is deprecated in C:\Apache24\htdocs\search\search.php on line 996
    Deprecated: Array and string offset access syntax with curly braces is deprecated in C:\Apache24\htdocs\search\search.php on line 1005
    Deprecated: Array and string offset access syntax with curly braces is deprecated in C:\Apache24\htdocs\search\search.php on line 1015
    Deprecated: Array and string offset access syntax with curly braces is deprecated in C:\Apache24\htdocs\search\search.php on line 1028
    Deprecated: Array and string offset access syntax with curly braces is deprecated in C:\Apache24\htdocs\search\search.php on line 1032
    Deprecated: Array and string offset access syntax with curly braces is deprecated in C:\Apache24\htdocs\search\search.php on line 3888
    Deprecated: Array and string offset access syntax with curly braces is deprecated in C:\Apache24\htdocs\search\search.php on line 3888
    Deprecated: Array and string offset access syntax with curly braces is deprecated in C:\Apache24\htdocs\search\search.php on line 3898
    Deprecated: Array and string offset access syntax with curly braces is deprecated in C:\Apache24\htdocs\search\search.php on line 3899
    Deprecated: Array and string offset access syntax with curly braces is deprecated in C:\Apache24\htdocs\search\search.php on line 3900
    Deprecated: Function get_magic_quotes_gpc() is deprecated in C:\Apache24\htdocs\search\search.php on line 117
    Deprecated: Function get_magic_quotes_runtime() is deprecated in C:\Apache24\htdocs\search\search.php on line 131

  • #2
    Hmmm.
    This must of just happened in the V7.4.1 release of PHP, as we haven't come across it before.

    Fix seems simple enough. We need to edit the search.php script to swap the curly braces for square ones on the effected lines.

    So this,
    $tmpword{0}
    will change to this,
    $tmpword[0]

    We are just about to go into the Christmas break, but we'll get it fixed in the new year.

    Comment


    • #3
      Ok, cool. I'll edit the script in the meantime.

      Have a great holiday and all that jazz!

      Comment


      • #4
        This is fixed in the latest release (V8 build 1009) available here.
        --Ray
        Wrensoft Web Software
        Sydney, Australia
        Zoom Search Engine

        Comment

        Working...
        X