[us...@httpd] Re: unsubscribe

2009-12-28 Thread LuKreme
On 28-Dec-2009, at 14:35, Ali Jawad wrote: > To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org > " from the digest: users-digest-unsubscr...@httpd.apache.org -- I WILL NOT DRIVE THE PRINCIPAL'S CAR Bart chalkboard Ep. 7F06 ---

Re: [us...@httpd] Redirect permanent http to https fails

2009-12-28 Thread Jeff Shearer
The Redirect permanent /private https://***/private failed in the main server config. As did a bunch of other alternatives. However, your suggestion to use RedirectPermanent provided by mod_alias within the virtual host container worked like a charm. I did not see this approach within the

[us...@httpd] unsubscribe

2009-12-28 Thread Ali Jawad
On Mon, Dec 28, 2009 at 10:50 PM, Jeff Shearer wrote: > The following redirect fails: > > Redirect permanent http://192.168.0.200/private https://192.168.0.200/private > > I have 2 virtual hosts with exactly the same DocumentRoot: > > > > > > private is a directory under the DocumentRoot. > > I

Re: [us...@httpd] Redirect permanent http to https fails

2009-12-28 Thread André Warnier
Jeff Shearer wrote: The following redirect fails: Redirect permanent http://192.168.0.200/private https://192.168.0.200/private That may be because you have not read the (excellent) on-line documentation, which states : http://httpd.apache.org/docs/2.2/mod/mod_alias.html#redirectpermanent i

[us...@httpd] Redirect permanent http to https fails

2009-12-28 Thread Jeff Shearer
The following redirect fails: Redirect permanent http://192.168.0.200/private https://192.168.0.200/private I have 2 virtual hosts with exactly the same DocumentRoot: private is a directory under the DocumentRoot. I can reach https://192.168.0.200/private directly. Please help. Thanks.

Re: [us...@httpd] I need a technique for executing very fast code behind the httpd apache server.

2009-12-28 Thread Andrei Paul Nistor
Thanks all. I will test some of the things you told me in here and will give feedback in case i will find a good solution. Second I'm thinking to test the mod_perl solution and if this isn't working i will write maybe my own module for apache. The ONC-RPC from PHP to another deamon could also be a

Re: [us...@httpd] HTTPD Logwatch

2009-12-28 Thread Asai
== Logwatch is a Linux/Unix utility that reports on whatever logs it is requested to report. Here is the description from the MAN file. " LogWatch is a customizable, pluggable log-monitoring system. It will go through your logs fo

Re: [us...@httpd] Configuration leads to error

2009-12-28 Thread Eric Covener
On Mon, Dec 28, 2009 at 10:27 AM, R. M. Pretzlaw wrote: > > (Which others?) > anyhow: all of them shall be fulfilled. The VirtualHost on Port 200, the > "virtual" directory "/foo" and the forwards for non-existent subdirs of > "/foo/trunk" to "/foo/trunk/_index.php?u={What-Ever-It-Was}". But in th

Re: [us...@httpd] Configuration leads to error

2009-12-28 Thread R. M. Pretzlaw
Eric Covener wrote: Within an Alias "http://127.0.0.1:200/foo"; that shall use "G:/Documents/web/foo". If you stop here, does the Alias work? Yes. If I turn the "Option Indexes" it shows all sub-directories. Even the mentioned .htacces is found in "/foo/trunk". And in "/foo" there exists

Re: [us...@httpd] Configuration leads to error

2009-12-28 Thread Eric Covener
> And in "G:/Documents/web/foo/trunk" this .htacces lines when i call > http://127.0.0.1:200/foo/trunk : > >    RewriteRule ^[.]{0}$ _index.php?u= [L,QSA] >    RewriteRule ^([^_]+)$ _index.php?u=$1 [L,QSA] RewriteEngine on? RewriteBase? Later in this thread you talk about testing for non-existen

Re: [us...@httpd] Configuration leads to error

2009-12-28 Thread Eric Covener
On Mon, Dec 28, 2009 at 9:31 AM, R. M. Pretzlaw wrote: > Eric Covener wrote: >> >> Can you illustrate the same issue without any rewrite? > > I guess you mean this (sorry I have to train my English): > > There is a VirtualHost on Port 200 e.g. > It's Document Root is "D:/develop". > So every call

Re: [us...@httpd] Configuration leads to error

2009-12-28 Thread R. M. Pretzlaw
Eric Covener wrote: Can you illustrate the same issue without any rewrite? I guess you mean this (sorry I have to train my English): There is a VirtualHost on Port 200 e.g. It's Document Root is "D:/develop". So every call of http://127.0.0.1:200 leads to this dir. Within an Alias "http://127

Re: [us...@httpd] Configuration leads to error

2009-12-28 Thread Eric Covener
On Mon, Dec 28, 2009 at 9:05 AM, R. M. Pretzlaw wrote: > The major problem in my case is, that the Alias and Rewriting doesn't > contain the directory (as the error.log shows). It looks up the files in the > wrong root. Can you illustrate the same issue without any rewrite? -- Eric Covener cov

Re: [us...@httpd] Configuration leads to error

2009-12-28 Thread R. M. Pretzlaw
André Warnier wrote: Maybe the first thing is : why use a .htaccess file, when you evidently have access to the main server configuration. Because I want to make an application not only for my apache. This makes it easier for end-users. But I give the hint, too. I am also a bit puzzled by y

Re: [us...@httpd] Configuration leads to error

2009-12-28 Thread André Warnier
R. M. Pretzlaw wrote: Whats so confusing about my configutation? Maybe the first thing is : why use a .htaccess file, when you evidently have access to the main server configuration. .htaccess files are probably to most over-used thing in Apache configurations, and they are quite inefficient,

[us...@httpd] Configuration leads to error

2009-12-28 Thread R. M. Pretzlaw
Hello. Beside other configurations I got this VirtualHost: DocumentRoot "D:/develop" Options Indexes FollowSymLinks Includes ExecCGI AllowOverride All Order allow,deny Allow from all Alias /foo G:/Documents/w