MyBB Community Forums

Full Version: Site is ignoring the global.css
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
(2014-11-08, 05:42 PM)Destroy666 Wrote: [ -> ]One of the plugins causes an error which results in the blank page. Either check the error logs to find the culprit (recommended) or remove/readd them one by one.

Where do I check the error logs?
That probably depends on your webhost. You can alternatively paste the following into index.php (near the top of the file, make sure it's after "<?php"). This will enable PHP to display errors inline.

error_reporting(E_ALL);
ini_set('display_errors', '1');

As for the error log, you'll have to check your host for that.
(2014-11-08, 05:53 PM)Darth Apple Wrote: [ -> ]That probably depends on your webhost. You can alternatively paste the following into index.php (near the top of the file, make sure it's after "<?php"). This will enable PHP to display errors inline.



error_reporting(E_ALL);
ini_set('display_errors', '1');

As for the error log, you'll have to check your host for that.

Thanks, got the plugin that's giving the error. How do I remove the inline errors? I've removed the lines of code from index.php.

EDIT: I'm getting 404 on index.php now, rest of the forum works it's just giving me 404 on index.php.

EDIT 2: Index.php is now working but cannot seem to remove the inline errors.
Pages: 1 2