Re: [EMAIL PROTECTED] Apache and PHP

2005-11-06 Thread Malka Cymbalista
It turns out that whenever the error occurs, there is a message in the error log saying that a file was not found. These files are indeed not found. But why should that cause the php not to open properly? And sometimes it does open properly? >>> [EMAIL PROTECTED] wrote on 11/1/2005 6:01 PM: >

[EMAIL PROTECTED] Compatibility problem of Apache2.055 and mod_dav_svn module in Subversion1.2.x

2005-11-06 Thread kanwalpalsingh.banga
Hi I am trying to setup a repository in Windows environment, I would be using Eclipse as my SVN client, for that I installed subclipse from Tigris site I have Subversion 1.2.3 and Apache 2.0.55 ( I got to Setup.exe to install both of them and dint compile the code on my machine.) I did follo

Re: [EMAIL PROTECTED] Google Map of Apache users active on this list (OT)

2005-11-06 Thread Stephen Cook
Please do not include me on your map. Claire McLister wrote: Thanks. This is done by subscribing an email address to the list. Then, when emails come to that address, we pick up the closest IP or domain name to the user that we can find from the email header. This is then looked up in an IP->l

[EMAIL PROTECTED] RedirectMatch Question

2005-11-06 Thread Marc Perkel
OK - how would I do this? I'm migrating my mailman server to another computer and I'm changing the URL and I want to redirect from the old URL to the new one. The old server has many virtual domains and here what I want to do: http://www.churchofreality.org/mailman/* ---> http://mailman.ch

[EMAIL PROTECTED] MP3 streaming on Apache

2005-11-06 Thread John Talbot
How do you turn Apache 2 into a MP3-streaming server? Apache 1 had mod_mp3 and the Apache::MP3 Perl module (unmaintained now for over 2 years), but what do Apache 2 owners usually do in this case? Thanks a lot, this is my first post on this list, - John The reason I want this is to create my

Re: [EMAIL PROTECTED] Google Map of Apache users active on this list (OT)

2005-11-06 Thread Claire McLister
Thanks. This is done by subscribing an email address to the list. Then, when emails come to that address, we pick up the closest IP or domain name to the user that we can find from the email header. This is then looked up in an IP->location database and put on a map. In case you want to try it

Re: [EMAIL PROTECTED] Google Map of Apache users active on this list (OT)

2005-11-06 Thread Claire McLister
Good point. Will be interesting to see how different languages email lists map out. There is a German email list of Apache users. We'll start a map of that as well and see how it develops. Let me know if you know of other languages. On Nov 4, 2005, at 6:38 AM, Nick Kew wrote: Of course, wha

[EMAIL PROTECTED] ServerAlias: length limit ???

2005-11-06 Thread Michael D Schleif
Apache/1.3.33 ServerAlias [A] Is there a limit to how long a ServerAlias can be? Characters? Words? [B] Can I use multiple (more than one) ServerAlias line? For large numbers of aliases, this may improve readability and manageability. What do you think? -- Best Regards, mds mds res

[EMAIL PROTECTED] Cannot access any webpage using localhost

2005-11-06 Thread Isildo Mendes
Hi, I have Apache 2.0.55 running as a service in Windows XP SP2. I visited lots of sites regarding installation and configuration of Apache. My config file is ok, I didn't change it yet. The name of my server is localhost in port 80. I can stop and restart the server without problems, but when tr

Re: [EMAIL PROTECTED] Configuring apache as a gateway for another domain on another server

2005-11-06 Thread Bart Heinsius
Nick, can you point me in the right direction? Regards, Bart. On 11/6/05, Nick Kew <[EMAIL PROTECTED]> wrote: > On Sunday 06 November 2005 20:28, Michael D. Berger wrote: > > If nothing else is suggested, > > I already said, the reverse proxy will do it easily. > > Sure, it's different to the exam

Re: [EMAIL PROTECTED] Configuring apache as a gateway for another domain on another server

2005-11-06 Thread Tom Hoefakker
Maybe a combination of mod_proxy and mod_rewrite is what you're looking for. Something like this: RewriteCond %{HTTP_HOST} www.d1.com [NC] RewriteRule ^(.*) http://m1/$1 [P,L] RewriteCond %{HTTP_HOST} www.d2.com [NC] RewriteRule ^(.*) http://m2/$1 [P,L] I don't have a lot of experience with

Re: [EMAIL PROTECTED] Configuring apache as a gateway for another domain on another server

2005-11-06 Thread Nick Kew
On Sunday 06 November 2005 20:28, Michael D. Berger wrote: > If nothing else is suggested, I already said, the reverse proxy will do it easily. Sure, it's different to the examples in my article. I didn't consider it necessary: it's altogether simpler to configure than the examples I present. -

RE: [EMAIL PROTECTED] Configuring apache as a gateway for another domain on another server

2005-11-06 Thread Michael D. Berger
If nothing else is suggested, I think that this could be done with NetFilter (http://www.netfilter.org/). Hopefully, something else will be suggested. Mike. -- Michael D. Berger [EMAIL PROTECTED] > -Original Message- > From: Bart Heinsius [mailto:[EMAIL PROTECTED] > Sent: Sunday, Novem

Re: [EMAIL PROTECTED] apachectl trivia question

2005-11-06 Thread alfredo
Ashley Gould wrote: If I make changes to httpd.conf to activate an unused module, would the new module be available by running apachclt graceful, or do I need to do a full stop start? apachectl gracefulGracefully restarts the Apache daemon by sending it a SIGUSR1. If

[EMAIL PROTECTED] Apache installation Problem on Win2K SBS

2005-11-06 Thread TonyY8088
Re-post,  Please help if you can. Thanks, Tony   I am installing the Apache v2.nn on the Win2K SBS and have problem to confirm the status. I can see both the apache.exe and apachemonitor.exe running on the Task Manager.  If I try to use http://localhost I get nothing.  A blink of DOS command scree

[EMAIL PROTECTED] Question on Apache Installation on Win2K SBS

2005-11-06 Thread TonyY8088
Re-post, Please help if you can. Thanks, TonyNote: forwarded message attached. Yahoo! FareChase - Search multiple travel sites in one click. --- Begin Message --- Hi,   I am installing the Apache v2.nn on the Win2K SBS and have problem to confirm the status. I can see both the apache.exe an

Re: [EMAIL PROTECTED] Configuring apache as a gateway for another domain on another server

2005-11-06 Thread Bart Heinsius
>From what I read in the documentation, mod_proxy works for routing requests for www.d1.com/myapp1 and www.d1.com/myapp2 (notice that both url's are in the d1.com domain) to be served by different servers on the internal network. What I want is to route requests for www.d1.com and www.d2.com to di

Re: [EMAIL PROTECTED] Configuring apache as a gateway for another domain on another server

2005-11-06 Thread Nick Kew
On Sunday 06 November 2005 12:10, Bart Heinsius wrote: > Hi, > > I have two servers on my internal network with apache on them, lets > say m1 and m2. > I want to host two domains on my network, lets say www.d1.com and > www.d2.com. The router routes all external http requests to server m1. > Extern

Re: [EMAIL PROTECTED] Google Map of Apache users active on this list (OT)

2005-11-06 Thread Mark
This is really cool.  Could you provide more information on how you did this?On 11/4/05, Nick Kew <[EMAIL PROTECTED] > wrote:On Friday 04 November 2005 14:14, Claire McLister wrote:> Thanks. We have received several reports of exact location hits and > several that say that the markers were way off

[EMAIL PROTECTED] Configuring apache as a gateway for another domain on another server

2005-11-06 Thread Bart Heinsius
Hi, I have two servers on my internal network with apache on them, lets say m1 and m2. I want to host two domains on my network, lets say www.d1.com and www.d2.com. The router routes all external http requests to server m1. External requests for www.d1.com should be processed by apache on server m

Re: [EMAIL PROTECTED] copy ssl cert from old machine to replacement machine?

2005-11-06 Thread Joe A
turns out apache was auto loading an ssl.conf from conf.d without me knowing about it. im gona edit that file instead -joe On 11/4/05, William A. Rowe, Jr. <[EMAIL PROTECTED]> wrote: > Sean Brown wrote: > > It's my understanding that the SSL Certificate is bound to the IP of > > the site, NOT the