MyBB Community Forums

Full Version: Uploading
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am making a new website and when I am installing it it says: Deprecated: Function set_magic_quotes_runtime() is deprecated in /home/mithokey/public_html/inc/class_core.php on line 165

What do I do?
Your host should disable magic quotes, but to fix the error, in ./inc/class_core.php, line 165:

set_magic_quotes_runtime(0);

change to:

@set_magic_quotes_runtime(0);
thanks! +1
Thanks.