Quote:
Originally Posted by mainframe
When you run PHP 5.3.0 or higher you will get the following errors:
Code:
Deprecated: Function split() is deprecated in /home/xxx/public_html/global.php(28) : eval()'d code on line 39
Deprecated: Function split() is deprecated in /home/xxx/public_html/global.php(28) : eval()'d code on line 53
Deprecated: Assigning the return value of new by reference is deprecated in /home/xxx/public_html/misc.php(89) : eval()'d code on line 50
These errors can be fixed by opening VSa_CB.xml and replace all instances of split() with explode().
Also find: $vsacb_bbparser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
and remove the & so it looks like: $vsacb_bbparser = new vB_BbCodeParser($vbulletin, fetch_tag_list());
That should fix all problems.. coder please update your mod with these changes..
I also have a suggestion to minimize the impact on the server by reducing the queries.
You should let the shoutbox write a timestamp when there are new shouts and on refresh first check the timestamp if a refresh is needed, if there's no change in timestamp there's no need to query the database for new messages..
Regards,
MainFrame
|
I'm running 5.3.1 on my site and dont have any issues with the default install