Viewing 2 replies - 1 through 2 (of 2 total)
  • The PHP version you’re using does not support the third parameter of strstr, hence the error message. The function requires PHP 5.3.0 or higher.

    If you can’t upgrade your php to 5.3.0 or higher, try replacing line 33 on inc/functions.php with the following:

    $json = substr( $json, 0, strpos($json, '</script>' ) );

    Fixed on latest version 1.0.2!

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