MilesWeb Hosting Forum

Web Hosting Technical Support => Errors and Solutions => Topic started by: Dipak Bhoi on October 07, 2014, 05:32:33 PM

Title: PHP Deprecated: Function set_magic_quotes_runtime() is deprecated
Post by: Dipak Bhoi on October 07, 2014, 05:32:33 PM
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 !!