Re: [users@httpd] How to debug the PHP component of Apache2

2016-04-11 Thread Yehuda Katz
That documentation only contains modules shipped with HTTPD. mod_php is shipped with PHP. Try the PHP documentation: http://php.net/manual/en/install.php - Y On Mon, Apr 11, 2016 at 12:34 PM, Roparzh Hemon wrote: > On Sun, Apr 10, 2016 at 8:24 PM, Alexandru Duzsardi >

Re: [users@httpd] How to debug the PHP component of Apache2

2016-04-11 Thread Roparzh Hemon
On Sun, Apr 10, 2016 at 8:24 PM, Alexandru Duzsardi wrote: > php and php module for apache When I look at the documentation at https://httpd.apache.org/docs/2.4/mod/#P, I see no module name with php in it. Is there some other place where I should look ?

RE: [users@httpd] How to debug the PHP component of Apache2

2016-04-10 Thread Richard
You can turn on php error reporting and control the level in your php.ini (once you've identified the correct one with the information provided below). Also, one of the php-specific lists may be a better focus for your php questions. > Date: Sunday, April 10, 2016 21:24:21 +0300 > From:

RE: [users@httpd] How to debug the PHP component of Apache2

2016-04-10 Thread Alexandru Duzsardi
Hi , I don't think you understand exactly how php works First of all , it doesn't compile anything , it's interpreting your script and outputs HTML. Second , from your description of the problem it looks like you misconfigured something or your scripts are badly written , in any case you need

[users@httpd] How to debug the PHP component of Apache2

2016-04-10 Thread Roparzh Hemon
My index.php file is compiled correctly when I use one of my PHP executables outside Apache, but fails when I ask Apache to serve it (and fails leaving a blank error log unfortunately). So I'm trying to understand how and where the two PHP compilations start behaving differently. With my