Quote:
Originally Posted by kh99
Probably the best thing to do would be to upgrade to vb4.2.3, which is a technically a beta version but it's being used by many forums now.
If you don't want to upgrade you could try adding this line to your config.php:
Code:
define('SKIP_ALL_ERRORS', true);
|
No, don't use that.
You should use:
PHP Code:
define('SKIP_DS_ERRORS', true);
This turns off the extra error reporting in php 5.3 & 5.4 (for strict & deprecated warnings), but will allow other important errors to show.
Open your
includes/config.php file and below
<?php add the following.
PHP Code:
define('SKIP_DS_ERRORS', true);
So it looks like this:
PHP Code:
<?php
define('SKIP_DS_ERRORS', true);
/*================================================= =====================*\
|| ################################################## ################## ||
|| # vBulletin 4.2.2
Use a editor like
notepad++ to edit any files,
don't use Notepad or Wordpad.