webERP Forum
Get Magic Quotes Depreciated - Printable Version

+- webERP Forum (http://www.weberp.org/forum)
+-- Forum: webERP Discussion (http://www.weberp.org/forum/forumdisplay.php?fid=1)
+--- Forum: Problems / Bugs? (http://www.weberp.org/forum/forumdisplay.php?fid=8)
+--- Thread: Get Magic Quotes Depreciated (/showthread.php?tid=8921)



Get Magic Quotes Depreciated - clintguy74 - 11-25-2021

Hi 

My system is running fine, except I keep on getting the following:

Deprecated: Function get_magic_quotes_gpc() is deprecated in C:\var\www\htdocs\weberp\includes\session.php on line 62

I am using PHP 7.4   

Any idea on how to resolve without reverting to Ver 5 or opening any security loopholes


RE: Get Magic Quotes Depreciated - TimSchofield - 11-25-2021

It won't do any harm, and this issue is sorted in 4.15.2 which is imminent.

To hide the warning change the error_reporting() in config.php to read

error_reporting(E_ALL && ~E_NOTICE && ~E_DEPRECATED);

Tim


RE: Get Magic Quotes Depreciated - clintguy74 - 11-25-2021

(11-25-2021, 06:55 PM)TimSchofield Wrote: It won't do any harm, and this issue is sorted in 4.15.2 which is imminent.

To hide the warning change the error_reporting() in config.php to read

error_reporting(E_ALL && ~E_NOTICE && ~E_DEPRECATED);

Tim

Thank you very much TIm,