Turn off deprecated errors in PHP 5.3

前端 未结 9 1484
天涯浪人
天涯浪人 2020-12-02 11:32

My server is running PHP 5.3 and my WordPress install is spitting these errors out on me, causing my session_start() to break.

Deprecated: Assigning the re         


        
9条回答
  •  感情败类
    2020-12-02 12:11

    You have to edit the PHP configuration file. Find the line

    error_reporting = E_ALL
    

    and replace it with:

    error_reporting = E_ALL ^ E_DEPRECATED

    If you don't have access to the configuration file you can add this line to the PHP WordPress file (maybe headers.php):

    error_reporting(E_ALL ^ E_DEPRECATED);
    

提交回复
热议问题