Re: [EMAIL PROTECTED] Re: [apachemlen] Re: [EMAIL PROTECTED] [Question]How to flush piped error_log?

2006-06-11 Thread Okamoto Toshiaki
Hi Jushua: I solved this problem. My solutions is as follows: In my post_config function, after ap_log_error()is called, wait one second before error return. Many thanks. T.Okamoto Okamoto Toshiaki wrote: Thank you Jushua. T.Okamoto Joshua Slive wrote: On 6/6/06, Okamoto Toshiaki [EMAIL

[EMAIL PROTECTED] Customizing Automatic Redirects

2006-06-11 Thread Damian Birchler
Hi all I have got Squid installed as an httpd accelerator for httpd. Squid will not allow requests to internal.example.com other than per SSL/TLS. Squid itself talks to httpd in plain text. Now, when httpd generates automatic redirects -- what I mean by this, is for example redirecting /foo to

[EMAIL PROTECTED] Apache 2.2 not working with PHP4

2006-06-11 Thread Hamad S. Al-Jalaq
Ive installed apache version 2.x with PHP4.3.0 configured at as an apache module but when try to visit the index.php file the browser asks me if I want to download the file it suppose to browse the file not download it please advice Thanks, Hamad

Re: [EMAIL PROTECTED] Apache 2.2 not working with PHP4

2006-06-11 Thread Josh Stephenson
You need to edit your httpd.conf file to handle php files add these lines and you should be good: LoadModule php4_module libexec/apache2/libphp4.so AddType application/x-httpd-php .php AddType application/x-httpd-php-source .phps The first line might already be in there, but the second one

RE: [EMAIL PROTECTED] Apache 2.2 not working with PHP4

2006-06-11 Thread Hamad S. Al-Jalaq
I am not professional in apache and PHP, but I've done as per the installation steps... I am installing it on windows 2003... please could you check the attached file? Thanks, Hamad -Original Message- From: Josh Stephenson [mailto:[EMAIL PROTECTED] Sent: Sunday, June 11, 2006 6:23 PM

RE: [EMAIL PROTECTED] Apache 2.2 not working with PHP4

2006-06-11 Thread Hamad S. Al-Jalaq
And when I run test configuration, it shows this message: httpd.exe: Syntax error on line 115 of C:/Program Files/Apache Software Foundation/Apache2.2/conf/httpd.conf: Cannot load C:/PHP/sapi/php4apache2.dll into server: The specified module could not be found. Please advice... Thanks, Hamad

[EMAIL PROTECTED] Re: FilesMatch Explanation!

2006-06-11 Thread Joost de Heer
Zakai Kinan wrote: I have this directive FilesMatch secret require user {Admin} /FilesMatch in an htaccess file and it does not work. Does any have any ideas. I have also tried it in httpd.conf file. - Is the user really called {Admin} (with the {})? - Do you have a 'Satisfy any'

[EMAIL PROTECTED] Re: can't startup tomcat 413

2006-06-11 Thread Joost de Heer
johnny page wrote: I attempt to start tomcat 413 and get errors This is an Apache HTTPD mailinglist. Please use the appropriate Tomcat mailinglist. Joost - The official User-To-User support forum of the Apache HTTP Server

Re: [EMAIL PROTECTED] Apache 2.2 not working with PHP4

2006-06-11 Thread Josh Stephenson
You have to copy the php4apache2.dll file from the php source directory into C:/PHP/sapi Hamad S. Al-Jalaq wrote: And when I run test configuration, it shows this message: httpd.exe: Syntax error on line 115 of C:/Program Files/Apache Software Foundation/Apache2.2/conf/httpd.conf: Cannot load

RE: [EMAIL PROTECTED] Apache 2.2 not working with PHP4

2006-06-11 Thread Hamad S. Al-Jalaq
But the file is already there... What could be the problem? Thanks, Hamad -Original Message- From: Josh Stephenson [mailto:[EMAIL PROTECTED] Sent: Sunday, June 11, 2006 6:58 PM To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] Apache 2.2 not working with PHP4 You have to copy

RE: [EMAIL PROTECTED] Apache 2.2 not working with PHP4

2006-06-11 Thread Hamad S. Al-Jalaq
The installation procedure says: After you've set up the file layout properly, you're ready to finally configure Apache to load the PHP4 module. Just add the following lines to your httpd.conf: LoadModule php4_module c:/php/sapi/php4apache.dll AddModule mod_php4.c AddType

[EMAIL PROTECTED] SSLSessionCache problems with Apache-2.0.x

2006-06-11 Thread Forrest Aldrich
I'm trying to enable SSL on apache2, and running into a problem. The error log says: [Sun Jun 04 17:36:26 2006] [warn] Init: Session Cache is not configured [hint: SSLSessionCache] And when I explicitly disable it (ie: none, as seen below), it still complains. I'm running this on

[EMAIL PROTECTED] Authentication directive from 1.3 to 2.2 , what do i miss here?

2006-06-11 Thread Meir Yanovich
Hello all in version 1.3 i hade this Authentication directive that was using simple Authentication , when apache was recognized files from *.foo extension it was starting the Authentication mechanism AddHandler foo .foo AddType application/foo .foo DirectoryMatch /BLD/PER

Re: [EMAIL PROTECTED] Change HTTP status code in Custom Errors - next try

2006-06-11 Thread Karsten Konrad
Joshua Slive wrote: On 6/9/06, Karsten Konrad [EMAIL PROTECTED] wrote: Greetings! I'd like to change the custom errormessages so they don't return the actual http code 502 Bad Gateway but 503 Service Unavailable. I had hoped, that including a status line in the header might work, but it

Re: [EMAIL PROTECTED] Change HTTP status code in Custom Errors - next try

2006-06-11 Thread Nick Kew
On Sunday 11 June 2006 21:14, Karsten Konrad wrote: Location /error/CUSTOM_SERVER_MAINTENANCE.html.var Header set STATUS 503 Service Unavailable /Location The result is the following line in the HTTP Header Status: 503 Service Unavailable But the return code itself is still

Re: [EMAIL PROTECTED] Change HTTP status code in Custom Errors - next try

2006-06-11 Thread Joshua Slive
On 6/11/06, Karsten Konrad [EMAIL PROTECTED] wrote: Thanks for the input! I had hoped, that I could avoid cgi/php stuff but I'll give it a try now. After my post yesterday I had an other, maybe stubid, idea and tried to change the Header with mod_headers like this: Location