Changeset 85155 in webkit


Ignore:
Timestamp:
Apr 27, 2011 10:38:00 PM (13 years ago)
Author:
eric@webkit.org
Message:

2011-04-27 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

error_log.txt should include PHP errors
https://bugs.webkit.org/show_bug.cgi?id=59643

Turns out this was really easy after I finally learned
enough about PHP to do it...

I'm adding this in hopes of better tracking down
our random http failures.

  • Scripts/webkitperl/httpd.pm:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r85138 r85155  
     12011-04-27  Eric Seidel  <eric@webkit.org>
     2
     3        Reviewed by Adam Barth.
     4
     5        error_log.txt should include PHP errors
     6        https://bugs.webkit.org/show_bug.cgi?id=59643
     7
     8        Turns out this was really easy after I finally learned
     9        enough about PHP to do it...
     10
     11        I'm adding this in hopes of better tracking down
     12        our random http failures.
     13
     14        * Scripts/webkitperl/httpd.pm:
     15
    1162011-04-27  David Levin  <levin@chromium.org>
    217
  • trunk/Tools/Scripts/webkitperl/httpd.pm

    r83129 r85155  
    109109        "-c", "PidFile \"$httpdPidFile\"",
    110110        "-c", "ScoreBoardFile \"$httpdScoreBoardFile\"",
     111        "-c", "php_value log_errors 1", # PHP errors should show up in Apache's error log.
    111112    );
    112113
Note: See TracChangeset for help on using the changeset viewer.