[EMAIL PROTECTED] SSL, apache and windows XP

2006-01-13 Thread P.M
Hi,is there someone who has already configured successfully Apache with SSL on windows XP ?i tried several tutorials but after activating the mod_ssl.so module, Apache server does not want to start. it tells me  an error...without  SSL apache works welldoes someone have a good and detailed tuto

Re: [EMAIL PROTECTED] Apache Administrator qualification

2006-01-13 Thread Emmanuel E
We could start one. What do you say? - Original Message - From: <[EMAIL PROTECTED]> To: Sent: Saturday, January 14, 2006 12:04 AM Subject: [EMAIL PROTECTED] Apache Administrator qualification Hi all. Quote from the Apache homepage: "Apache has been the most popular web server on

Re: [EMAIL PROTECTED] Apache Administrator qualification

2006-01-13 Thread William A. Rowe, Jr.
[EMAIL PROTECTED] wrote: "Apache has been the most popular web server on the Internet since April of 1996. The November 2005 Netcraft Web Server Survey found that more than 70% of the web sites on the Internet are using Apache, thus making it more widely used than all other web servers combi

[EMAIL PROTECTED] mod_deflate question

2006-01-13 Thread Fenlason, Josh
Title: Message I added the following to my Apache configuration:     DeflateFilterNote Input instream  DeflateFilterNote Output outstream  DeflateFilterNote Ratio ratio  LogFormat '"%r" %{outstream}n/%{instream}n (%{ratio}n%%)' deflate  CustomLog logs/deflate_log deflate  DeflateCompression

[EMAIL PROTECTED] Apache Administrator qualification

2006-01-13 Thread httpd2
Hi all. Quote from the Apache homepage: "Apache has been the most popular web server on the Internet since April of 1996. The November 2005 Netcraft Web Server Survey found that more than 70% of the web sites on the Internet are using Apache, thus making it more widely used than all other we

Re: [EMAIL PROTECTED] [trunk] Order,Deny,Allow not allowed in

2006-01-13 Thread Joshua Slive
On 1/13/06, Beau E. Cox <[EMAIL PROTECTED]> wrote: > Hi - > > I just svn - checked out the trunk sources for httpd 2.3. > Configured and compiled fine. After installed, I tried to > bring it up and got errors on the Order,Deny,Allow directives > in my blocks and the startup aborted. > For example

RE: [EMAIL PROTECTED] Meaninf of [L]

2006-01-13 Thread Axel-Stéphane SMORGRAV
The easiest way to get an answer for such questions is to consult the Apache manual, in your case http://httpd.apache.org/docs/2.0/mod/mod_rewrite.html#rewriterule   -ascs From: senthil kumar [mailto:[EMAIL PROTECTED] Sent: Friday, January 13, 2006 10:32 AMTo: users@httpd.apache.orgSubject

AW: [EMAIL PROTECTED] Reverse Proxy Again

2006-01-13 Thread Oliver.Schaudt
One special thing could be your "/dev" before the normal URI. 1. Apache acting as an reverse proxy switches the headers but not the content of the page itself 2. i know that the portal is using sometimes javscript to put a URI together or is using a redirect inside the URI [this shows the thing

AW: [EMAIL PROTECTED] Meaninf of [L]

2006-01-13 Thread Oliver.Schaudt
RewriteCond %{REMOTE_HOST} ^host1.* [OR] RewriteCond %{REMOTE_HOST} ^host2.* RewriteRule ^/$ /homepage.max.html [L] The [OR] is only relevant if you have more conditions than 1. In this case if yout want to say if REMOTE_HOST begins with "host1" or "host2" [L] says Last rule

Re: [EMAIL PROTECTED] file size limitation?

2006-01-13 Thread Joe Orton
On Thu, Jan 12, 2006 at 10:41:11AM -0500, Chris Purcell wrote: > Is there a maximum file size limitation in Apache where you cannot > download files over 4GB?I have both an Apache 1.3.29 server and an > Apache 2.2.0 server with the same files on them. One file is 4.2GB and > the other is 5GB.

AW: [EMAIL PROTECTED] Meaninf of [L]

2006-01-13 Thread Germer, Carsten
Have a look here for [OR] http://httpd.apache.org/docs/2.0/mod/mod_rewrite.html#rewritecond You'll find [L] somewhere there also. It means like "Last Rule, stop chain, don't process any further rules". Cheers /Carsten Von: senthil kumar [mailto:[EMAIL PROTECT

Re: [EMAIL PROTECTED] Reverse Proxy Again

2006-01-13 Thread Franky Ronaldy
Thank you very much Oliver for your patient and advice. By the way, I am still very puzzling why I still can't login to the SAP WAS behind the apache server. First I thought because of JSESSION cookie was not been able to set to the client browser because of using reverse proxy. Have you came acc

RE: [EMAIL PROTECTED] Meaninf of [L]

2006-01-13 Thread Boyle Owen
Plain text please... Things inside square brackets on a RewriteRule or RewriteCond are "flags" - they modify the way the Cond or Rule is applied. See http://httpd.apache.org/docs/2.0/mod/mod_rewrite.html and look for "flags" for more details. To answer your specific questions, [OR] performs a

[EMAIL PROTECTED] Meaninf of [L]

2006-01-13 Thread senthil kumar
RewriteCond %{REMOTE_HOST} ^host1.* [OR]iteRule ^/$ /homepage.max.html [L]Please suggest the meaning of [OR] ? [L] ? on rewrite rule

AW: [EMAIL PROTECTED] Reverse Proxy Again

2006-01-13 Thread Oliver.Schaudt
Hi Franky, 1. The header line with the cookie has at least 2 parts with the SAP WAS Cookie=saplb_*=(J2EE184141100)184141150; JSESSIONID=(J2EE184141100)ID184141150DB10457613221413343070End Is it possibly that your javascript shows you only the information till the first semicolon ";" ? I have