PDA

View Full Version : Need some help on how to fix an issue


Mangahaven
06-16-2015, 03:44 PM
I get this line at the top of some of my pages.

Warning: preg_replace(): The /e modifier is deprecated, use preg_replace_callback instead in ..../includes/class_bbcode.php on line 2958


I only have a spoiler tag, and a YMP3 tag installed as extras. The rest are the vBullettin default built-in BBcodes that came with the product.

Running 4.2.2 Patch level 4

ForceHSS
06-16-2015, 03:55 PM
what php version are you using

Webcon
06-18-2015, 12:55 AM
Add this to the top of your config.php:

define('SKIP_DS_ERRORS', true);

ForceHSS
06-18-2015, 12:59 AM
Add this to the top of your config.php:

define('SKIP_DS_ERRORS', true);
That will do him no good if his php version is wrong

Disco_Stu
06-18-2015, 04:04 PM
That will do him no good if his php version is wrong

Yes it will. Covering up every error and warning without addressing them is the perfect solution. If you don't see the errors then they can't possibly cause any problems. That's what a lot of folks in these forums say so it must be true

ForceHSS
06-18-2015, 05:07 PM
If the php does not work because it is either to high or low version trying to cover the errors/warnings are not helping