[EMAIL PROTECTED] Re: how can i search the APACHE.org archives

2005-08-22 Thread Will (sent by Nabble.com)
Hey, guys, check out this searchable archive: http://www.nabble.com/Apache-f90.html - it archives all the Apache mailing lists into a forum, so that a user can cross search all the lists, or drill down to an individual project to search. This archive currently has about half year's data. the UI is

[EMAIL PROTECTED] Seeing Bus Errors in main error log file

2005-08-22 Thread Harald Falkenberg
Hallo, has anybody an idea what is causing *Bus Errors* in Apache? We are running: apache 1.3.33 on solaris 8 with PHP and Mod_Perl I find a couple of entries like these in our main error log: [Fri Aug 19 01:01:03 2005] [notice] child pid 4819 exit signal Bus Error (10) [Fri Aug

[EMAIL PROTECTED] SSL and AuthType Basic

2005-08-22 Thread Ashley Gould
I want to force use of https on directories where authentication is required to avoid sending htpasswords in the clear. Example: RewriteEngineon RewriteCond %{HTTPS} !=on RewriteRule (.*) https://www.ucop.edu/blah/blah/$1 [R] AuthType Basic AuthName "Re

RE: [EMAIL PROTECTED] mod_rewrite

2005-08-22 Thread Lucas, David
/25 would be correct. If you look at Noah response his solution works on the upper half of the subnet so 10.10.131.128/25 is matched. I need the lower half now. Dave -Original Message- From: William A. Rowe, Jr. [mailto:[EMAIL PROTECTED] Sent: Monday, August 22, 2005 2:09 PM To: user

Re: [EMAIL PROTECTED] mod_rewrite

2005-08-22 Thread William A. Rowe, Jr.
Lucas, David wrote: Ok, How might I match? 10.10.131.0 - 10.10.131.127 10.10.131.0/25 is the standard syntax for oddball subnetting. - The official User-To-User support forum of the Apache HTTP Server Project. See http://ht

RE: [EMAIL PROTECTED] mod_rewrite

2005-08-22 Thread Lucas, David
Ok, How might I match? 10.10.131.0 - 10.10.131.127 Thanks, Dave -Original Message- From: Lucas, David Sent: Friday, July 29, 2005 3:46 PM To: users@httpd.apache.org Subject: RE: [EMAIL PROTECTED] mod_rewrite Great!! Thank you!! That worked!! -Original Message- From: Noah [

Re: [EMAIL PROTECTED] Strange problem with Options +Indexes

2005-08-22 Thread Stuart Gall
On 21 Aug 2005, at 17:39, Joshua Slive wrote: So I have apache 2.0.50 installed on Mandrake A little bit of an old version. OK It comes with mandrake 10.1 and I am a bit lazy :-) The latest version is 2.0.54 and http://ftp.physics.auth.gr/pub/mirrors/apache/httpd/CHANGES_2.0 doesn't ment

RE: [EMAIL PROTECTED] Premature end of script headers

2005-08-22 Thread Gonzales, Youn
I disabled se for httpd using the system-config-securitylevel util and it works. I found the apache.te file but I don't know how to load the policy yet. I just need to read up on selinux and learn enough to setup the bigsis/cgi directory with the same perms as cgi-bin under se. Thanks -Origin

Re: [EMAIL PROTECTED] mod_auth_ldap

2005-08-22 Thread Andrew Musselman
Hi Pamela, On this page: http://httpd.apache.org/docs/1.3/windows.html The directions say you can load a module by adding a line to your httpd.conf: LoadModule ldap_auth_module libexec/apache2/mod_auth_ldap.so I got mine working on FreeBSD by using the ports tree, after renaming and removing htt

Re: [EMAIL PROTECTED] mod_ntlm module in windows

2005-08-22 Thread William A. Rowe, Jr.
Muthu wrote: Hi, I want to use mod_ntlm module in windows apache.Can I get the mod_ntlm sourcecode for windows or can I get the latest version which is supproted the same module.I could see somewhere in mod_ntlm source code for unix. Can you give me some direction to use windows domain user

Re: [EMAIL PROTECTED] Virtual Hosts

2005-08-22 Thread Spike Burkhardt
Indran, Have you been successful yet? I have implemented the SunOne directory service LDAP authentication in a directory for a virtual server. Would this help? Let me know. spike Indran D Govender wrote: Hello List Has anyone had any success with implementing apache virtual hosts in

Re: [EMAIL PROTECTED] Re: Mod-Rewrite: Changing + to -, _ or .

2005-08-22 Thread John Hicks
David Blomstrom wrote: OK, I've finally got it working. Thanks for all the tips, everyone. Would you mind sharing with us just how you solved your problem? (Future generations may thank you.) Thanks, --John --- Kovacs Baldvin <[EMAIL PROTECTED]> wrote: On Sun, Aug 21, 2005 at 10:18:26

[EMAIL PROTECTED] apache forward proxy download problem

2005-08-22 Thread Gerrit van der Kolk
Hi,   I’m facing a problem when using apache with mod_proxy module configured as forward proxy. Downloads fail more often than there successful. Especially large downloads(10MB+), but also the small ones. I have tried to use different combinations of configurations to eliminate the prob

Re: [EMAIL PROTECTED] Apache and PHP cause Internal Server Errors

2005-08-22 Thread Davide Bianchi
Christopher Malton wrote: > Gateway Tower PC, Pentium 2 processor. > 128MB RAM (We think. We know it's either 64 or 128) > Win 98 SE > PHPTriad installer installed: >Apache 1.3.3 >PHP 4.1.0 >MySQL 3.?? I'd suggest to upgrade the machine and the software. Since someone already has an e

Re: [EMAIL PROTECTED] how can i search the APACHE.org archives

2005-08-22 Thread Arne Heizmann
MEENA SELVAM wrote: This link doesnt include search facility http://mail-archives.apache.org/mod_mbox/httpd-users/ is there any other link where i can search thru the httpd.apache.org archive Yes, www.google.com. Use "site:mail-archives.apache.org" and perhaps "inurl:httpd". **

[EMAIL PROTECTED] Apache and PHP cause Internal Server Errors

2005-08-22 Thread Christopher Malton
Our organization's server, which is a Win32 box, has recently been causing Internal Server Errors and then, if left unattended,as it was over a weekend, it will crash completely. The problem, we think, is memory related. We only run PHP as a CGI and frequently execute MySQL queries. One of o

[EMAIL PROTECTED] Question marks in URLs on Win32

2005-08-22 Thread Martin Atkins
Hi folks, I'm working on a CMS which uses mod_rewrite to dispatch all URLs through a single script. The original URL isn't included in the destination URL since the CMS uses REQUEST_URI to get the original URL and decodes it manually. While testing the CMS on a Win32 Apache install I noticed

Re: [EMAIL PROTECTED] mod_rewrite problem

2005-08-22 Thread Nick Gushlow
On Fri, 2005-08-19 at 11:09 -0400, Noah wrote: Just be aware that with /that/ 'abbey' rule, you'll catch 'abbey' *anywhere* in the URL, including as a subword of something, such as: http://www.example.com/directory/cities/blabbeyville/coffeeshops.html This may or may not be desired. =)

RE: [EMAIL PROTECTED] mod_rewrite problem

2005-08-22 Thread Nick Gushlow
OK apologies, it does work. I setup a test virtual server copying the defintion from the live server, pointing to he same files and the test one works. Odd odd odd. Tail from the live VS: 172.16.2.254 - - [22/Aug/2005:09:44:46 +0100] [domain.com/sid#8101e20][rid#84424a0/initial] (1) pass through

[EMAIL PROTECTED] mod_auth_ldap

2005-08-22 Thread pamela.kalle
Hi I'm also trying to use the mod_auth_ldap, but I'm having troubles as well. Maybe my experience can help you as well, and maybe someone else can help us both. I'm working on a Windows 2000 server. I installed the apache version 2.0.54. In this version I find a mod_auth_ldap.so in the modules m

RE: [EMAIL PROTECTED] Re: How to solve this descriptor problem on solaris 8 and apache 1.3.33

2005-08-22 Thread Axel-Stéphane SMORGRAV
On Solaris I would use pfiles rather than lsof, especially since pfiles ships with the OS and lsof does not... -ascs -Original Message- From: Kovacs Baldvin [mailto:[EMAIL PROTECTED] Sent: Sunday, August 21, 2005 7:41 PM To: users@httpd.apache.org; Harald Falkenberg Subject: Re: [EMAIL

Re: [EMAIL PROTECTED] Options Indexes related

2005-08-22 Thread fRANz
On 8/22/05, Axel-Stéphane SMORGRAV <[EMAIL PROTECTED]> wrote: > Take a look at the manual page for mod_autoindex, and particularly the > description of the HeaderName directive. HeaderName works fine for me. Thank you, fRANz -

RE: [EMAIL PROTECTED] Options Indexes related

2005-08-22 Thread Axel-Stéphane SMORGRAV
Take a look at the manual page for mod_autoindex, and particularly the description of the HeaderName directive. -ascs -Original Message- From: fRANz [mailto:[EMAIL PROTECTED] Sent: Monday, August 22, 2005 8:59 AM To: [EMAIL PROTECTED] Subject: [EMAIL PROTECTED] Options Indexes related