Re: [users@httpd] mod_rewrite: failed to lock file descriptor

2005-05-15 Thread Robert Zagarello
The problem with errors is that you can't take them seriously after the first one. What I mean by that is to understand all subsequent errors in the light of the first. This seems especially true of Windows. It also means if you can fix the first one the others may go away. BZAG ===

Re: [users@httpd] mod_rewrite: failed to lock file descriptor

2005-05-15 Thread Andrew Zeon
I forgot to mention that after "failed to unlock file descriptor " it always crashes. Andrew Zeon/Australia/[EMAIL PROTECTED] 16/05/2005 03:00 PM Please respond to users To users@httpd.apache.org cc Subject [EMAIL PROTECTED] mod_rewrite: failed to lock file descriptor

[users@httpd] mod_rewrite: failed to lock file descriptor

2005-05-15 Thread Andrew Zeon
Hi, I have Apache 1.3.26 running on Windows 2000. I am getting the following in my error.log: [Mon May 16 13:44:04 2005] [error] Server ran out of threads to serve requests. Consider raising the ThreadsPerChild setting [Mon May 16 13:44:09 2005] [error] [client 10.207.14.115] (36)Resource deadlo

[users@httpd] Re: Apache on Linux

2005-05-15 Thread Broming plutonium
Never mind. I downloaded the C compiler gcc, and used it to compile the unix source code. It works great. __ Post your free ad now! http://personals.yahoo.ca -

Re: [users@httpd] Apache on Linux

2005-05-15 Thread Tim Burden
Why not start simple, like with Fedora. Then you can do yum install apache and all is well. Later, when you become a bitchin Linux guru, move to a harder distro. - Original Message - From: "Broming plutonium" <[EMAIL PROTECTED]> To: Sent: Sunday, May 15, 2005 7:22 PM Subject: [EMAIL PROT

Re: [users@httpd] Apache on Linux

2005-05-15 Thread ganesan malairaja
From: Eric Ladner <[EMAIL PROTECTED]> Reply-To: Eric Ladner <[EMAIL PROTECTED]> To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] Apache on Linux Date: Sun, 15 May 2005 21:35:34 -0500 Xandros reports that it's compatible with Debian package from the Woody distribution. See http://packages

Re: [users@httpd] Apache on Linux

2005-05-15 Thread Eric Ladner
Xandros reports that it's compatible with Debian package from the Woody distribution.  See http://packages.debian.org/sta ble/web/apache Interesting that no 2.0 package is availible.  You'd probably have to search the docs for the proper way to install apache (probably requires more than just that

Re: [users@httpd] Apache on Linux

2005-05-15 Thread Robert Zagarello
Hmmm... I never tried this but can't one install Apache on non-Windows using a pre-packaged - i.e., pre-compiled and linked - executable? This is where the previous advice on using Gentoo or Fedora Core may come in handy, because it may be readily available for those OSs. The only reason your s

Re: [users@httpd] Apache on Linux

2005-05-15 Thread Joseph A Nagy Jr
Broming plutonium wrote: Hello everyone. I lost my Windows OS, and installed Xandros, which is a version of Linux. I'n not at all familiar with Linux. How do I install Apache on it? I downloaded the source code, unzipped it, and did ./configure --prefix=/usr/local/apache2. Everything seemed to go n

[users@httpd] Apache on Linux

2005-05-15 Thread Broming plutonium
Hello everyone. I lost my Windows OS, and installed Xandros, which is a version of Linux. I'n not at all familiar with Linux. How do I install Apache on it? I downloaded the source code, unzipped it, and did ./configure --prefix=/usr/local/apache2. Everything seemed to go normally until this line

[users@httpd] vhost Problem

2005-05-15 Thread Joseph A Nagy Jr
For some reason, I'm getting the following error message in the logfile for a new virtual host (in addition to getting a 403 Forbidden when trying to pull up the directory index): [Sun May 15 17:10:59 2005] [crit] [client 207.144.230.112] (13)Permission denied: /home/shadowtaint/public_ht ml/.h

Re: [users@httpd] Help with simple rewrite

2005-05-15 Thread Joshua Slive
On 5/15/05, Manuel Blechschmidt <[EMAIL PROTECTED]> wrote: > > > > RewriteEngine On > > RewriteBase / > > RewriteRule ^/gallery$ http://gallery.robinbowes.com [L,R] > > > > > > This does the re-direct, but does not change the URL in my browser. > > This is correct

[users@httpd] Re: Help with simple rewrite

2005-05-15 Thread Robin Bowes
Manuel Blechschmidt wrote: Robin Bowes wrote: I would like to re-direct http://robinbowes.com/gallery to http://gallery.robinbowes.com, and change the URL in the browser to the new one too. [snip] For you problem Redirect is used. This sends an Location Header to the client. Redirect /gallery/ h

Re: [users@httpd] Help with simple rewrite

2005-05-15 Thread Manuel Blechschmidt
Robin Bowes wrote: Hi, I'm running apache-2.0.52-3.1 on Fedora Core 3. I would like to re-direct http://robinbowes.com/gallery to http://gallery.robinbowes.com, and change the URL in the browser to the new one too. I'm currently using the following: RewriteEngine On RewriteB