Quote from: Valconeye on April 21, 2003, 10:47:40 PM
and im guessing if they dont turn it off, then i cant runn yabbse
No... if they won't, (btw, it's a setting most people don't like...) you'll have to do this to install.php:
Find:
error_reporting(E_ALL);
Replace:
@ini_set('magic_quotes_runtime', 0);
error_reporting(E_ALL);
And then after it's installed mess with index.php:
Find:
error_reporting (E_ALL ^ E_NOTICE);
Replace:
@ini_set('magic_quotes_runtime', 0);
error_reporting (E_ALL ^ E_NOTICE);
This *should* work. However, it's better to have the option off.. I know, for example, phpMyAdmin will not work properly with it on either.
-[Unknown]