disabling php error reporting dosn't work after updrade

Discussion in 'PHP' started by shuman202, Nov 3, 2012.

  1. #1
    hello guys
    i have upgraded the php to the latest version and now
    some scripts shows errors like
    Assigning the return value of new by reference is deprecated [ 04 Nov 2012 00:03:24 ] in includes/classes/eSyndiCat.php(362) : eval()'d code:5
    i did the following in the php.ini
    display_errors off
    display_startup_errors off
    but still the errors show
    how to completely disabling error reporting?
     
    Solved! View solution.
    shuman202, Nov 3, 2012 IP
  2. #2
    error_reporting( 0 );

    Make this the first line of your PHP file.
     
    arsalankhan, Nov 3, 2012 IP
  3. shuman202

    shuman202 Well-Known Member

    Messages:
    638
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    145
    Digital Goods:
    1
    #3
    thank you it did work but why the file doesn't follow the php.ini configuration?
     
    shuman202, Nov 3, 2012 IP
  4. arsalankhan

    arsalankhan Peon

    Messages:
    66
    Likes Received:
    0
    Best Answers:
    6
    Trophy Points:
    0
    #4
    Did you restart apache after changing the ini file?
     
    arsalankhan, Nov 3, 2012 IP
  5. arsalankhan

    arsalankhan Peon

    Messages:
    66
    Likes Received:
    0
    Best Answers:
    6
    Trophy Points:
    0
    #5
    Another thing, make sure that you correct the error to make your script future proof, because it might not work in the future release of PHP as assigning the return value by reference is deprecated now.
     
    arsalankhan, Nov 3, 2012 IP
  6. shuman202

    shuman202 Well-Known Member

    Messages:
    638
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    145
    Digital Goods:
    1
    #6
    thank you the script works fine now i have restarted the server and the same thing i got...
    best regards,
    shuman202
     
    shuman202, Nov 3, 2012 IP
  7. Rukbat

    Rukbat Well-Known Member

    Messages:
    2,908
    Likes Received:
    37
    Best Answers:
    51
    Trophy Points:
    125
    #7
    Rukbat, Nov 5, 2012 IP
  8. shuman202

    shuman202 Well-Known Member

    Messages:
    638
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    145
    Digital Goods:
    1
    #8
    shuman202, Nov 5, 2012 IP