Quote:
Originally Posted by TheLastSuperman
Your new server seems to have a different (newer) version of php running and also it appears as if they added a snippet of code to the config.php file in order to run it in debug mode for whatever reason.
Check the config.php file which is within /includes/ folder and see if any code such as this is at the very top below <?php at the very top, it will resemble this:
PHP Code:
<?php
$config['Misc']['debug'] = true;
If it is then delete the line or comment it out, to comment out the code add to slashed before it, example:
PHP Code:
<?php
// $config['Misc']['debug'] = true;
That will tell it NOT to "act" since the slashes make it not parse when the file is read  .
Now as for the deprecated error, that can be related to a mod (the eval()'d code part of the message tells us that) or sometimes something within vBulletin itself that does not act how it should because well things have changed in other words.
Check post #2 here as well: http://www.vbulletin.com/forum/forum...-been-released
|
Thanks so much, the config.php fix corrected everything!