I have created app. in FBML on facebook plateform in past. This app. is working fine till last week but now it shows error as
Notice: Uninitialized string offset: 0 in /var/www/vhosts/xxx.net/httpdocs/new/client/facebookapi_php5_restlib.php on line 310
and keeps refreshing on it. Why this is happening. Please help. Thanks in advance…
Thats just a notice not an error.
Probably php configuration has changed so that it prints out notice level “errors”.
If thats 3rd party code, then just comment out a line in php.ini that starts with
error_reporting(so that it doesn’t notify you about notices) or in your php script execute this:If thats your code then read: What causes: "Notice: Uninitialized string offset" to appear?
You are welcome to read more about error_reporting.