Wordpress Fatal error: Cannot unset string offsets in /home/flypink.nl/www/wordpress/wp-includes/widgets.php on line 362

Just wanna share smile.gif

I just install wordpress on my server.
and when i try to access it from my browser
it shows error like below ;

Fatal error: Cannot unset string offsets in /home/test/www/wordpress/wp-includes/widgets.php on line 362

After searching more deeper and googling.
I found that we need to turn off magic_quotes_gpc and magic_quotes_runtime.

Find your php.ini and set those line like below :

Code:
; Magic quotes for incoming GET/POST/Cookie data.
magic_quotes_gpc = Off

; Magic quotes for runtime-generated data, e.g. data from SQL, from exec(), etc.
magic_quotes_runtime = Off


restart you apache / webserver.
This should fixed your wordpress issue

0 comments: