Hello Guys,
Are you obtaining an error as below after browsing your website?
Quote[07-Oct-2014 05:17:52 EST] PHP Deprecated: Assigning the return value of new by reference is deprecated in /home/username/public_html/includes/class_core.php on line 2381
[07-Oct-2014 05:17:52 EST] PHP Deprecated: Function set_magic_quotes_runtime() is deprecated in
/home/username/public_html/includes/class_core.php on line 1538
To settle this issue add the line " set_magic_quotes_runtime(false); " into the top of your script as shown below.
Quote<?php
set_magic_quotes_runtime(false);
[Here is your code]
?>
Now refresh your page, it should be running fine.
Enjoy !!