Re: suexec Problem

2005-08-12 Thread Lars Strojny
On Sat, Jun 25, 2005 at 12:04:26PM +0200, Sven Müller wrote: Dann musst Du 'suexec' neu kompilieren, da zum Zeitpunkt der Kompilation wohl festgelegt wird wer der einzige User ist der suexec ausführen darf. Nein, bei der Kompilation wird nur spezifiziert, welche in welchem Verzeichnis

SSL-Reverse Proxy einrichten?

2005-08-12 Thread Michael Schoenboeck
Moin, Ich plate mich nun schon geraume zeitb mit einem problem herum, und lege nun alle hoffnung in euch. Also ich habe eine Domain (domain1.xy) für welche ich ein SSL-Cert habe. Nun habe ich auf anderen Servern weitere Domains, für welche ich das Cert nutzen will. Somit kam ich auf die idee

RE: [EMAIL PROTECTED] mod_proxy/mod_proxy_html

2005-08-12 Thread Axel-Stéphane SMORGRAV
What you need to do is use LiveHTTPHeaders in order to verify that the cookie is indeed delivered to your browser as a Set-Cookie response header. I guess this is done in the HTTP 302 in response to GET

Re: [EMAIL PROTECTED] mod_rewrite question, escaping quantifiers

2005-08-12 Thread Tony VanScoy
I want to redirect certain requests to a pdf depending on a get variable. nothing new, but I just can't get it to work. So I started with the basics but just redirecting a certain page to a pdf, which works. RewriteRule ^/test\.php$ /pdf/somefile.pdf$ [R,T=application/pdf] Which

[EMAIL PROTECTED] RE: Apache Reverse proxy

2005-08-12 Thread Ranjan, Rajiv
Hi Benoit, Alex on this group suggested me to go with ProxyPass instead of using rewrite rule. I tried that and it worked for me. Here is the text Alex had send me - (Maybe it would help you as well) VirtualHost 172.29.11.12:80 ServerName www.in.abc.org ProxyVia off

Re: [EMAIL PROTECTED] mod_rewrite question, escaping quantifiers

2005-08-12 Thread Tony VanScoy
RewriteEngine On RewriteCond ${QUERY_STRING} file RewriteRule ^/test\.php$ /index.php [R] Well i fixed my typo ${QUERY_STRING}, it should be %{QUERY_STRING}. But still not working. - The official User-To-User support

RE: [EMAIL PROTECTED] RE: Apache Reverse proxy

2005-08-12 Thread Axel-Stéphane SMORGRAV
An alternative to using ProxyPassReverseCookieDomain to correct the cookie domain in responses, or set the WAS domain in the admin console, might be to set ProxyPreserveHost On, but I am not sure what side effects this might have. Maybe someone else could contribute with his experience? -ascs

Re: [EMAIL PROTECTED] mod_rewrite question, escaping quantifiers

2005-08-12 Thread Tony VanScoy
I got it. RewriteCond %{QUERY_STRING} ^file\=12$ RewriteRule ^/test\.php$ /pdf/somfile.pdf [R,L,T=application/pdf] Looks like i needed regex in the RewriteCond. Thanks. - The official User-To-User support forum of the Apache

Re: [EMAIL PROTECTED] Problem in mod_Cern_meta

2005-08-12 Thread Joshua Slive
On 8/12/05, sridhar [EMAIL PROTECTED] wrote: hi Joshua, I know very well that response header cann't be viewed directly thru web browser. i am accessing the page using telnet or Apache jmeter which displays all the response header The content of the meta file is : MyHeader:Hello If i

RE: [EMAIL PROTECTED] Apache on WinXP won't startup

2005-08-12 Thread Suzy
Hi Aaron Thanks very muchfor the reply. Okay I checked my services and Apache is there and it's set to start up automatically. Which it isn't. Suzy"Wagner, Aaron" [EMAIL PROTECTED] wrote: You probably have not installed apache as a service yet. Go into you services and see if it's listed. If

[EMAIL PROTECTED] RE: Apache and Front Page extensions

2005-08-12 Thread Jonathan Visser
I am running apache 2.0.53 on a windows 2000 box. I have enabled the dav statements in the httpd.conf LoadModule dav_module modules/mod_dav.so LoadModule dav_fs_module modules/mod_dav_fs.so This gives me the ability to use front page or publisher to publish the web pages. I am

Re: [EMAIL PROTECTED] RewriteMap substitutions in RewriteRule

2005-08-12 Thread Joshua Slive
On 8/12/05, Tony VanScoy [EMAIL PROTECTED] wrote: First here is my config for a VirtualHost # map id's to actualy filenames RewriteMap fileName prg:/home/user/getFileName.php # catch any pdfId as long as it's an integer RewriteCond %{QUERY_STRING} ^pdfId\=\d+$ # only rewrite for

Re: [EMAIL PROTECTED] Using mod_rewrite with mod_jk2

2005-08-12 Thread Noah
On Fri, Aug 12, 2005 at 10:32:41AM -0400, brian papa wrote: Still having the same problem... right now my rewrite stuff looks like this - LoadModule rewrite_module modules/mod_rewrite.so RewriteEngine on RewriteCond %{HTTP_HOST} (.*).mysite.com$ RewriteRule /profile/aboutme

RE: [EMAIL PROTECTED] Apache on WinXP won't startup

2005-08-12 Thread Wagner, Aaron
ok, Go to your apache/bin folder and type "apache -k stop" and wait for it to stop. then run "apache -k start" and see what errors you are getting. Also check the event log for apache service errors. Thanx Aaron N Wagner Monitoring Systems and Network Tools CCO-Command Center

[EMAIL PROTECTED] Make

2005-08-12 Thread Plantier, Spencer
Title: Make When I do a make on http-2.0.54 I get the following error: I am configuring with LDFLAGS=-lresolv \ ./configure --enable-modules=so --enable-ssl --with-ssl=/usr/local/ssl/include ssl_engine_pphrase.c:684: error: for each function it appears in.) *** Error code 1 make:

RE: [EMAIL PROTECTED] Apache on WinXP won't startup

2005-08-12 Thread Suzy
Hi I tried this, but the apache -k stop command isn't being recognised: "Apache is not recognised as an internal or external command, operable program or batch file." I've tried all kinds of combinations of spaces, speech marksand capitals, etc. Also I only have two log files within Apache:

Re: [EMAIL PROTECTED] Using mod_rewrite with mod_jk2

2005-08-12 Thread brian papa
Excellent Noah, it worked, thanks for the help! I didn't realize the PT flag was needed based on the doc... I'm also surprised how hard of a time I had without finding an answer for this via google, hopefully it bubbles up and they index it somewhere nicely in groups. On 8/12/05, Noah [EMAIL

Re: [EMAIL PROTECTED] RewriteMap substitutions in RewriteRule

2005-08-12 Thread Joshua Slive
On 8/12/05, Tony VanScoy [EMAIL PROTECTED] wrote: It kind of works. I made the change to %1 and when I made a request ... /test.php?pdfId=12 .. then it gave me the pdf. SWEET. But, still dies after the first mapping. If I call that same exact URL again, i get redirected to ... /pdf/

Re: [EMAIL PROTECTED] Securing Apache configuration

2005-08-12 Thread Neelay Shah
I think I am going to go with Bills suggestion, create a new user, have extremely restricted access for this user and run the Apache service under the context of this user... Thanks guys. Neelay --- William A. Rowe, Jr. [EMAIL PROTECTED] wrote: Neelay Shah wrote: Well, there are some

Re: [EMAIL PROTECTED] mod_rewrite question, escaping quantifiers

2005-08-12 Thread John Hicks
Tony VanScoy wrote: I got it. RewriteCond %{QUERY_STRING} ^file\=12$ RewriteRule ^/test\.php$ /pdf/somfile.pdf [R,L,T=application/pdf] Looks like i needed regex in the RewriteCond. Thanks. That was my bad on the % to $ typo. Sorry. The last argument for the Rewrite Cond can be either a

Re: [EMAIL PROTECTED] Rewrite Issue with SSL Site

2005-08-12 Thread John Hicks
Dave Morrow wrote: Hi all, I have a webserver which is serving a Tomcat application through mod_jk (1.2). The end-users browse the site using SSL only (ie. https://www.mydomain.com/myapplication ) It's working fine. I would like to use re-writing to force the root of the website to rewrite to

RE: [EMAIL PROTECTED] Apache on WinXP won't startup

2005-08-12 Thread Wagner, Aaron
ok, You don't have apache.exe in your bin folder. You said that apache was in services. Go into services and right-click on the apache service. Go to properties and it should show the "path to executable:" Mine looks like this "D:\WebCore2\Apache2\bin\Apache.exe" -k runservice See

RE: [EMAIL PROTECTED] Apache on WinXP won't startup

2005-08-12 Thread Suzy
The apache.exe is one folder above the bin level in C:\Program Files\Apache Group\Apache. So it worked this time, but Igot the following message: * C:\Program Files\Apache Group\Apacheapache -k stopCannot

Re: [EMAIL PROTECTED] RewriteMap substitutions in RewriteRule

2005-08-12 Thread Tony VanScoy
Use %1 for back-references to RewriteCond. $1 is a back-reference to the RewriteRule. Additionally, backreferences aren't populated unless the string you want to capture is in parentheses. --n -- Neil! Your bed's on fire So I have to use ... RewriteCond %{QUERY_STRING}

Re: [EMAIL PROTECTED] RewriteMap substitutions in RewriteRule

2005-08-12 Thread Joshua Slive
On 8/12/05, Tony VanScoy [EMAIL PROTECTED] wrote: Additionally, backreferences aren't populated unless the string you want to capture is in parentheses. So I have to use ... RewriteCond %{QUERY_STRING} =+litId=\d+ ... instead of ... RewriteCond %{QUERY_STRING} ^litId\=\d+$ No.

Re: [EMAIL PROTECTED] RewriteMap substitutions in RewriteRule

2005-08-12 Thread Joshua Slive
On 8/12/05, Tony VanScoy [EMAIL PROTECTED] wrote: As a testing purpose I changed my mapping script to this ... ?php echo somefile.php\n; ? so no matter what I send, it outputs a filename + newline to stdout. i didn't have the newline character before, so i restarted the server and

Re: [EMAIL PROTECTED] RewriteMap substitutions in RewriteRule

2005-08-12 Thread Tony VanScoy
I'm afraid you may have caugt a slight case of not-reading-the-documentation-carefully-enough-itis. Unfortunately, when dealing with mod_rewrite, this affliction can be deadly. If you look carefully at the example map program here:

Re: [EMAIL PROTECTED] .htaccess php

2005-08-12 Thread Joshua Slive
On 8/11/05, Hiep Nguyen [EMAIL PROTECTED] wrote: Here is the last error in /etc/httpd/logs/error_log [Thu Aug 11 16:37:37 2005] [alert] [client 10.0.0.128] /var/www/html/images/.htaccess: IndexIgnore not allowed here, referer: http://10.0.0.120/company/manual.php By the way, I already

Re: [EMAIL PROTECTED] RewriteMap substitutions in RewriteRule

2005-08-12 Thread Joshua Slive
On 8/12/05, Tony VanScoy [EMAIL PROTECTED] wrote: OK, i got my script looping on STDIN, but now I have a problem with backreferences to the RewriteCond. My condition is this... RewriteCond %{QUERY_STRING} ^pdfId\=\d+$ .. but thanks to Noah [EMAIL PROTECTED] and the manual, i found that If

[EMAIL PROTECTED] Re: fs permiss. prob err(13) in error_log and path missing

2005-08-12 Thread Florian Konnertz
Hi again people, This is the strangest thing i've ever seen... Thx to all on #apache irc who helped me. We had no chance, no idea what's happening here. I even tried installing other versions (2.0.51; .and .52), but always the same... Any idea would be greatly appreciated! Florian 2005/8/12,

Re: [EMAIL PROTECTED] fs permiss. prob err(13) in error_log and path missing

2005-08-12 Thread Florian Konnertz
2005/8/12, Joshua Slive [EMAIL PROTECTED]: On 8/12/05, Florian Konnertz [EMAIL PROTECTED] wrote: Hi apache users, error_log: [Fri Aug 12 13:04:59 2005] [error] [client 65.214.44.128] (13)Permission denied: access to /index.html denied Do you have selinux installed? No. Simple

Re: [EMAIL PROTECTED] fs permiss. prob err(13) in error_log and path missing

2005-08-12 Thread Joshua Slive
On 8/12/05, Florian Konnertz [EMAIL PROTECTED] wrote: 2005/8/12, Joshua Slive [EMAIL PROTECTED]: On 8/12/05, Florian Konnertz [EMAIL PROTECTED] wrote: Hi apache users, error_log: [Fri Aug 12 13:04:59 2005] [error] [client 65.214.44.128] (13)Permission denied: access to

Re: [EMAIL PROTECTED] Using mod_rewrite with mod_jk2

2005-08-12 Thread brian papa
Actually I just realized, I've got one more question. How does this all work with DNS? Is Wildcard DNS the best approach? B/C i'm assuming DNS isn't gonna have a clue what the IP is going to be for say user1.mysite.com... On 8/12/05, brian papa [EMAIL PROTECTED] wrote: Excellent Noah, it worked,

Re: [EMAIL PROTECTED] fs permiss. prob err(13) in error_log and path missing

2005-08-12 Thread Joshua Slive
On 8/12/05, Florian Konnertz [EMAIL PROTECTED] wrote: 2005/8/12, Joshua Slive [EMAIL PROTECTED]: On 8/12/05, Florian Konnertz [EMAIL PROTECTED] wrote: 2005/8/12, Joshua Slive [EMAIL PROTECTED]: On 8/12/05, Florian Konnertz [EMAIL PROTECTED] wrote: Hi apache users,

Re: [EMAIL PROTECTED] Apache2 on Win XP

2005-08-12 Thread Joe A
Aaron, what are the two threads? I know the linux ver just has a parent thread and then new children thread are created as needed or whatever, how is the win version different? The windows version also runs under just 2 threads.All the responsesare under a single PID, which can be an issue a you

[EMAIL PROTECTED] Install http

2005-08-12 Thread Plantier, Spencer
Title: Install http When I do a make on http-2.0.54 I get the following error: I am configuring with LDFLAGS=-lresolv \ ./configure --enable-modules=so --enable-ssl --with-ssl=/usr/local/ssl/include ssl_engine_pphrase.c:684: error: for each function it appears in.) *** Error code 1 make:

[EMAIL PROTECTED] Change order of mod_dir in httpd.conf?

2005-08-12 Thread ohaya
Hi, We're having a problem on an Apache 1.3.x server running on Solaris 9. From what I can tell thus far, I think that the problem is related to a 3rd party module that we are trying to integrate to provide single sign-on (SSO) among our servers. This server also has a J2EE container (OC4J)

[EMAIL PROTECTED] access_log vs. access.log problem

2005-08-12 Thread ohaya
Hi, I am running Apache 2.0.50 on Windows 2000. In my httpd.conf, I have: CustomLog logs/access.log combined But, I noticed that Apache is writing access entries into the logs\access_log file, and nothing is being written to the logs\access.log file. The reason that I noticed this is I've

Re: [EMAIL PROTECTED] Apache config file

2005-08-12 Thread ohaya
Hi, Does the httpd.default.conf that comes with Apache not work for you? If not, here's link for building a minimal httpd.conf for Linux: http://www-uxsup.csx.cam.ac.uk/~jw35/courses/apache/html/c486.html Hope that helps... Jim Dana Marshall wrote: I'm looking for a BLANK config file

[EMAIL PROTECTED] Notification from PayPal #AOP6533-350209-8595-6840595

2005-08-12 Thread [EMAIL PROTECTED]
Dear valued PayPal member:It has come to our attention that your PayPal account information needs to beupdated as part of our continuing commitment to protect your account and toreduce the instance of fraud on our website.  If you could please take 5-10 minutesout of your online experience