ZendCore+FastCGI+IIS7 : Cannot embed PHP errors in response HTML.Always get 500 - Internal server error

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • guillaume.braux@gmail.com

    ZendCore+FastCGI+IIS7 : Cannot embed PHP errors in response HTML.Always get 500 - Internal server error

    Hello,

    I am running WS2008 + IIS7 + FASTCGI + ZendCore.
    I have not modified the default ZendCore php.ini configuration file.
    Actualy, any kind of PHP error, warning or notice gives me immediately
    a IIS 500 Error (Internal Server Error).
    It is a good thing in production environnement.

    For debuging purposes, I want temporary to be able to see PHP warnings
    and errors embedded on the html page.

    So I have set "display_er rors = On" on the ZC admin panel.
    But nothing changes ... I still always got error 500 on pages
    containing errors, warning, or notice.

    But I found that if I go to the website I want to debug using
    http://localhost/mypage.php (so direclty on a browser on the
    production server), I got the PHP errors embedded in the html page.
    But when using the ip of the server, or the host header, I got error
    500.

    I also tried using ISAPI instead of FastCGI. The problem is still
    quite the same, but in that case, only parse errors or undefined
    functions gives me Error 500. Notices and Warning are well embedded.

    Here is the IIS error log when getting an Internal Server Error
    (testPage is a test page containing a division by Zero Warning).

    --------------------------------------
    MODULE_WARNING
    ModuleName FastCgiModule
    Data1 FASTCGI_RESPONS E_ERROR
    Data2 PHP Warning: Division by zero in C:\inetpub\wwwr oot\Catalogues
    \testPage.php on line 6
    ErrorCode 5
    ErrorCode Access is denied. (0x5)

    MODULE_SET_RESP ONSE_ERROR_STAT US
    ModuleName FastCgiModule
    Notification 128
    HttpStatus 500
    HttpReason Internal Server Error
    HttpSubStatus 0
    ErrorCode 0
    ConfigException Info
    Notification EXECUTE_REQUEST _HANDLER
    ErrorCode The operation completed successfully. (0x0)
    --------------------------------------

    Do anybody got an idea on how to get full PHP error reporing into the
    HTML page with IIS7, FastCGI and Zend Core ?

    Thanks,
    Guillaume
  • Gordon Burditt

    #2
    Re: ZendCore+FastCG I+IIS7 : Cannot embed PHP errors in response HTML.Always get 500 - Internal server error

    >I am running WS2008 + IIS7 + FASTCGI + ZendCore.
    >I have not modified the default ZendCore php.ini configuration file.
    >Actualy, any kind of PHP error, warning or notice gives me immediately
    >a IIS 500 Error (Internal Server Error).
    >It is a good thing in production environnement.
    >
    >For debuging purposes, I want temporary to be able to see PHP warnings
    >and errors embedded on the html page.
    Have you tried looking at the HTML source of the page you get?

    My guess is that you get a 500 error because you get PHP errors in
    the middle of header info, and this makes for bad header syntax.

    To see the errors, force header output *before* doing whatever it
    is that draws errors.
    >So I have set "display_er rors = On" on the ZC admin panel.
    >But nothing changes ... I still always got error 500 on pages
    >containing errors, warning, or notice.

    Comment

    • guillaume.braux@gmail.com

      #3
      Re: ZendCore+FastCG I+IIS7 : Cannot embed PHP errors in response HTML.Always get 500 - Internal server error

      My guess is that you get a 500 error because you get PHP errors in
      the middle of header info, and this makes for bad header syntax.
      I don't think the problem deals with header syntax ...
      My php test page is as easy as :

      <?php
      $data = 0/0;
      ?>

      I would like "PHP Warning: Division by zero in C:\inetpub\wwwr oot
      \Catalogues " beeing printed on the return page ... Instead of it, I
      got 500 error, even with display_errors= On.
      I have tested it on a "standard" LAMP server, and it works (error is
      printed) ...
      I also tried to process the test page directly on a console (using
      "php -f mypage.php"), and the warning is well printed in the console.
      So the problem seems not to come from the php interperter.

      Zend is in a full default configuration state. The only param I have
      changed is the display_errors config.
      I tried also with PHP manualy installed from the official binaries (so
      without the zend package). The problem is exacly the same ...

      I am using a clean IIS7 server, and have PHP FastCgi module mapping to
      the websites needing PHP support.

      It may come from IIS7 or FastCGI. But where ? That is the question ...

      Any more ideas ?

      Guillaume

      Comment

      • guillaume.braux@gmail.com

        #4
        Re: ZendCore+FastCG I+IIS7 : Cannot embed PHP errors in response HTML.Always get 500 - Internal server error

        Found the solution :

        You would need to set system.webServe r/httpErrors/errorMode to
        Detailed to do this - default is DetailedLocalOn ly so as not to expose
        extra information to remote clients. The following appcmd command
        will achieve that.

        %windir%\system 32\inetsrv\appc md.exe set config -
        section:system. webServer/httpErrors -errorMode:Detai led

        Comment

        Working...