MyBB Community Forums

Full Version: MyBB Warnings after I install
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am getting this error after the Installation:
[Image: 15f3z1h.jpg]
Upload a fresh copy of ./inc/class_core.php from a fresh download.
No, I'm still getting the same error.
Your host should disable magic quotes as it is not compatible with PHP 5.3, but as a temp fix, in ./inc/class_core.php, line 158:

if(get_magic_quotes_gpc())

change to:

if(@get_magic_quotes_gpc())

and line 165:

set_magic_quotes_runtime(0);

change to:

@set_magic_quotes_runtime(0);
(2011-02-13, 06:49 PM)MattRogowski Wrote: [ -> ]Your host should disable magic quotes as it is not compatible with PHP 5.3, but as a temp fix, in ./inc/class_core.php, line 158:

if(get_magic_quotes_gpc())

change to:

if(@get_magic_quotes_gpc())

and line 165:

set_magic_quotes_runtime(0);

change to:

@set_magic_quotes_runtime(0);

Nope. Still geting the same error but it has a "g" at the top of the page. But all the Errors are still there. :/
A g?? If you're still getting the errors you've not made the edits properly, as those changes specifically surpress error messages, and you've definitely done something wrong if you've got a g at the top of the page.

Just upload this pre-edited version instead.
[attachment=21606]
Ok, thank you. That worked.