Re: [EMAIL PROTECTED] Problem Installing Apache 2.2.2 on Linux

2006-06-20 Thread Xuekun Hu
Hi, Utkarsh Did you fix this issue? I also met the same situation on SLES10 RC2 (2.6.16.18-1.8-smp). Thx, Xuekun On 5/1/06, Utkarsh Sharma <[EMAIL PROTECTED]> wrote: Hi, I tried to install Apache web server on Linux(CentOS).I have downloaded and installed it in the default dir i.e /usr/local/

[EMAIL PROTECTED] RE: RE: /my.html#mySection

2006-06-20 Thread Mike - EMAIL IGNORED
On Tue, 20 Jun 2006 09:08:10 +0200, Boyle Owen wrote: >> -Original Message- >> From: news [mailto:[EMAIL PROTECTED] On Behalf Of Mike - >> EMAIL IGNORED >> Sent: Monday, June 19, 2006 6:21 PM >> To: users@httpd.apache.org >> Subject: [EMAIL PROTECTED] RE: /my.html#mySection >> Linux mbrc2

Re: [EMAIL PROTECTED] Thousands of VirtualHosts slowing down start/stop/graceful

2006-06-20 Thread Joshua Slive
On 6/20/06, jome <[EMAIL PROTECTED]> wrote: I have tried to locate the error but all I can come up with is that it is related to the large configuration (roughly 700k) file or the contents of it. An idea might be that the DocumentRoot checks are taking a lot of time, but I'm not familiar enough

[EMAIL PROTECTED] Thousands of VirtualHosts slowing down start/stop/graceful

2006-06-20 Thread jome
Hello! I'm running Apache 2.2.2[1] on a Mac OS X Server 10.3 box, and I'm having some trouble which I'm pretty sure is related to having large amounts of VirtualHosts (or large amounts of Directory). There's currently about 2200 of them and most, if not all, follow a specific scheme[2]. The

[EMAIL PROTECTED] Re: RE: /my.html#mySection

2006-06-20 Thread Mike - EMAIL IGNORED
On Tue, 20 Jun 2006 08:42:33 -0600, David Salisbury wrote: [...] >> >>> Additionally, I wonder why the #ZZZ appeared in the first place. >> >> a bug in the client I guess, I've seen this problem in some proxy server's >> mailing list... > > I would guess all that happened was the user bookmarke

[EMAIL PROTECTED] Re: Intermittent problem with Apache, PHP and SSL

2006-06-20 Thread Jesse Gumm
This looks like it's been a problem with IE for a long time. I found this on some random PHP forum: http://phpbuilder.com/board/showthread.php?t=10129746 I haven't had it active long enough to know if it fixed it, but I'm hoping it did. On 6/20/06, Jesse Gumm <[EMAIL PROTECTED]> wrote: So I'

Re: [EMAIL PROTECTED] mysql config question

2006-06-20 Thread Jesse Gumm
Do you have the mysql extension enabled in the php.ini file? On 6/20/06, Robert Cahn <[EMAIL PROTECTED]> wrote: I'm running FC4. When my php script hits mysql_connect() it dies. I checked error_log and found PHP Fatal error: Call to undefined function mysql_connect() What am I missing i

Re: [EMAIL PROTECTED] mysql config question

2006-06-20 Thread Mike Jackson
I'm running FC4. When my php script hits mysql_connect() it dies. I checked error_log and found PHP Fatal error: Call to undefined function mysql_connect() What am I missing in my httpd.conf file? That sounds like a question for a PHP mailing list ;) But, it also sounds like PHP doesn't h

[EMAIL PROTECTED] mysql config question

2006-06-20 Thread Robert Cahn
I'm running FC4.  When my php script hits mysql_connect() it dies.  I checked error_log and found PHP Fatal error:  Call to undefined function mysql_connect() What am I missing in my httpd.conf file? /Bob Cahn Gipsy Trail Club Carmel, NY 10512

RE: [EMAIL PROTECTED] Apache 2.0.55 on Win2003 crashes when attempting LDAP auth against AD

2006-06-20 Thread Gallardo, Lisa
Hi Dan, I've got Windows 2003, Apache 2.0.55 and I'm using the ldap module from http://www.muquit.com/muquit/software/mod_auth_ldap/mod_auth_ldap.html version 3.07. It connects to active directory just fine. Lisa -Original Message- From: Dan Buettner [mailto:[EMAIL PROTECTED] Sent: Mond

[EMAIL PROTECTED] Intermittent problem with Apache, PHP and SSL

2006-06-20 Thread Jesse Gumm
So I'm encountering an EXTREMELY intermittent error with Apache, PHP and SSL, and I THINK it might be an IE only problem, though I haven't the slightest clue what could be causing the problem, and I haven't been able to reproduce the error. I've tried searching for this all over the place, and so

[EMAIL PROTECTED] Looking for meaning of Apache errors log entry "copy script args timed out"

2006-06-20 Thread Joann Doyle
I am looking for the meaning of the Apache errors log entry "copy script args timed out". Does anyone know what this message is trying to tell me? I don't find anything about it in the documentation on the Apache web site. My version of Apache is 1.3.27.   Thanks.   Joann

RE: [EMAIL PROTECTED] Can Apache automatically popup a dialogue box before allowing access to a file?

2006-06-20 Thread Klaubert Herr da Silveira
You can use this Chang's ideia (CGI) in a mix with the user authentication ideia... I explain, you can use Mod_auth_form (http://www.csce.uark.edu/~ajarthu/mod_auth_form/) and the "authentication" form is your disclaimer, when the user hit the "accept" button, your authentication form handler (tha

RE: [EMAIL PROTECTED] Can Apache automatically popup a dialogue box before allowing access to a file?

2006-06-20 Thread Ahn, Chang
I looked into using a protected realm, but with basic authentication, you can't change the login box, so I can't display a disclaimer. A javascript solution would be ok (even with the possibility of disabling popups); however, how do I force everyone to view the JS popup for any and all reques

[EMAIL PROTECTED] RE: Switching between HTTP and HTTPS

2006-06-20 Thread Ahn, Chang
Maybe it's your regex. ^/(.crypt*)$ doesn't seem right; try this ^/(.*)crypt(.*)$https://localhost:7334/$1crypt$2 In Apache 1.3x, I would do something like this... RewriteCond %{HTTP_HOST} ^localhost$ [NC] RewriteRule ^/(.*)crypt(.*)$ https://localhost:7334/$1crypt$2 [R=301,L] -Or

Re: [EMAIL PROTECTED] RE: /my.html#mySection

2006-06-20 Thread David Salisbury
Now the #ZZZ is legitimate in the sense that my YYY.html does contain that hypertext. However, in my experience, browsers do not normally send the #ZZZ, as explained above. My question is "how should I respond to it?" Here are choices: 1. Send 403 (Forbidden), which is what I do now.

[EMAIL PROTECTED] Is it possible that we can intergrate two different applications to the same Web Server

2006-06-20 Thread Mamta Jolly, Noida
Hi All   I am trying to integrate ATG and Cognos. So far I been successfully integrated my Cognos with Apache by creating the Script aliases and I am able to see the login screen for Cognos but I am stuck in between how apache will redirect my request now to another application?     My

Re: [EMAIL PROTECTED] Switching between HTTP and HTTPS

2006-06-20 Thread Brian Rectanus
You want anything with 'crypt' in the url to be redirected, but everything else sent through reverse proxy, correct (although that does not make much sense)? The ProxyPass is handled first, so use RewriteRule w/[P] instead. Also I am a bit confused on the localhost below, is that just a placehol

[EMAIL PROTECTED] Using SetOutputFilter in Location blocks

2006-06-20 Thread Andy Buckley
Hi, I have a long-standing problem with getting output filters to work in Location blocks. Here's an example configuration: ServerName dev.cedar.ac.uk [and so on...] ExtFilterDefine hepforge-wrapper mode=output intype=text/html \ outtype=text/html cmd=/cedar/testlocal/cgi-

RE: [EMAIL PROTECTED] Switching between HTTP and HTTPS

2006-06-20 Thread Boyle Owen
> -Original Message- > From: Anil Dighade [mailto:[EMAIL PROTECTED] > Sent: Tuesday, June 20, 2006 11:44 AM > To: users@httpd.apache.org > Subject: RE: [EMAIL PROTECTED] Switching between HTTP and HTTPS > > > Owen, > I tried with all the flags [L],[R] and [P] still no success. > Possibl

RE: [EMAIL PROTECTED] Switching between HTTP and HTTPS

2006-06-20 Thread Anil Dighade
Owen, I tried with all the flags [L],[R] and [P] still no success. Possible reason could be that "\bas\" is not a apache folder. Its bas.war file at another application server (Bea Weblogic). Where my apache's reverse proxy is redirecting. See my virtual host proxy setting below. ProxyRequests

Re: [EMAIL PROTECTED] RE: /my.html#mySection

2006-06-20 Thread Pid
Boyle Owen wrote: >> -Original Message- >> From: news [mailto:[EMAIL PROTECTED] On Behalf Of Mike - >> EMAIL IGNORED >> Sent: Monday, June 19, 2006 6:21 PM >> To: users@httpd.apache.org >> Subject: [EMAIL PROTECTED] RE: /my.html#mySection >> Linux mbrc20 2.6.14-1.1656_FC4 #1 Thu Jan 5 22

RE: [EMAIL PROTECTED] Switching between HTTP and HTTPS

2006-06-20 Thread Boyle Owen
> -Original Message- > From: Anil Dighade [mailto:[EMAIL PROTECTED] > Sent: Tuesday, June 20, 2006 10:28 [EMAIL PROTECTED] > To: users@httpd.apache.org > Subject: RE: [EMAIL PROTECTED] Switching between HTTP and HTTPS > > > Hi all, > Thanks to everyone who responded, Here is some stats f

RE: [EMAIL PROTECTED] Switching between HTTP and HTTPS

2006-06-20 Thread Anil Dighade
Hi all, Thanks to everyone who responded, Here is some stats for soln that I have used. I used following rewrite rule RewriteRule ^bas/(.*?BIR.*?)$ https://172.24.6.57:7334/bas/$1 [L] Rewrite log after accessing page "http://172.24.6.57:7333/bas/BIRApprovedGet.do"; is pasted below 172.24.226.59

Re: [EMAIL PROTECTED] Switching between HTTP and HTTPS

2006-06-20 Thread Matus UHLAR - fantomas
On 19.06.06 19:19, Anil Dighade wrote: > Can anybody tell me how to implement switching between HTTP and HTTPS. As > read from various sources, this should be done using qualified URL from > code. But is it possible in Apache to configure such switching depending on > URL string. For eg. if I enter

Re: [EMAIL PROTECTED] RE: /my.html#mySection

2006-06-20 Thread Matus UHLAR - fantomas
On 19.06.06 12:21, Mike - EMAIL IGNORED wrote: >64.233.173.67 - - [18/Jun/2006:14:03:11 -0400] > "GET /XXX/XXX/YYY.html#ZZZ > HTTP/1.1" 403 - "http://www.XXX.net/religion/XXX/XXX/YYY.html"; > "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1 > .NET CLR 1.1.4322)" >

Re: [EMAIL PROTECTED] ErrorDocument Question

2006-06-20 Thread Matus UHLAR - fantomas
On 19.06.06 12:14, Fenlason, Josh wrote: > I know you can set it up so it will automatically select the correct > language from a selection of something like this: > /foo/bar.html.en > /foo/bar.html.fr > /foo/bar.html.es > I want to do the same thing but specify the language in a

RE: [EMAIL PROTECTED] Can Apache automatically popup a dialogue box before allowing access to a file?

2006-06-20 Thread Boyle Owen
> -Original Message- > From: Ahn, Chang [mailto:[EMAIL PROTECTED] > Sent: Monday, June 19, 2006 9:55 PM > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] Can Apache automatically popup a > dialogue box before allowing access to a file? > > Can Apache automatically popup a dialogu

RE: [EMAIL PROTECTED] RE: /my.html#mySection

2006-06-20 Thread Boyle Owen
> -Original Message- > From: news [mailto:[EMAIL PROTECTED] On Behalf Of Mike - > EMAIL IGNORED > Sent: Monday, June 19, 2006 6:21 PM > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] RE: /my.html#mySection > Linux mbrc20 2.6.14-1.1656_FC4 #1 Thu Jan 5 22:13:22 >EST 2006 i686 i