Function set_magic_quotes_runtime() is deprecated in PHP 5.3.0
Deprecated: Function set_magic_quotes_runtime() is deprecated in ...
Magic Quotes doesn't work in PHP 5.3.
1) Comment out or remove the line altogether.
Either option will accomplish what you desire when using PHP 5.3
Im doing this test with another software but if you get this problem / error this " FIX " will also work with dolphin.
Hope this help!
error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);
You need to wrap this in a test for PHP version 5.3 because E_DEPRECATED only became available as of 5.3.
Yes I have noticed those extra errors appearing so can you explain where these added errors can be removed or fixxed with in php5.3 for dolphin ?
thanks
Also i heard in php6 and up they wont even have DEPRECATED_MODULE included.
find:
set_magic_quotes_runtime(0);
replace:
ini_set("magic_quotes_runtime", 0);
enjoy!
Contact: rootwarex@gmail.com
I can't find the folder 'include', so I don't know which config.php is meant to fix...
Please help me
disable "display errors" for a temporary fix.