Re: [us...@httpd] Unable to compile Apache-2.2.11 on Windows using Cygwin

2009-01-06 Thread sathya sai
Thanks a lot William !! On Tue, Jan 6, 2009 at 12:39 PM, William A. Rowe, Jr. wrote: > sathya sai wrote: > > Thanks William for your sustained support :-) > > > > Could you please tell me from where can I download -win32-src-r2.zip > > file with corrections. And just curious, probably by when wou

AW: [us...@httpd] Can't compile libssl and libz into httpd 2.2.11

2009-01-06 Thread xPostings
Hi Williams I understand your argument. But in my case I would like to compile libssl into the httpd because of the criticial SSL/TLS vulnerability. Why that? The answer is easy: Because I can only control the installed httpd but not the installation of the debian boxes itself in the production en

[us...@httpd] 301 Redirect problem on Apache 2.0.50

2009-01-06 Thread Channel Five
Hi I have the following URL's http://www.mydomain.com/topic-guide.php http://www.mydomain.com/topic-guide.php?section=2 http://www.mydomain.com/topic-guide.php?section=3 http://www.mydomain.com/topic-guide.php?section=4 I want to redirect all those ending in ?section=x to http://www.mydomain.co

Re: [us...@httpd] help I do not understand

2009-01-06 Thread Krist van Besien
Here is your first mistake: You must enable name based virtual hosts if you want to use them. You have the NameVritualhost directive commented out. > #NameVirtualHost *:80 Replace this with NameVirtualhost *:80 (remove the #, in other words) It is also better not to make your config dependent o

Re: [us...@httpd] 301 Redirect problem on Apache 2.0.50

2009-01-06 Thread Krist van Besien
On Tue, Jan 6, 2009 at 11:25 AM, Channel Five wrote: > Hi > > I have the following URL's > > http://www.mydomain.com/topic-guide.php > http://www.mydomain.com/topic-guide.php?section=2 > http://www.mydomain.com/topic-guide.php?section=3 > http://www.mydomain.com/topic-guide.php?section=4 You have

Re: [us...@httpd] 301 Redirect problem on Apache 2.0.50

2009-01-06 Thread Channel Five
Thanks Krist.. So basically I'm attempting the impossible? On Tue, Jan 6, 2009 at 10:42 AM, Krist van Besien wrote: > On Tue, Jan 6, 2009 at 11:25 AM, Channel Five > wrote: > > Hi > > > > I have the following URL's > > > > http://www.mydomain.com/topic-guide.php > > http://www.mydomain.com/top

Re: [us...@httpd] sethandler server-status

2009-01-06 Thread Suresh Babu
Hai Try this config SetHandler server-status Order Deny,Allow Deny from all Allow from 127.0.0.1 2008/12/29 Andre Hübner > Hello, > > im looking for a way to disable the posibility for users to activate a > server-status page within own virtual host. > For now it is enough to add a .htacces

Re: [us...@httpd] help I do not understand

2009-01-06 Thread john.swilt...@wanadoo.fr
Krist van Besien a écrit : Here is your first mistake: You must enable name based virtual hosts if you want to use them. You have the NameVritualhost directive commented out. #NameVirtualHost *:80 Replace this with NameVirtualhost *:80 (remove the #, in other words) It is also better not to

Re: [us...@httpd] help I do not understand

2009-01-06 Thread Eric Covener
On Tue, Jan 6, 2009 at 9:27 AM, john.swilt...@wanadoo.fr wrote: > I apply the changes. the same result Paste your current virtual-host related config, and the URL you're requesting. -- Eric Covener cove...@gmail.com - The off

Re: [us...@httpd] help I do not understand

2009-01-06 Thread john.swilt...@wanadoo.fr
Eric Covener a écrit : On Tue, Jan 6, 2009 at 9:27 AM, john.swilt...@wanadoo.fr wrote: I apply the changes. the same result Paste your current virtual-host related config, and the URL you're requesting. # # Use name-based virtual hosting. # NameVirtualHost *:80 # # NOTE: NameVirtualHost ca

Re: [us...@httpd] help I do not understand

2009-01-06 Thread Eric Covener
> ServerName http://www.fakessh.eu > ServerAlias http://fakessh.eu Maybe ServerAlias wants a simple hostname (doc implies this), and doesn't interpret the protocol like ServerName does. -- Eric Covener cove...@gmail.com - The o

RE: [us...@httpd] 32 bit Apache2.2.11 on 64 bit RHEL5.2

2009-01-06 Thread Vinay Purohit
Thanks Matt!!! Is there any way to find the path for httpd? In my Application I asked the path for httpd.conf, is there any way to reach httpd with that to find out the apache web server mode? I assume the httpd.conf file may not necessary be in /conf folder and hence I can NOT go to../bin from

Re: [us...@httpd] 301 Redirect problem on Apache 2.0.50

2009-01-06 Thread Corey Shaw
Edd,    What you're attempting to do is possible using PHP.  The "header()" function allows you to accomplish what you're trying to do.  The definition is at  http://us2.php.net/manual/en/function.header.php.  Putting "header('Location: location_to_go_to')" will redirect to wherever you point

Re: [us...@httpd] 301 Redirect problem on Apache 2.0.50

2009-01-06 Thread Brian Mearns
No, it sounds like you're attempting to do what is already being done. As Krist said, any of those urls you specified will cause Apache to invoke PHP for topic-guide.php, passing the URL specified section value in the $_GET super global. To illustrate this, just create a file on your server, say t

Re: AW: [us...@httpd] Can't compile libssl and libz into httpd 2.2.11

2009-01-06 Thread William A. Rowe, Jr.
xPostings wrote: > Hi Williams > > I understand your argument. But in my case I would like to compile libssl > into the httpd because of the criticial SSL/TLS vulnerability. Why that? > The answer is easy: Because I can only control the installed httpd but not > the installation of the debian boxe

Re: [us...@httpd] help I do not understand

2009-01-06 Thread john.swilt...@wanadoo.fr
Eric Covener a écrit : ServerName http://www.fakessh.eu ServerAlias http://fakessh.eu Maybe ServerAlias wants a simple hostname (doc implies this), and doesn't interpret the protocol like ServerName does. and how to do it is a mysterious -

Re: [us...@httpd] help I do not understand

2009-01-06 Thread Eric Covener
On Tue, Jan 6, 2009 at 11:00 AM, john.swilt...@wanadoo.fr wrote: > Eric Covener a écrit : >>> >>> ServerName http://www.fakessh.eu >>> ServerAlias http://fakessh.eu >> >> Maybe ServerAlias wants a simple hostname (doc implies this), and >> doesn't interpret the protocol like ServerName does. >> >

Re: [us...@httpd] help I do not understand

2009-01-06 Thread Norman Peelman
john.swilt...@wanadoo.fr wrote: Eric Covener a écrit : ServerName http://www.fakessh.eu ServerAlias http://fakessh.eu Maybe ServerAlias wants a simple hostname (doc implies this), and doesn't interpret the protocol like ServerName does. and how to do it is a mysterious

Re: [us...@httpd] help I do not understand

2009-01-06 Thread swilting
I just change my dns I add a CNAME between fakessh.eu and www.fakessh.eu I wait until tomorrow spread I have ServerAlias Directive fakessh.eu Le mardi 06 janvier 2009 à 13:08 -0500, Eric Covener a écrit : > On Tue, Jan 6, 2009 at 11:00 AM, john.swilt...@wanadoo.fr > wrote: > > Eric Covener a écr

[us...@httpd] Virtual Hosts Problem - Many hours - No Luck

2009-01-06 Thread Joseph Morgan
I am having a problem configuring virtual hosts on my Apache 2.2.6 server. Apache ALWAYS serves up the first virtual host regardless of the actual host requested. Here is the small snippet from my http.conf file (just so you know I did it, but please, if something is wrong...): # Virtual hos

Re: [us...@httpd] Virtual Hosts Problem - Many hours - No Luck

2009-01-06 Thread Rob
It Needs to look something like this: ServerAdmin ad...@prosportsresumes.com DocumentRoot G:/webroot/htdocs/ProSportsResumes ServerName www.ProSportsResumes.com 127.0.0.1 should be ur servers ip On Wed, Jan 7, 2009 at 4:24 PM, Joseph Morgan wrote: > I am

Re: [us...@httpd] Virtual Hosts Problem - Many hours - No Luck

2009-01-06 Thread Joseph Morgan
Well, that seems to have done something, as now no virtual host is working it is serving up a default HTML page at the base of the document root. So, for example, my directory structure is: g:/webroot/htdocs/web_sites With this change, it is now serving up g:/webroot/htdocs/index.html S

Re: [us...@httpd] Virtual Hosts Problem - Many hours - No Luck

2009-01-06 Thread Jim Walls
Joseph Morgan wrote: I am having a problem configuring virtual hosts on my Apache 2.2.6 server. Apache ALWAYS serves up the first virtual host regardless of the actual host requested. Well, that does not look close to my Virtual Hosts section of my httpd.conf - excerpted here: NameVirtualHos

Re: [us...@httpd] Virtual Hosts Problem - Many hours - No Luck

2009-01-06 Thread Joseph Morgan
Thanks, Jim. I assume you have something similar to an index.html in each document root? I actually tried using the NameVirtualHost *, but it didn't change a thing. Apache still served the first virtual host (and poorly at that) in the list. Someone has suggested to use 127.0.0.1:80, and th

Re: [us...@httpd] Virtual Hosts Problem - Many hours - No Luck

2009-01-06 Thread Joseph Morgan
Jim here is my changed httpd.conf file: NameVirtualHost * # = ServerAdmin ad...@prosportsresumes.com DocumentRoot G:/webroot/htdocs/ProSportsResumes ServerName www.ProSportsResumes.com #

[us...@httpd] Lags on simple static file requests

2009-01-06 Thread Paul Prescod
I grep my logs every day for slow queries. Sometimes I see a dynamic request in there and I go and optimize the code. But more concerning is when I see simple serving of very small static files on a very underloaded machine. I am looking for hints about the source. For example, here's an ordinary

Re: [us...@httpd] Lags on simple static file requests

2009-01-06 Thread Scott Gifford
"Paul Prescod" writes: > I grep my logs every day for slow queries. Sometimes I see a dynamic > request in there and I go and optimize the code. But more concerning > is when I see simple serving of very small static files on a very > underloaded machine. I am looking for hints about the source.

Re: [us...@httpd] help I do not understand

2009-01-06 Thread Krist van Besien
On Tue, Jan 6, 2009 at 3:40 PM, Eric Covener wrote: >> ServerName http://www.fakessh.eu >> ServerAlias http://fakessh.eu > > Maybe ServerAlias wants a simple hostname (doc implies this), and > doesn't interpret the protocol like ServerName does. Both servername and serveralias just take a hostnam

Re: [us...@httpd] Virtual Hosts Problem - Many hours - No Luck

2009-01-06 Thread Krist van Besien
On Wed, Jan 7, 2009 at 5:16 AM, Joseph Morgan wrote: > Jim here is my changed httpd.conf file: > > NameVirtualHost * > > # > = > > ServerAdmin ad...@prosportsresumes.com > DocumentRoot G:/webroot/htdocs/ProSportsRe