[EMAIL PROTECTED] Help compiling Apache 2.2.0

2006-03-20 Thread R Huff
I am attempting to compile Apache 2.2.0 on an Ubuntu Linux system.  After 
uncompressing the tar file and running ./configure, I cannot find the make 
file.  I am a newbie at this Linux stuff, so if someone can please point me 
to the right direction, I would appreciate it.


Thanks,

Ryan

_
Is your PC infected? Get a FREE online computer virus scan from McAfee® 
Security. http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963



-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] Apache 2.2 - how to disable "dummy internal connection" requests?

2006-03-20 Thread William A. Rowe, Jr.

Joshua Slive wrote:

On 3/19/06, Alexey Polyakov <[EMAIL PROTECTED]> wrote:


I'm using Apache 2.2, and it makes a lot of "dummy internal
connection" requests. Is there a way to disable this?


Not without changing mpms.  But they are there for a good reason and
they do no harm, so why bother?  (If this is causing problems for your
log analysis tools, then you have lousy log analysis tools.  You can
get rid of them from the logs using the techniques outlined here:
http://httpd.apache.org/docs/2.2/logs.html#conditional


This sounds wrong; the server shouldn't be issuing GET /'s - that sucks.
I'm unfamiliar with what MPM is doing this, and why, but this is why there
are much less expensive operations like OPTIONS * which are far less CPU
and bandwidth intensive.

-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED] apache(v2.0) to jboss(v4.0.3) context path prepend - how to?

2006-03-20 Thread Xin Herbert Wu
Hi, All,
I am new to Apache2.0/Jboss4.0.3 integration. After looking over apache
docs, I am still stuck with this simple problem:

(1) Assume I have a web app called mywebapp.war and I deployed it to the
jboss server(http1.1 connector listens on port 8080). I can access this web
app with the URL http://localhost:8080/mywebapp/index.html 
(2) Now I want to add the apache server(on port 80) as the front-end to
access mywebapp.war with nicer and shorter url 
http://localhost:80/index.html

So I tried to configure apache server so that it can automatically prepend
the context path "/mywebapp" to the request and then relay it to jboss
server either via ajp13(such as port 8009) or directly to http port 8080. 
But I did not find out on how to do it.

What's the proper way to configure apache so that both (1) and (2) are valid
ways to access the given webapp?

Thanks a lot for your help!

-Xin




-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: [EMAIL PROTECTED] [Digest Authentication Fail] Apache Http Server V2.2

2006-03-20 Thread Ouyang Lei
Thanks very much for Joshua's help, this problem has been resolved.

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of 
> Joshua Slive
> Sent: Tuesday, March 21, 2006 1:13 AM
> To: users@httpd.apache.org
> Subject: Re: [EMAIL PROTECTED] [Digest Authentication Fail] 
> Apache Http Server V2.2
> 
> 
> On 3/20/06, Ouyang Lei <[EMAIL PROTECTED]> wrote:
> >
> 
> > 
> >AllowOverride All
> > 
> >
> > Step 4. Make a new directory named as /usr/local/apache/htdocs/secd,
> > create .htaccess as belows:
> 
> You can put the directives directly in the  section.  No
> need for the .htaccess file.

I think so.

> 
> > AuthType Digest
> > AuthName "Digest Test"
> 
> > Step 5. Create digest_passwords file by "./htdigest
> > /usr/local/apache/passwd/digest_passwords
> > /usr/local/apache/htdocs/secd 123"
> 
> The "realm" specified using htdigest must match the AuthName, if I
> remember correctly.
> 

I try to input command as "./htdigest /usr/local/apache/passwd/digest_passwords 
"Digest Test" 1234". The digest authentication works.

> Joshua.
> 
> -
> The official User-To-User support forum of the Apache HTTP 
> Server Project.
> See http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: [EMAIL PROTECTED]
>"   from the digest: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 

-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED] RE: [Digest Authentication Fail] Apache Http Server V2.2

2006-03-20 Thread Ouyang Lei


> -Original Message-
> From: Joost de Heer [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, March 21, 2006 2:16 AM
> To: Ouyang Lei
> Cc: users@httpd.apache.org
> Subject: Re: [Digest Authentication Fail] Apache Http Server V2.2
> 
> 
> > Step 3. Then update httpd.conf as following
> 
> > LoadModule auth_digest_module modules/mod_auth_digest.so
> > 
> >AllowOverride All
> > 
> >
> 
> > Step 4. Make a new directory named as /usr/local/apache/htdocs/secd,
> > create .htaccess as belows:
> > "
> > AuthType Digest
> > AuthName "Digest Test"
> > AuthUserFile /usr/local/apache/passwd/digest_passwords
> > Require valid-user
> 
> Since you're using file based authentication, you need to 
> load the file
> authenticator, by loading the module mod_authn_file.so. And 
> since you're
> authorising users, you need to load the user authorisation module
> mod_authz_user.so
> 

I think "mod_authn_file.so" and "mod_authz_user.so" are static loaded module, 
the following command check it in my machine. 

===
apachectl -t -D DUMP_MODULES

Loaded Modules:
 core_module (static)
 authn_file_module (static)<<<
 authn_default_module (static)
 authz_host_module (static)
 authz_groupfile_module (static)
 authz_user_module (static) <<<
 authz_default_module (static)
 auth_basic_module (static)
 include_module (static)
 filter_module (static)
 log_config_module (static)
 env_module (static)
 setenvif_module (static)
 mpm_prefork_module (static)
 http_module (static)
 mime_module (static)
 status_module (static)
 autoindex_module (static)
 asis_module (static)
 cgi_module (static)
 negotiation_module (static)
 dir_module (static)
 actions_module (static)
 userdir_module (static)
 alias_module (static)
 so_module (static)
 auth_digest_module (shared)
Syntax OK
===

Thank you!

> Joost
> 
> 

-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] Apache 2.2 - how to disable "dummy internal connection" requests?

2006-03-20 Thread Robert Ionescu

Alexey Polyakov wrote:

Well, maybe there's a reason, but I think that issuing "GET /"
requests (sometimes a few such requests per second) without thinking
of consequences is an overkill. Maybe it's a way to do some low-level
optimization, but once such request hits some dynamic php-script, we
have a complete waste of resources (not to mention havoc in logs).

Do you know if downgrading Apache to version 2.0 will solve the problem?


Changing the MPM from prefork to worker will solve this "problem", too.

-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] virtual server problems SOLVED

2006-03-20 Thread RYAN M. vAN GINNEKEN

- Krist van Besien <[EMAIL PROTECTED]> wrote:
> On 3/20/06, RYAN M. vAN GINNEKEN <[EMAIL PROTECTED]> wrote:
> > Hello all everthing was working fine until i reset my fedora box
> today not sure what happened but apache is a bit broken now.  The only
> content that comes up are for www.computerking.ca site. ie if i point
> browser at www.computerking.ca everthing works fine.  If i point my
> browser at blazebartending.com i still get the www.computerking.ca
> content. I know the default behavior for apache is to use the first
> vhost listed if it cannot find an apporpatly named site.  But why is
> it doing this to me?
> >
> > [EMAIL PROTECTED] conf.v]# /usr/sbin/apachectl -S
> > VirtualHost configuration:
> > wildcard NameVirtualHosts and _default_ servers:
> > *:*www.computerking.ca
> (/etc/httpd/conf.v/computerking.ca:4)
> > *:80   is a NameVirtualHost
> >  default server mail.computerking.ca
> (/etc/httpd/conf.v/computerking.ca:19)
> >  port 80 namevhost mail.computerking.ca
> (/etc/httpd/conf.v/computerking.ca:19)
> 
> snip...
> 
> I suspect you have somewhere in /etc/httpd/conf.v/computerking.ca
> something like this:
> 
> 
> 
> ServerName www.computerking.ca
> ...
> 
> 
> What hapens if you change that to
>  ?
> 
Thanks had  solved everything. must have taken priority over all 
the other vhosts.  

-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] apache check

2006-03-20 Thread Jason Henderson

Garry Taylor wrote:

Jason Henderson wrote:


can anyone tell me what this means please

i ran the test config and this is the reply i got

only one usage of each socket address(protocol/network address/port) 
is normally permitted : make_sock could not bind to address 
192.168.1.100:8080

no listening sockets available shutting down
unable to open logs

thank you


-
The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

looks like some other demon is using port 8080. Try running a "lsof -n 
| grep 8080" to find out what it is.

Giz

-
The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



where do i run this from as i tried from run in the start menu and got 
told can't find it tried running from inside msdos and was told not 
recognized as internal or external command, operable program or batch file


-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] apache check

2006-03-20 Thread Scott Smyth
Another process is already running and attached
to port 8080 most likely.  You will see the same
issue when starting other daemons twice when
the first instance is still running and bound
to the port.  Maybe httpd was still running?
I have done that many times myself.

Scott

Garry Taylor wrote:
> Jason Henderson wrote:
> 
>> can anyone tell me what this means please
>>
>> i ran the test config and this is the reply i got
>>
>> only one usage of each socket address(protocol/network address/port)
>> is normally permitted : make_sock could not bind to address
>> 192.168.1.100:8080
>> no listening sockets available shutting down
>> unable to open logs
>>
>> thank you
>>
>>
>> -
>> The official User-To-User support forum of the Apache HTTP Server
>> Project.
>> See http://httpd.apache.org/userslist.html> for more info.
>> To unsubscribe, e-mail: [EMAIL PROTECTED]
>>   "   from the digest: [EMAIL PROTECTED]
>> For additional commands, e-mail: [EMAIL PROTECTED]
>>
> looks like some other demon is using port 8080. Try running a "lsof -n |
> grep 8080" to find out what it is.
> Giz
> 
> -
> The official User-To-User support forum of the Apache HTTP Server Project.
> See http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: [EMAIL PROTECTED]
>   "   from the digest: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 
> 


-- 
Scott Smyth, consultant
[EMAIL PROTECTED]
206-851-0979

-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED] httpd v2.2.0: SSI - #exec cgi= Segfaults

2006-03-20 Thread Scott Smyth
Hi;

I saw some changes to httpd v2.2.0 to move toward
"#include virtual" to avoid "#exec cgi" segfaults.
However, I am seeing segfaults in both cases above but
not in "#exec cmd".  Is there a suitable difference
in using these two and when and where?  "#exec cgi"
worked in v2.0.54, but now all of SSI execs have to
be  "#exec cmd" or the prefork httpd daemon
segfaults.

ARM chipset. mpm=prefork.

thx,
Scott

-- 
Scott Smyth, consultant
[EMAIL PROTECTED]
206-851-0979

-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] apache check

2006-03-20 Thread Garry Taylor

Jason Henderson wrote:


can anyone tell me what this means please

i ran the test config and this is the reply i got

only one usage of each socket address(protocol/network address/port) 
is normally permitted : make_sock could not bind to address 
192.168.1.100:8080

no listening sockets available shutting down
unable to open logs

thank you


-
The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

looks like some other demon is using port 8080. Try running a "lsof -n | 
grep 8080" to find out what it is.

Giz

-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED] apache check

2006-03-20 Thread Jason Henderson

can anyone tell me what this means please

i ran the test config and this is the reply i got

only one usage of each socket address(protocol/network address/port) is 
normally permitted : make_sock could not bind to address 192.168.1.100:8080

no listening sockets available shutting down
unable to open logs

thank you


-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: [EMAIL PROTECTED] RADIUS and Subversion config

2006-03-20 Thread David Heppenstall
Thanks again,

Commenting out the three lines of code regarding returning the 404 works
like a dream.

Many thanks,

 - Dave

> -Original Message-
> From: David Heppenstall 
> Sent: Monday, March 20, 2006 8:59 AM
> To: Neil A. Hillard; users@httpd.apache.org
> Subject: RE: [EMAIL PROTECTED] RADIUS and Subversion config
> 
> 
> Good morning gentlemen,
> 
> Thank you very much for both of those suggestions, I'll try 
> them both in succession asap.
> 
>  - Dave
> 
> 
> > -Original Message-
> > From: Neil A. Hillard [mailto:[EMAIL PROTECTED]
> > Sent: Monday, March 20, 2006 6:36 AM
> > To: David Heppenstall; users@httpd.apache.org
> > Subject: Re: [EMAIL PROTECTED] RADIUS and Subversion config
> > 
> > 
> > Chaps,
> > 
> > Joe Orton wrote:
> > > On Tue, Mar 07, 2006 at 10:45:58AM -0500, David Heppenstall wrote:
> > >> I'm having some problems configuring Apache while serving
> > Subversion
> > >> Repositories in conjunction with RADIUS authentication.
> > > 
> > > There is an age-old bug in mod_auth_radius which causes 
> spurious 404 
> > > errors with pretty much any use of DAV in Apache:
> > > 
> > > http://mailman.lyra.org/pipermail/dav-dev/2001-January/001897.html
> > > 
> > > just find the section of code in mod_auth_radius where it returns 
> > > HTTP_NOT_FOUND and remove it.
> > 
> > Apologies for the lateness of this reply but you may also 
> like to try
> > mod_auth_xradius: 
> > http://www.outoforder.cc/projects/apache/mod_a> uth_xradius/
> > 
> > 
> > HTH,
> > 
> > 
> > Neil.
> > 
> > 
> > -- 
> > Neil Hillard[EMAIL PROTECTED]
> > Westland Helicopters Ltd.   http://www.whl.co.uk/
> > 
> > Disclaimer: This message does not necessarily reflect the
> >  views of Westland Helicopters Ltd.
> > 
> 
> -
> The official User-To-User support forum of the Apache HTTP 
> Server Project. See 
> http://httpd.apache.org/userslist.html> for more info. 
> To unsubscribe, e-mail: [EMAIL PROTECTED]
>"   from the digest: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 

-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] setting up

2006-03-20 Thread Jason Henderson

yes the ip address is 86.133.145.236 and lan ip is as stated running on
windows and windows firewall is off

the make and model of router is d-link g604t

thanks for the help so far

If the site says that port 80 is in stealth mode then Access is denied
to your webserver, port 80 is blocked.

Is your Router or your machine that apache is running on blocking port
80? or is BT blocking port 80?

What is your IP address?

Is the LAN IP Address of 192.168.1.100 the correct ip address of the
machine running Apache.

Is this machine a Linux or a Windows PC, if its a Windows machine are
ALL firewalls off inc windows own firewall?


Does http://www.grc.com/x/ne.dll?rh1dkyd2 give you a correct IP Address
before you start the Scan?






Mark Feather wrote:

What make and model is your router?


- Original Message - From: "Jason Henderson" 
<[EMAIL PROTECTED]>

To: 
Sent: Monday, March 20, 2006 6:47 PM
Subject: Re: [EMAIL PROTECTED] setting up





yes i meant to put it in last time

i visited the site and ran the the test and all ports came up stealth 
i am wondering what to do now as when i ping  from here i got results 
so in a bit of a mess now


any help again would appreciated

Mark Feather wrote:
Have you visited http://www.grc.com/x/ne.dll?rh1dkyd2 and performed 
a port scan?



- Original Message - From: "Jason Henderson" 
<[EMAIL PROTECTED]>

To: 
Sent: Monday, March 20, 2006 6:24 PM
Subject: Re: [EMAIL PROTECTED] setting up


i have opened up the ports within my firewall and have turned off 
the other firewalls on my system but have to leave the one on my 
router because when its shut off i cannot access the net (strange 
huh?) anyway the following links are to the pictures of what i have 
set on router


www.freaksstaff.com/Images/ports.jpg

and www.freaksstaff.com/Images/rules_applied.jpg

the other thing i have noticed is i don't see the apache symbol in 
my sys tray should i be worried as when i click on the monitor 
apache it tells me its already running.


the ip that came back that you have is the one showing on my dyndns 
service


again any help gratefully appreciated



Mark Feather wrote:

Are you sure that blades.gotdns.com is a valid address?

No ping, No FTP, No Ssh, No Webserver, No Nothing at either the 
blades.gotdns.com or 86.133.145.236!


Is the Router Firewalled or incorrectly configured?

Are your machines firewalled?

Shut down all firewalls and visit 
http://www.grc.com/x/ne.dll?rh1dkyd2 and scan all your Ports.  Are 
any of them open or blocked?


Has BT blocked your Servers Ports for you?   I believe your ISP is 
BT.



- Original Message - From: "Evan Platt" 
<[EMAIL PROTECTED]>

To: 
Sent: Monday, March 20, 2006 5:46 PM
Subject: Re: [EMAIL PROTECTED] setting up



On Mon, March 20, 2006 8:56 am, Jason Henderson wrote:
please can you try to access it for me the address is 
blades.gotdns.com


you should (he says hopefully) get a under construction picture

thank you in advance


No response. blades.gotdns.com resolves to 86.133.145.236. 
Doesn't answer

pings either.



- 

The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]






-
The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]






-
The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for 

Re: [EMAIL PROTECTED] Mod_Expires "If-Modified-Since" Problem

2006-03-20 Thread Kishore Jalleda
Yes I checked the test box and the Prod boxes, there was infact a difference in apache's response headers, the difference was in the header " X-Pad: avoid browser bug " header.
 
This header was included in the HTTP/1.1  200 OK responses for a GET /index.php HTTP/1.1 from apache on the production boxes( apache 1.3.33, php 4.4.0) , but not in the test box ( apache 1.3.33, php 4.3.11), may be thats telling IE not to cache .

 
Any hints 
 
Kishore Jalleda  
On 3/18/06, Joshua Slive <[EMAIL PROTECTED]> wrote:
On 3/18/06, Kishore Jalleda <[EMAIL PROTECTED]> wrote:>
> Hi Joshua,>  Thanks for you reply, but i checked every box and each one> sends all the required headers like Last_Modified, Cache Control, Expires,> etc (I am checking using Ethereal), also httpd -l gives this
So you're saying that the HTTP response headers are exactly the same,the HTTP response body is exactly the same, but MSIE is reactingdifferently?  I'd check again.  The only communication between theserver and the browser comes in the response headers and body.  It
must be something in there that is different.Joshua.-The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]For additional commands, e-mail: 
[EMAIL PROTECTED]


Re: [EMAIL PROTECTED] setting up

2006-03-20 Thread Mark Feather

A stab in the dark.

If your router is a BT Voyager 2100 Wireless ADSL Router then you need to 
set up Port Forwarding via Virtual Server Configuration or Port Forwarding.


Forward port 80 to the ip address of the machine hosting Apache on port 80.

Have a look at 
http://www.adslguide.org.uk/hardware/reviews/2005/q1/voyager2100.asp half 
way down the page



- Original Message - 
From: "Jason Henderson" <[EMAIL PROTECTED]>

To: 
Sent: Monday, March 20, 2006 6:47 PM
Subject: Re: [EMAIL PROTECTED] setting up





yes i meant to put it in last time

i visited the site and ran the the test and all ports came up stealth i am 
wondering what to do now as when i ping  from here i got results so in a 
bit of a mess now


any help again would appreciated

Mark Feather wrote:
Have you visited http://www.grc.com/x/ne.dll?rh1dkyd2 and performed a 
port scan?



- Original Message - From: "Jason Henderson" 
<[EMAIL PROTECTED]>

To: 
Sent: Monday, March 20, 2006 6:24 PM
Subject: Re: [EMAIL PROTECTED] setting up


i have opened up the ports within my firewall and have turned off the 
other firewalls on my system but have to leave the one on my router 
because when its shut off i cannot access the net (strange huh?) anyway 
the following links are to the pictures of what i have set on router


www.freaksstaff.com/Images/ports.jpg

and www.freaksstaff.com/Images/rules_applied.jpg

the other thing i have noticed is i don't see the apache symbol in my 
sys tray should i be worried as when i click on the monitor apache it 
tells me its already running.


the ip that came back that you have is the one showing on my dyndns 
service


again any help gratefully appreciated



Mark Feather wrote:

Are you sure that blades.gotdns.com is a valid address?

No ping, No FTP, No Ssh, No Webserver, No Nothing at either the 
blades.gotdns.com or 86.133.145.236!


Is the Router Firewalled or incorrectly configured?

Are your machines firewalled?

Shut down all firewalls and visit http://www.grc.com/x/ne.dll?rh1dkyd2 
and scan all your Ports.  Are any of them open or blocked?


Has BT blocked your Servers Ports for you?   I believe your ISP is BT.


- Original Message - From: "Evan Platt" 
<[EMAIL PROTECTED]>

To: 
Sent: Monday, March 20, 2006 5:46 PM
Subject: Re: [EMAIL PROTECTED] setting up



On Mon, March 20, 2006 8:56 am, Jason Henderson wrote:
please can you try to access it for me the address is 
blades.gotdns.com


you should (he says hopefully) get a under construction picture

thank you in advance


No response. blades.gotdns.com resolves to 86.133.145.236. Doesn't 
answer

pings either.



-
The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]






-
The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]






-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] setting up

2006-03-20 Thread Mark Feather

What make and model is your router?


- Original Message - 
From: "Jason Henderson" <[EMAIL PROTECTED]>

To: 
Sent: Monday, March 20, 2006 6:47 PM
Subject: Re: [EMAIL PROTECTED] setting up





yes i meant to put it in last time

i visited the site and ran the the test and all ports came up stealth i am 
wondering what to do now as when i ping  from here i got results so in a 
bit of a mess now


any help again would appreciated

Mark Feather wrote:
Have you visited http://www.grc.com/x/ne.dll?rh1dkyd2 and performed a 
port scan?



- Original Message - From: "Jason Henderson" 
<[EMAIL PROTECTED]>

To: 
Sent: Monday, March 20, 2006 6:24 PM
Subject: Re: [EMAIL PROTECTED] setting up


i have opened up the ports within my firewall and have turned off the 
other firewalls on my system but have to leave the one on my router 
because when its shut off i cannot access the net (strange huh?) anyway 
the following links are to the pictures of what i have set on router


www.freaksstaff.com/Images/ports.jpg

and www.freaksstaff.com/Images/rules_applied.jpg

the other thing i have noticed is i don't see the apache symbol in my 
sys tray should i be worried as when i click on the monitor apache it 
tells me its already running.


the ip that came back that you have is the one showing on my dyndns 
service


again any help gratefully appreciated



Mark Feather wrote:

Are you sure that blades.gotdns.com is a valid address?

No ping, No FTP, No Ssh, No Webserver, No Nothing at either the 
blades.gotdns.com or 86.133.145.236!


Is the Router Firewalled or incorrectly configured?

Are your machines firewalled?

Shut down all firewalls and visit http://www.grc.com/x/ne.dll?rh1dkyd2 
and scan all your Ports.  Are any of them open or blocked?


Has BT blocked your Servers Ports for you?   I believe your ISP is BT.


- Original Message - From: "Evan Platt" 
<[EMAIL PROTECTED]>

To: 
Sent: Monday, March 20, 2006 5:46 PM
Subject: Re: [EMAIL PROTECTED] setting up



On Mon, March 20, 2006 8:56 am, Jason Henderson wrote:
please can you try to access it for me the address is 
blades.gotdns.com


you should (he says hopefully) get a under construction picture

thank you in advance


No response. blades.gotdns.com resolves to 86.133.145.236. Doesn't 
answer

pings either.



-
The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]






-
The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]






-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] setting up

2006-03-20 Thread Mark Feather

Port 80 must be open and not in Stealth mode!

This is what your problem is at the mo



- Original Message - 
From: "Jason Henderson" <[EMAIL PROTECTED]>

To: 
Sent: Monday, March 20, 2006 6:47 PM
Subject: Re: [EMAIL PROTECTED] setting up





yes i meant to put it in last time

i visited the site and ran the the test and all ports came up stealth i am 
wondering what to do now as when i ping  from here i got results so in a 
bit of a mess now


any help again would appreciated

Mark Feather wrote:
Have you visited http://www.grc.com/x/ne.dll?rh1dkyd2 and performed a 
port scan?



- Original Message - From: "Jason Henderson" 
<[EMAIL PROTECTED]>

To: 
Sent: Monday, March 20, 2006 6:24 PM
Subject: Re: [EMAIL PROTECTED] setting up


i have opened up the ports within my firewall and have turned off the 
other firewalls on my system but have to leave the one on my router 
because when its shut off i cannot access the net (strange huh?) anyway 
the following links are to the pictures of what i have set on router


www.freaksstaff.com/Images/ports.jpg

and www.freaksstaff.com/Images/rules_applied.jpg

the other thing i have noticed is i don't see the apache symbol in my 
sys tray should i be worried as when i click on the monitor apache it 
tells me its already running.


the ip that came back that you have is the one showing on my dyndns 
service


again any help gratefully appreciated



Mark Feather wrote:

Are you sure that blades.gotdns.com is a valid address?

No ping, No FTP, No Ssh, No Webserver, No Nothing at either the 
blades.gotdns.com or 86.133.145.236!


Is the Router Firewalled or incorrectly configured?

Are your machines firewalled?

Shut down all firewalls and visit http://www.grc.com/x/ne.dll?rh1dkyd2 
and scan all your Ports.  Are any of them open or blocked?


Has BT blocked your Servers Ports for you?   I believe your ISP is BT.


- Original Message - From: "Evan Platt" 
<[EMAIL PROTECTED]>

To: 
Sent: Monday, March 20, 2006 5:46 PM
Subject: Re: [EMAIL PROTECTED] setting up



On Mon, March 20, 2006 8:56 am, Jason Henderson wrote:
please can you try to access it for me the address is 
blades.gotdns.com


you should (he says hopefully) get a under construction picture

thank you in advance


No response. blades.gotdns.com resolves to 86.133.145.236. Doesn't 
answer

pings either.



-
The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]






-
The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]






-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] setting up

2006-03-20 Thread Mark Feather
If the site says that port 80 is in stealth mode then Access is denied to 
your webserver, port 80 is blocked.


Is your Router or your machine that apache is running on blocking port 80? 
or is BT blocking port 80?


What is your IP address?

Is the LAN IP Address of 192.168.1.100 the correct ip address of the machine 
running Apache.


Is this machine a Linux or a Windows PC, if its a Windows machine are ALL 
firewalls off inc windows own firewall?


Does http://www.grc.com/x/ne.dll?rh1dkyd2 give you a correct IP Address 
before you start the Scan?





- Original Message - 
From: "Jason Henderson" <[EMAIL PROTECTED]>

To: 
Sent: Monday, March 20, 2006 6:47 PM
Subject: Re: [EMAIL PROTECTED] setting up





yes i meant to put it in last time

i visited the site and ran the the test and all ports came up stealth i am 
wondering what to do now as when i ping  from here i got results so in a 
bit of a mess now


any help again would appreciated

Mark Feather wrote:
Have you visited http://www.grc.com/x/ne.dll?rh1dkyd2 and performed a 
port scan?



- Original Message - From: "Jason Henderson" 
<[EMAIL PROTECTED]>

To: 
Sent: Monday, March 20, 2006 6:24 PM
Subject: Re: [EMAIL PROTECTED] setting up


i have opened up the ports within my firewall and have turned off the 
other firewalls on my system but have to leave the one on my router 
because when its shut off i cannot access the net (strange huh?) anyway 
the following links are to the pictures of what i have set on router


www.freaksstaff.com/Images/ports.jpg

and www.freaksstaff.com/Images/rules_applied.jpg

the other thing i have noticed is i don't see the apache symbol in my 
sys tray should i be worried as when i click on the monitor apache it 
tells me its already running.


the ip that came back that you have is the one showing on my dyndns 
service


again any help gratefully appreciated



Mark Feather wrote:

Are you sure that blades.gotdns.com is a valid address?

No ping, No FTP, No Ssh, No Webserver, No Nothing at either the 
blades.gotdns.com or 86.133.145.236!


Is the Router Firewalled or incorrectly configured?

Are your machines firewalled?

Shut down all firewalls and visit http://www.grc.com/x/ne.dll?rh1dkyd2 
and scan all your Ports.  Are any of them open or blocked?


Has BT blocked your Servers Ports for you?   I believe your ISP is BT.


- Original Message - From: "Evan Platt" 
<[EMAIL PROTECTED]>

To: 
Sent: Monday, March 20, 2006 5:46 PM
Subject: Re: [EMAIL PROTECTED] setting up



On Mon, March 20, 2006 8:56 am, Jason Henderson wrote:
please can you try to access it for me the address is 
blades.gotdns.com


you should (he says hopefully) get a under construction picture

thank you in advance


No response. blades.gotdns.com resolves to 86.133.145.236. Doesn't 
answer

pings either.



-
The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]






-
The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]






-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] setting up

2006-03-20 Thread Jason Henderson



yes i meant to put it in last time

i visited the site and ran the the test and all ports came up stealth i 
am wondering what to do now as when i ping  from here i got results so 
in a bit of a mess now


any help again would appreciated

Mark Feather wrote:
Have you visited http://www.grc.com/x/ne.dll?rh1dkyd2 and performed a 
port scan?



- Original Message - From: "Jason Henderson" 
<[EMAIL PROTECTED]>

To: 
Sent: Monday, March 20, 2006 6:24 PM
Subject: Re: [EMAIL PROTECTED] setting up


i have opened up the ports within my firewall and have turned off the 
other firewalls on my system but have to leave the one on my router 
because when its shut off i cannot access the net (strange huh?) 
anyway the following links are to the pictures of what i have set on 
router


www.freaksstaff.com/Images/ports.jpg

and www.freaksstaff.com/Images/rules_applied.jpg

the other thing i have noticed is i don't see the apache symbol in my 
sys tray should i be worried as when i click on the monitor apache it 
tells me its already running.


the ip that came back that you have is the one showing on my dyndns 
service


again any help gratefully appreciated



Mark Feather wrote:

Are you sure that blades.gotdns.com is a valid address?

No ping, No FTP, No Ssh, No Webserver, No Nothing at either the 
blades.gotdns.com or 86.133.145.236!


Is the Router Firewalled or incorrectly configured?

Are your machines firewalled?

Shut down all firewalls and visit 
http://www.grc.com/x/ne.dll?rh1dkyd2 and scan all your Ports.  Are 
any of them open or blocked?


Has BT blocked your Servers Ports for you?   I believe your ISP is BT.


- Original Message - From: "Evan Platt" 
<[EMAIL PROTECTED]>

To: 
Sent: Monday, March 20, 2006 5:46 PM
Subject: Re: [EMAIL PROTECTED] setting up



On Mon, March 20, 2006 8:56 am, Jason Henderson wrote:
please can you try to access it for me the address is 
blades.gotdns.com


you should (he says hopefully) get a under construction picture

thank you in advance


No response. blades.gotdns.com resolves to 86.133.145.236. Doesn't 
answer

pings either.



-
The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]






-
The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]






-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] setting up

2006-03-20 Thread Mark Feather
Have you visited http://www.grc.com/x/ne.dll?rh1dkyd2 and performed a port 
scan?



- Original Message - 
From: "Jason Henderson" <[EMAIL PROTECTED]>

To: 
Sent: Monday, March 20, 2006 6:24 PM
Subject: Re: [EMAIL PROTECTED] setting up


i have opened up the ports within my firewall and have turned off the other 
firewalls on my system but have to leave the one on my router because when 
its shut off i cannot access the net (strange huh?) anyway the following 
links are to the pictures of what i have set on router


www.freaksstaff.com/Images/ports.jpg

and www.freaksstaff.com/Images/rules_applied.jpg

the other thing i have noticed is i don't see the apache symbol in my sys 
tray should i be worried as when i click on the monitor apache it tells me 
its already running.


the ip that came back that you have is the one showing on my dyndns 
service


again any help gratefully appreciated



Mark Feather wrote:

Are you sure that blades.gotdns.com is a valid address?

No ping, No FTP, No Ssh, No Webserver, No Nothing at either the 
blades.gotdns.com or 86.133.145.236!


Is the Router Firewalled or incorrectly configured?

Are your machines firewalled?

Shut down all firewalls and visit http://www.grc.com/x/ne.dll?rh1dkyd2 
and scan all your Ports.  Are any of them open or blocked?


Has BT blocked your Servers Ports for you?   I believe your ISP is BT.


- Original Message - From: "Evan Platt" <[EMAIL PROTECTED]>
To: 
Sent: Monday, March 20, 2006 5:46 PM
Subject: Re: [EMAIL PROTECTED] setting up



On Mon, March 20, 2006 8:56 am, Jason Henderson wrote:

please can you try to access it for me the address is blades.gotdns.com

you should (he says hopefully) get a under construction picture

thank you in advance


No response. blades.gotdns.com resolves to 86.133.145.236. Doesn't 
answer

pings either.



-
The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]






-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] libexpat error during make

2006-03-20 Thread William A. Rowe, Jr.

Sean Carey wrote:

HOT DAMN
Thats was it! Thanks for the help.

On 3/20/06, TAYLOR, TIM (CONTRACTOR) <[EMAIL PROTECTED]> wrote:


I believe it has to do with symbolic links. It has been a couple of
years that I ran into this. It should be well documented "somewhere".

I only faintly remember something about the build expecting absolute
paths. It, for some reason, could not traverse symlinks correctly and
most /home directories are symbolicly linked.


You'll be glad to hear this is fixed in the next httpd versions 2.0 and
2.2 built with the coming releases of apr-util - at least, I hope it is
for this case as well.

-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] setting up

2006-03-20 Thread Jason Henderson
i have opened up the ports within my firewall and have turned off the 
other firewalls on my system but have to leave the one on my router 
because when its shut off i cannot access the net (strange huh?) anyway 
the following links are to the pictures of what i have set on router


www.freaksstaff.com/Images/ports.jpg

and www.freaksstaff.com/Images/rules_applied.jpg

the other thing i have noticed is i don't see the apache symbol in my 
sys tray should i be worried as when i click on the monitor apache it 
tells me its already running.


the ip that came back that you have is the one showing on my dyndns service

again any help gratefully appreciated



Mark Feather wrote:

Are you sure that blades.gotdns.com is a valid address?

No ping, No FTP, No Ssh, No Webserver, No Nothing at either the 
blades.gotdns.com or 86.133.145.236!


Is the Router Firewalled or incorrectly configured?

Are your machines firewalled?

Shut down all firewalls and visit http://www.grc.com/x/ne.dll?rh1dkyd2 
and scan all your Ports.  Are any of them open or blocked?


Has BT blocked your Servers Ports for you?   I believe your ISP is BT.


- Original Message - From: "Evan Platt" <[EMAIL PROTECTED]>
To: 
Sent: Monday, March 20, 2006 5:46 PM
Subject: Re: [EMAIL PROTECTED] setting up



On Mon, March 20, 2006 8:56 am, Jason Henderson wrote:

please can you try to access it for me the address is blades.gotdns.com

you should (he says hopefully) get a under construction picture

thank you in advance


No response. blades.gotdns.com resolves to 86.133.145.236. Doesn't 
answer

pings either.



-
The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]






-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] libexpat error during make

2006-03-20 Thread Sean Carey
HOT DAMN
Thats was it! Thanks for the help.

Cheers


Sean

On 3/20/06, TAYLOR, TIM (CONTRACTOR) <[EMAIL PROTECTED]> wrote:
> I believe it has to do with symbolic links. It has been a couple of
> years that I ran into this. It should be well documented "somewhere".
>
> I only faintly remember something about the build expecting absolute
> paths. It, for some reason, could not traverse symlinks correctly and
> most /home directories are symbolicly linked.
>
> regards,
> tt
>
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of
> Sean Carey
> Sent: Monday, March 20, 2006 12:03 PM
> To: users@httpd.apache.org
> Subject: Re: [EMAIL PROTECTED] libexpat error during make
>
> I will try that. Though, I am wondering why that would cause it?
>
> Thanks
>
>
> Sean
>
> On 3/20/06, TAYLOR, TIM (CONTRACTOR) <[EMAIL PROTECTED]> wrote:
> > Sean,
> >   I think you will find if you use a file system other than your /home
>
> > to do your build the problem will go away. For example, expand your
> > source tree under /tmp and give it a try.
> >
> > regards,
> > tt
> >
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of
> > Sean Carey
> > Sent: Monday, March 20, 2006 11:46 AM
> > To: users@httpd.apache.org
> > Subject: [EMAIL PROTECTED] libexpat error during make
> >
> > Hi
> > I am still trying to find a solution for the following error. It is
> > occuring under solaris 8 with HTTPD 2.2.0 and 2.0.53. Any help would
> > be great.
> >
> > Sean
> >
> > ket -lnsl -lresolv -lpthread -ldl
> > libtool: link: cannot find the library
> > `/home/sean/apache_compile/httpd-2.0.55/srclib/apr-util/xml/expat/lib/
> > li
> > bexpat.la'
> > make[2]: *** [htpasswd] Error 1
> > make[2]: Leaving directory
> > `/home/sean/apache_compile/httpd-2.0.55/support'
> > make[1]: *** [all-recursive] Error 1
> > make[1]: Leaving directory
> > `/home/sean/apache_compile/httpd-2.0.55/support'
> > make: *** [all-recursive] Error 1
> > > pwd
> > /home/sean/apache_compile/httpd-2.0.55
> > >
> >
> > >
> >
> > -
> > The official User-To-User support forum of the Apache HTTP Server
> > Project.
> > See http://httpd.apache.org/userslist.html> for more info.
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> >"   from the digest: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
> > -
> > The official User-To-User support forum of the Apache HTTP Server
> Project.
> > See http://httpd.apache.org/userslist.html> for more info.
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> >"   from the digest: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
>
>
> --
>
> Sean Carey
> [EMAIL PROTECTED]
>
> -
> The official User-To-User support forum of the Apache HTTP Server
> Project.
> See http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: [EMAIL PROTECTED]
>"   from the digest: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
> -
> The official User-To-User support forum of the Apache HTTP Server Project.
> See http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: [EMAIL PROTECTED]
>"   from the digest: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


--

Sean Carey
[EMAIL PROTECTED]

-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED] Re: Reverse proxy with response update (once again)

2006-03-20 Thread Joost de Heer
FRAS Eddy RD-TECH-REN wrote:
> I re-post this question, I'm sure someone will be able to tell me at least
> if it's feasible or not.
> I'd like to use httpd as a reverse proxy and modify the response sent by
> the remote server with an XSL treatment (via a servlet for example).

Something like mod_proxy_html/xml perhaps? (http://apache.webthing.com)

Joost


-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED] Re: [Digest Authentication Fail] Apache Http Server V2.2

2006-03-20 Thread Joost de Heer
> Step 3. Then update httpd.conf as following

> LoadModule auth_digest_module modules/mod_auth_digest.so
> 
>AllowOverride All
> 
>

> Step 4. Make a new directory named as /usr/local/apache/htdocs/secd,
> create .htaccess as belows:
> "
> AuthType Digest
> AuthName "Digest Test"
> AuthUserFile /usr/local/apache/passwd/digest_passwords
> Require valid-user

Since you're using file based authentication, you need to load the file
authenticator, by loading the module mod_authn_file.so. And since you're
authorising users, you need to load the user authorisation module
mod_authz_user.so

Joost


-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] setting up

2006-03-20 Thread Mark Feather

Are you sure that blades.gotdns.com is a valid address?

No ping, No FTP, No Ssh, No Webserver, No Nothing at either the 
blades.gotdns.com or 86.133.145.236!


Is the Router Firewalled or incorrectly configured?

Are your machines firewalled?

Shut down all firewalls and visit http://www.grc.com/x/ne.dll?rh1dkyd2 and 
scan all your Ports.  Are any of them open or blocked?


Has BT blocked your Servers Ports for you?   I believe your ISP is BT.


- Original Message - 
From: "Evan Platt" <[EMAIL PROTECTED]>

To: 
Sent: Monday, March 20, 2006 5:46 PM
Subject: Re: [EMAIL PROTECTED] setting up



On Mon, March 20, 2006 8:56 am, Jason Henderson wrote:

please can you try to access it for me the address is blades.gotdns.com

you should (he says hopefully) get a under construction picture

thank you in advance


No response. blades.gotdns.com resolves to 86.133.145.236. Doesn't answer
pings either.



-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]




-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] setting up

2006-03-20 Thread Evan Platt
On Mon, March 20, 2006 8:56 am, Jason Henderson wrote:
> please can you try to access it for me the address is blades.gotdns.com
>
> you should (he says hopefully) get a under construction picture
>
> thank you in advance

No response. blades.gotdns.com resolves to 86.133.145.236. Doesn't answer
pings either.



-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] [Digest Authentication Fail] Apache Http Server V2.2

2006-03-20 Thread Joshua Slive
On 3/20/06, Ouyang Lei <[EMAIL PROTECTED]> wrote:
>

> 
>AllowOverride All
> 
>
> Step 4. Make a new directory named as /usr/local/apache/htdocs/secd,
> create .htaccess as belows:

You can put the directives directly in the  section.  No
need for the .htaccess file.

> AuthType Digest
> AuthName "Digest Test"

> Step 5. Create digest_passwords file by "./htdigest
> /usr/local/apache/passwd/digest_passwords
> /usr/local/apache/htdocs/secd 123"

The "realm" specified using htdigest must match the AuthName, if I
remember correctly.

Joshua.

-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: [EMAIL PROTECTED] libexpat error during make

2006-03-20 Thread TAYLOR, TIM \(CONTRACTOR\)
I believe it has to do with symbolic links. It has been a couple of
years that I ran into this. It should be well documented "somewhere". 

I only faintly remember something about the build expecting absolute
paths. It, for some reason, could not traverse symlinks correctly and
most /home directories are symbolicly linked.

regards,
tt 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of
Sean Carey
Sent: Monday, March 20, 2006 12:03 PM
To: users@httpd.apache.org
Subject: Re: [EMAIL PROTECTED] libexpat error during make

I will try that. Though, I am wondering why that would cause it?

Thanks


Sean

On 3/20/06, TAYLOR, TIM (CONTRACTOR) <[EMAIL PROTECTED]> wrote:
> Sean,
>   I think you will find if you use a file system other than your /home

> to do your build the problem will go away. For example, expand your 
> source tree under /tmp and give it a try.
>
> regards,
> tt
>
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of 
> Sean Carey
> Sent: Monday, March 20, 2006 11:46 AM
> To: users@httpd.apache.org
> Subject: [EMAIL PROTECTED] libexpat error during make
>
> Hi
> I am still trying to find a solution for the following error. It is 
> occuring under solaris 8 with HTTPD 2.2.0 and 2.0.53. Any help would 
> be great.
>
> Sean
>
> ket -lnsl -lresolv -lpthread -ldl
> libtool: link: cannot find the library 
> `/home/sean/apache_compile/httpd-2.0.55/srclib/apr-util/xml/expat/lib/
> li
> bexpat.la'
> make[2]: *** [htpasswd] Error 1
> make[2]: Leaving directory
> `/home/sean/apache_compile/httpd-2.0.55/support'
> make[1]: *** [all-recursive] Error 1
> make[1]: Leaving directory
> `/home/sean/apache_compile/httpd-2.0.55/support'
> make: *** [all-recursive] Error 1
> > pwd
> /home/sean/apache_compile/httpd-2.0.55
> >
>
> >
>
> -
> The official User-To-User support forum of the Apache HTTP Server 
> Project.
> See http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: [EMAIL PROTECTED]
>"   from the digest: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
> -
> The official User-To-User support forum of the Apache HTTP Server
Project.
> See http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: [EMAIL PROTECTED]
>"   from the digest: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


--

Sean Carey
[EMAIL PROTECTED]

-
The official User-To-User support forum of the Apache HTTP Server
Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] libexpat error during make

2006-03-20 Thread Sean Carey
I will try that. Though, I am wondering why that would cause it?

Thanks


Sean

On 3/20/06, TAYLOR, TIM (CONTRACTOR) <[EMAIL PROTECTED]> wrote:
> Sean,
>   I think you will find if you use a file system other than your /home
> to do your build the problem will go away. For example, expand your
> source tree under /tmp and give it a try.
>
> regards,
> tt
>
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of
> Sean Carey
> Sent: Monday, March 20, 2006 11:46 AM
> To: users@httpd.apache.org
> Subject: [EMAIL PROTECTED] libexpat error during make
>
> Hi
> I am still trying to find a solution for the following error. It is
> occuring under solaris 8 with HTTPD 2.2.0 and 2.0.53. Any help would be
> great.
>
> Sean
>
> ket -lnsl -lresolv -lpthread -ldl
> libtool: link: cannot find the library
> `/home/sean/apache_compile/httpd-2.0.55/srclib/apr-util/xml/expat/lib/li
> bexpat.la'
> make[2]: *** [htpasswd] Error 1
> make[2]: Leaving directory
> `/home/sean/apache_compile/httpd-2.0.55/support'
> make[1]: *** [all-recursive] Error 1
> make[1]: Leaving directory
> `/home/sean/apache_compile/httpd-2.0.55/support'
> make: *** [all-recursive] Error 1
> > pwd
> /home/sean/apache_compile/httpd-2.0.55
> >
>
> >
>
> -
> The official User-To-User support forum of the Apache HTTP Server
> Project.
> See http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: [EMAIL PROTECTED]
>"   from the digest: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>
> -
> The official User-To-User support forum of the Apache HTTP Server Project.
> See http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: [EMAIL PROTECTED]
>"   from the digest: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


--

Sean Carey
[EMAIL PROTECTED]

-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED] Re: mod_rewrite doesn't always prefix with document_root

2006-03-20 Thread Jon Drukman

Jon Drukman wrote:
is there a way to substitute the documentroot variable instead of 
hardcoding it?  we have the same rewrite file used by many many 
virtualhosts, and being able to refer to just /misc/whatever and have it 
automatically map to the correct docroot would be extremely valuable.


i should have just RTFM... the answer is %{DOCUMENT_ROOT}

i'm all set now, thanks


-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: [EMAIL PROTECTED] libexpat error during make

2006-03-20 Thread TAYLOR, TIM \(CONTRACTOR\)
Sean,
  I think you will find if you use a file system other than your /home
to do your build the problem will go away. For example, expand your
source tree under /tmp and give it a try.

regards,
tt 

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of
Sean Carey
Sent: Monday, March 20, 2006 11:46 AM
To: users@httpd.apache.org
Subject: [EMAIL PROTECTED] libexpat error during make

Hi
I am still trying to find a solution for the following error. It is
occuring under solaris 8 with HTTPD 2.2.0 and 2.0.53. Any help would be
great.

Sean

ket -lnsl -lresolv -lpthread -ldl
libtool: link: cannot find the library
`/home/sean/apache_compile/httpd-2.0.55/srclib/apr-util/xml/expat/lib/li
bexpat.la'
make[2]: *** [htpasswd] Error 1
make[2]: Leaving directory
`/home/sean/apache_compile/httpd-2.0.55/support'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory
`/home/sean/apache_compile/httpd-2.0.55/support'
make: *** [all-recursive] Error 1
> pwd
/home/sean/apache_compile/httpd-2.0.55
>

>

-
The official User-To-User support forum of the Apache HTTP Server
Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] setting up

2006-03-20 Thread Jason Henderson

Evan Platt wrote:

At 02:36 AM 3/20/2006, you wrote:

hi all

i am very new to apache and am having trouble setting up my server.

i have got dyndns to provide the domain name and keep it updated to 
my system and have installed apache but am unable to get the web page 
to come up through the router as all i am getting is the routers main 
page not my index.html


any help would be gratefully appreciated


If you are on your LAN, you will get your routers setup page.

Outside of the LAN, people will (assuming you have port 80 forwarded 
to the appropriate machine) get your website.


To verify this, add a hosts entry:

192.168.X.X www.yourdomain.com

or, feel free to ask someone here to try it from outside the LAN.

The one problem with this obviously is I have 2 machines, and a number 
of different services / hosts on each machine - I cannot easily verify 
this because say www.mydomain.com:80 goes to machine 1 but 
www.mymachine.com:8080 goes to machine 2. From the inside of my 
network, www.mydomain.com on any port goes to machine 1, but from 
outside the LAN, it's fine.


please can you try to access it for me the address is blades.gotdns.com

you should (he says hopefully) get a under construction picture

thank you in advance


-
The official User-To-User support forum of the Apache HTTP Server 
Project.

See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]






-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED] Re: mod_rewrite doesn't always prefix with document_root

2006-03-20 Thread Jon Drukman

Robert Ionescu wrote:

Jon Drukman wrote:

Notice how in the good case it's doing "prefixed with document_root 
to..."  Why would it skip that in the first case?  Is it because I 
have a /misc directory on my filesystem?



Exactly, that's normal behavior in per-server context.


How do I get it to always look within the document_root first



Prefix your substitution with the DocumentRoot, so that it becomes a 
full physical path


rewriterule ^/e3/(.*) /var/httpd/sandbox/misc/e3/$1 [L]



is there a way to substitute the documentroot variable instead of 
hardcoding it?  we have the same rewrite file used by many many 
virtualhosts, and being able to refer to just /misc/whatever and have it 
automatically map to the correct docroot would be extremely valuable.


the idea that adding or removing top level directories could change the 
behavior of my rewriterules is disturbing...


-jsd-


-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED] libexpat error during make

2006-03-20 Thread Sean Carey
Hi
I am still trying to find a solution for the following error. It is
occuring under solaris 8 with HTTPD 2.2.0 and 2.0.53. Any help would
be great.

Sean

ket -lnsl -lresolv -lpthread -ldl
libtool: link: cannot find the library
`/home/sean/apache_compile/httpd-2.0.55/srclib/apr-util/xml/expat/lib/libexpat.la'
make[2]: *** [htpasswd] Error 1
make[2]: Leaving directory `/home/sean/apache_compile/httpd-2.0.55/support'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/sean/apache_compile/httpd-2.0.55/support'
make: *** [all-recursive] Error 1
> pwd
/home/sean/apache_compile/httpd-2.0.55
>

>

-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED] Re: mod_rewrite doesn't always prefix with document_root

2006-03-20 Thread Jon Drukman

Joshua Slive wrote:

On 3/17/06, Jon Drukman <[EMAIL PROTECTED]> wrote:


I've got the following rule in my config:

rewriterule ^/e3/(.*) /misc/e3/$1 [L]

It doesn't work.  If I change the "/misc" to "/test", it does.



Do you happen to have a /misc/e3 directory off your filesystem root? 
If so, mod_rewrite assumes you want that.


i have a /misc but no /misc/e3.  i can work around it using robert's 
suggestion.


-jsd-


-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED] SSL Handshake error handling

2006-03-20 Thread TAYLOR, TIM \(CONTRACTOR\)
Title: SSL Handshake error handling






Does anyone know if it is possible to put in a custom response for errors that occur during the handshake. Apparently, these are not HTTP errors that I can use the ErrorDocument directive with.

Specifically, I want to give a meaningful message to users who don't provide a valid X.509 certificate when SSLClientVerify require is set.

Any ideas?


regards,

tt

317-510-7346





Re: [EMAIL PROTECTED] setting up

2006-03-20 Thread Evan Platt

At 02:36 AM 3/20/2006, you wrote:

hi all

i am very new to apache and am having trouble setting up my server.

i have got dyndns to provide the domain name and keep it updated to 
my system and have installed apache but am unable to get the web 
page to come up through the router as all i am getting is the 
routers main page not my index.html


any help would be gratefully appreciated


If you are on your LAN, you will get your routers setup page.

Outside of the LAN, people will (assuming you have port 80 forwarded 
to the appropriate machine) get your website.


To verify this, add a hosts entry:

192.168.X.X www.yourdomain.com

or, feel free to ask someone here to try it from outside the LAN.

The one problem with this obviously is I have 2 machines, and a 
number of different services / hosts on each machine - I cannot 
easily verify this because say www.mydomain.com:80 goes to machine 1 
but www.mymachine.com:8080 goes to machine 2. From the inside of my 
network, www.mydomain.com on any port goes to machine 1, but from 
outside the LAN, it's fine. 



-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: [EMAIL PROTECTED] mod_proxy_balance sticky sessions without cookies?

2006-03-20 Thread Oliver.Schaudt

 
>[EMAIL PROTECTED] wrote:
>> Hi Sam,
>> 
>> i have had the same problem and i
>> resolve it for me with a source
>> change inside "mod_proxy_balancer.c"
>> 
>> In the function "get_path_param"
>> i made the stickyness parameter from
>> the apache config [JESSIONID] lowercase,
>> because here you will get everytime
>> the identifier as "jsessionid".
>> 
>> If is anybody out there which knows some
>> better and easier way, i am glad to know it. 
>> 
>> Greetings
>> 
>> Oliver
>
>Thanks Oliver,
>
>Your reply prompted me to look at the relevant code which is exactly 
>where I need to start I believe. Now I know that mod_proxy_balancer does 
>inspect the URL looking for a session id parameter which is the most 
>important thing.

>I still don't really understand why it isn't working. Are you saying 
>that mod_proxy_balancer sees only lowercase URL parameter names? So that 
>'SID' won't work but 'sid' will? Do you know why this is?
Yes this is the case [at least for me and i think by you too]

When i put in my apache config "JSESSIONID" than Cookies was working. But if 
there aren't any cookies allowed by the browser and the sessionn url rewriting 
will be made ";jsessionid=123456" that it failed.

When i put in my apache config "jsessionid" than the session url rewriting is 
working and will be sticky balanced, but than "JSESSIONID" will fail.
 
>If it is not too inconvenient,
No, it doesn't matter

>can you send your patch details so that I 
>can see exactly what change you made in mod_proxy_balancer.c?
Yes, i will send the lines tommorow. Today i am not at my workplace.

>Thanks for your help,
>- Sam
Greets

Oliver

-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


<>-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

RE: [EMAIL PROTECTED] RADIUS and Subversion config

2006-03-20 Thread David Heppenstall
Good morning gentlemen,

Thank you very much for both of those suggestions, I'll try them both in
succession asap.

 - Dave


> -Original Message-
> From: Neil A. Hillard [mailto:[EMAIL PROTECTED] 
> Sent: Monday, March 20, 2006 6:36 AM
> To: David Heppenstall; users@httpd.apache.org
> Subject: Re: [EMAIL PROTECTED] RADIUS and Subversion config
> 
> 
> Chaps,
> 
> Joe Orton wrote:
> > On Tue, Mar 07, 2006 at 10:45:58AM -0500, David Heppenstall wrote:
> >> I'm having some problems configuring Apache while serving 
> Subversion
> >> Repositories in conjunction with RADIUS authentication.
> > 
> > There is an age-old bug in mod_auth_radius which causes spurious 404
> > errors with pretty much any use of DAV in Apache:
> > 
> > http://mailman.lyra.org/pipermail/dav-dev/2001-January/001897.html
> > 
> > just find the section of code in mod_auth_radius where it returns
> > HTTP_NOT_FOUND and remove it.
> 
> Apologies for the lateness of this reply but you may also like to try 
> mod_auth_xradius: 
> http://www.outoforder.cc/projects/apache/mod_a> uth_xradius/
> 
> 
> HTH,
> 
> 
>   Neil.
> 
> 
> -- 
> Neil Hillard[EMAIL PROTECTED]
> Westland Helicopters Ltd.   http://www.whl.co.uk/
> 
> Disclaimer: This message does not necessarily reflect the
>  views of Westland Helicopters Ltd.
> 

-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED] Reverse proxy with response update (once again)

2006-03-20 Thread FRAS Eddy RD-TECH-REN
Title: Reverse proxy with response update



I re-post this question, I'm sure someone will be able to 
tell me at least if it's feasible or not.
I'd like to use httpd as a reverse proxy and modify 
the response sent by the remote server with an XSL treatment (via a servlet for 
example).
Is mod-proxy or mod_rewrite able to do that 
?
 
Thanks a lot,
 
Eddy
 

  
  
  De : FRAS Eddy RD-TECH 
  [mailto:[EMAIL PROTECTED] Envoyé : mardi 14 mars 
  2006 14:18À : users@httpd.apache.orgObjet : 
  [EMAIL PROTECTED] Reverse proxy with response update
  
  Hi all, 
  I'm trying to have a special architecture I'm 
  managing with my own java application for now. The current flow is : 1. Send a 
  request to a reverse proxy server (java servlet on tomcat), for example : 
  http://myreverseproxy/GO_TO_www.anotherserver.com/a_page.xml
  2. The servlet fetches content from the remote 
  host, here www.anotherserver.com/a_page.xml 3. When the servlet receives the page, it applies an XSL on the page 
  and send the result to the client. 
  The flow I would like to have is the same but with 
  Apache having the role of the reverse proxy server and remove the reverse 
  proxy stuff from my java application.
  With mod_proxy and mod_rewrite, I was able to have 
  the content fetch from a server I specify in the URL but I really don't know 
  if it's possible to pass the content fetched from a remote host to my java app 
  for XSL treatment.
  I had a look to mod_proxy_ajp but it seems to only 
  allow redirecting the request to tomcat, not the response. Is my idea unfeasible with Apache ? 
  Eddy Fras France Télécom R&D TECH/IRIS Ingénieur d'études 4 rue du Clos 
  Courtel - BP 91226 35 512 Cesson-Sévigné 
  CEDEX e-mail : 
  [EMAIL PROTECTED] Téléphone : 
  (33) 2 99 12 46 77 Télécopie  : (33) 2 
  99 12 40 98 http://www.francetelecom.com/rd 
  


Re: [EMAIL PROTECTED] setting up

2006-03-20 Thread Krist van Besien
On 3/20/06, Jason Henderson <[EMAIL PROTECTED]> wrote:
> hi all
>
> i am very new to apache and am having trouble setting up my server.
>
> i have got dyndns to provide the domain name and keep it updated to my
> system and have installed apache but am unable to get the web page to
> come up through the router as all i am getting is the routers main page
> not my index.html

This looks like a router issue, not an apache issue. What is
apparently happening is that your router is answering requests to port
80, where what you probably want your router to do is to forward port
80 to whichever machine your webserver is on.
How to do this depends on your router. Be carefull that you don't lock
yourself out of your router though.

Krist


--
[EMAIL PROTECTED]
Solothurn, Switzerland

-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] virtual server problems

2006-03-20 Thread Krist van Besien
On 3/20/06, RYAN M. vAN GINNEKEN <[EMAIL PROTECTED]> wrote:
> Hello all everthing was working fine until i reset my fedora box today not 
> sure what happened but apache is a bit broken now.  The only content that 
> comes up are for www.computerking.ca site. ie if i point browser at 
> www.computerking.ca everthing works fine.  If i point my browser at 
> blazebartending.com i still get the www.computerking.ca content. I know the 
> default behavior for apache is to use the first vhost listed if it cannot 
> find an apporpatly named site.  But why is it doing this to me?
>
> [EMAIL PROTECTED] conf.v]# /usr/sbin/apachectl -S
> VirtualHost configuration:
> wildcard NameVirtualHosts and _default_ servers:
> *:*www.computerking.ca 
> (/etc/httpd/conf.v/computerking.ca:4)
> *:80   is a NameVirtualHost
>  default server mail.computerking.ca 
> (/etc/httpd/conf.v/computerking.ca:19)
>  port 80 namevhost mail.computerking.ca 
> (/etc/httpd/conf.v/computerking.ca:19)

snip...

I suspect you have somewhere in /etc/httpd/conf.v/computerking.ca
something like this:



ServerName www.computerking.ca
...


What hapens if you change that to
 ?

Krist

--
[EMAIL PROTECTED]
Solothurn, Switzerland

-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] RADIUS and Subversion config

2006-03-20 Thread Neil A. Hillard

Chaps,

Joe Orton wrote:

On Tue, Mar 07, 2006 at 10:45:58AM -0500, David Heppenstall wrote:
I'm having some problems configuring Apache while serving Subversion 
Repositories in conjunction with RADIUS authentication.


There is an age-old bug in mod_auth_radius which causes spurious 404 
errors with pretty much any use of DAV in Apache:


http://mailman.lyra.org/pipermail/dav-dev/2001-January/001897.html

just find the section of code in mod_auth_radius where it returns 
HTTP_NOT_FOUND and remove it.


Apologies for the lateness of this reply but you may also like to try 
mod_auth_xradius: http://www.outoforder.cc/projects/apache/mod_auth_xradius/


HTH,


Neil.

--
Neil Hillard[EMAIL PROTECTED]
Westland Helicopters Ltd.   http://www.whl.co.uk/

Disclaimer: This message does not necessarily reflect the
views of Westland Helicopters Ltd.

-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED] Re: Svn transaction failure due to wrong permissions on creation.

2006-03-20 Thread Manuel Vacelet
2006/1/19, John Duprey <[EMAIL PROTECTED]>:
> A number of you have asked if I ever resolved the subversion
> permission problem as I reported it here:
> http://svn.haxx.se/dev/archive-2005-09/0277.shtml
>
> After trying several versions of Apache and Subversion (from both RPM
> and source), I resorted to a complete OS upgrade.  Our admin upgraded
> from RHEL3 to RHEL4, updated the server's bios, and I reinstalled
> subversion and Apache from stock RHEL4 RPMS.  Now everything works
> fine.
>
> After many many many months of trying to figure out what was wrong,
> this shot in the dark appears to have fixed things.  Our subversion
> repository has been stable since we did this.
>
> I wish I could have identified the problem.  I wasn't the only person
> with the problem ( several people contacted me with the exact same
> problem wondering if I had fixed it ).  The problem did seem specific
> to a version of Linux and one guy was using Solaris, I believe.

Hello all,

I answer to this old mail because I was facing the same bug and I
found what was wrong.

Actually, in my case, this is neither a subversion nor an apache bug
but a php one. A php script was setting an umask without execution
rights (0111) and due to this bug, the apache process kept this umask
and when a subversion commit request tried to create a directory it
was unusable (0111 umask -> no execution rights on created files).

This problem was solved by adding a  script in
auto_append_file directive of php.ini.

It seems that this bug will be fixed in next php5.1 release:
http://bugs.php.net/bug.php?id=36630

I hope this message could help someone thanks to mailing list archives!
-- Manuel

-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED] setting up

2006-03-20 Thread Jason Henderson

hi all

i am very new to apache and am having trouble setting up my server.

i have got dyndns to provide the domain name and keep it updated to my 
system and have installed apache but am unable to get the web page to 
come up through the router as all i am getting is the routers main page 
not my index.html


any help would be gratefully appreciated

-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
  "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] message for site

2006-03-20 Thread Muhammad Rizwan

>> You mean messages like "this site banned for spamming"?
Yes, i mean same.

>>Why not just point its documentroot at your custom message?

Yes, not a bad idea... But is there any other choice available.

Thanks


On Mon, 2006-03-20 at 10:26, Nick Kew wrote:
> On Monday 20 March 2006 15:10, Muhammad Rizwan wrote:
> > Hello
> >
> > I want to know, how i can give message for a site hosted on my web
> > server. Say i want to give certain message on just 1-2 sites sites
> > hosted on my web server. When the request for this site 'll be received
> > by server, it should give the message as settled by me, rather then the
> > index page of site.
> 
> You mean messages like "this site banned for spamming"?
> 
> Why not just point its documentroot at your custom message?


-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] message for site

2006-03-20 Thread Nick Kew
On Monday 20 March 2006 15:10, Muhammad Rizwan wrote:
> Hello
>
> I want to know, how i can give message for a site hosted on my web
> server. Say i want to give certain message on just 1-2 sites sites
> hosted on my web server. When the request for this site 'll be received
> by server, it should give the message as settled by me, rather then the
> index page of site.

You mean messages like "this site banned for spamming"?

Why not just point its documentroot at your custom message?

-- 
Nick Kew

-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED] virtual server problems

2006-03-20 Thread RYAN M. vAN GINNEKEN
Hello all everthing was working fine until i reset my fedora box today not sure 
what happened but apache is a bit broken now.  The only content that comes up 
are for www.computerking.ca site. ie if i point browser at www.computerking.ca 
everthing works fine.  If i point my browser at blazebartending.com i still get 
the www.computerking.ca content. I know the default behavior for apache is to 
use the first vhost listed if it cannot find an apporpatly named site.  But why 
is it doing this to me?
  
[EMAIL PROTECTED] conf.v]# /usr/sbin/apachectl -S
VirtualHost configuration:
wildcard NameVirtualHosts and _default_ servers:
*:*www.computerking.ca (/etc/httpd/conf.v/computerking.ca:4)
*:80   is a NameVirtualHost
 default server mail.computerking.ca 
(/etc/httpd/conf.v/computerking.ca:19)
 port 80 namevhost mail.computerking.ca 
(/etc/httpd/conf.v/computerking.ca:19)
 port 80 namevhost default.computerking.ca 
(/etc/httpd/conf.v/computerking.ca:29)
 port 80 namevhost old.computerking.ca 
(/etc/httpd/conf.v/computerking.ca:43)
 port 80 namevhost v2.computerking.ca 
(/etc/httpd/conf.v/computerking.ca:57)
 port 80 namevhost test.computerking.ca 
(/etc/httpd/conf.v/computerking.ca:71)
 port 80 namevhost blazebartending.com 
(/etc/httpd/conf.v/blazebartending.com:3)
 port 80 namevhost mail.blazebartending.com 
(/etc/httpd/conf.v/blazebartending.com:20)
 port 80 namevhost logs.blazebartending.com 
(/etc/httpd/conf.v/blazebartending.com:30)
 port 80 namevhost www.canmail.org (/etc/httpd/conf.v/canmail.org:5)
 port 80 namevhost creativehangups.com 
(/etc/httpd/conf.v/creativehangups.com:3)
 port 80 namevhost mail.creativehangups.com 
(/etc/httpd/conf.v/creativehangups.com:20)
 port 80 namevhost graemehill.com (/etc/httpd/conf.v/graemehill.com:5)
 port 80 namevhost mail.graemehill.com 
(/etc/httpd/conf.v/graemehill.com:23)
 port 80 namevhost redwingshoes.ca (/etc/httpd/conf.v/redwingshoes.ca:3)
 port 80 namevhost mail.redwingshoes.ca 
(/etc/httpd/conf.v/redwingshoes.ca:20)
 port 80 namevhost shoemasters.com (/etc/httpd/conf.v/shoemasters.com:3)
 port 80 namevhost mail.shoemasters.com 
(/etc/httpd/conf.v/shoemasters.com:21)
 port 80 namevhost logs.shoemasters.com 
(/etc/httpd/conf.v/shoemasters.com:32)
 port 80 namevhost ybotstudios.com (/etc/httpd/conf.v/ybotstudios.com:3)
 port 80 namevhost mail.ybotstudios.com 
(/etc/httpd/conf.v/ybotstudios.com:20)
Syntax OK


-- 
Computer King/CaNMail

http://www.computerking.ca http://www.canmail.org

Sales, Service, and Hosting
Email, Data, and Web Packages
Ask about web design specials

Affiliates
http://www.computerking.ca/pages/links/affiliates/affiliates.htm

Maybe Computer Science should be in the College of Theology. -- R. S. Barton 


-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED] message for site

2006-03-20 Thread Muhammad Rizwan
Hello

I want to know, how i can give message for a site hosted on my web
server. Say i want to give certain message on just 1-2 sites sites
hosted on my web server. When the request for this site 'll be received
by server, it should give the message as settled by me, rather then the
index page of site.

Thanks in Advance!!!



-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] FW: Apache 2.2 & AddDefaultCharset Problem

2006-03-20 Thread Nick Kew
On Monday 20 March 2006 03:37, Kaan Yamanyar wrote:
> I restarted apache in my all attempts.
> But what other directive can override this.

Apart from the obvious, like AddCharset?

The reason I was unspecific is that it could easily be your
own extension - some module, or some CGI or PHP script
I've never heard of.  Whatever you're running.


-- 
Nick Kew

-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] mod_rewrite question

2006-03-20 Thread Krist van Besien
On 3/12/06, Paul Aviles <[EMAIL PROTECTED]> wrote:
> I am pulling my hair out with this. I have a single public IP and already
> have a web server redirected on the firewall from the external IP to the
> private IP of 10.5.36.5. Now I need to enable another box (10.5.36.6)
> running on port 80 to be accessible from the outside.
>
> I can open port 81 on the fw and send it to the same 10.5.36.5, but can
> apache handle redirecting the outside request from port 81 to a separate
> internal ip 10.5.36.6 on port 80 and then send the requests back properly to
> the public browsers?
>
> If so guys please give me a hand with this as I cannot make heads or tails
> with this and already tried for 2 days with no luck.

You need to do the following:

Add a "Listen 0.0.0.0:81"
to the apache config on your first box, so the daemon listens to port 81.

Configure a virtual host on this port that proxies everything:

ProxyPass / http://10.5.36.6/
ProxyPassReverse / http://10.5.36.6/


(Disclaimer: This is from memory, I have not actually tested this)

Krist

--
[EMAIL PROTECTED]
Solothurn, Switzerland

-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED] Spot Groups

2006-03-20 Thread Johnno
Hello All,

I am tring to get a Spot Group to Play 3 Times per hour.. 

I can only get it to play 2 Times per hour..

Does anyone have any ideas how to fix this...

Many Thanks,

Johnno

-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] Diff b/w httpd and tomcat

2006-03-20 Thread Krist van Besien
On 3/18/06, Khawar Wahab <[EMAIL PROTECTED]> wrote:
> Need some help. I want to run a web-server on my home network and
> experiment with different web technologies. I'm confused whether
> Apache httpd is the server or tomcat is? I have hosted a JSP based
> site using tomcat.
> If tomcat is a web-server, why httpd?
> if both are servers what's the diff? which is better? help!!!

Tomcat is a Java Application server, that can also serve as a web
server. The webserver functionality in Tomcat is not as full featured
as offered by apache.

There is nothing to stop you to host the static part of you website in
Tomca. However I would not do this in a production environment for
several reasons:
- Security is better. Running an apache on port 80 as un unpriviliged
user is a lot easier than doing the same with Tomcat.
- Apache performs way better when serving static content.

A usual setup is to have apache as the "front end" web server, runnign
on port 80 and hosting static content, forwarding URLs for dynamic
content to the Tomcat server. Have a look on the Tomcat site on how to
do this.

Krist

--
[EMAIL PROTECTED]
Solothurn, Switzerland

-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] trouble moving my SSL to a new machine

2006-03-20 Thread Krist van Besien
On 3/17/06, Randy Paries <[EMAIL PROTECTED]> wrote:
> Hello,
> i have just built a new linux box.
>
> The original box was a rh9 and 2.0.49
>
> i have build the new box with fedora 4 and Apache/2.0.54
>
> the one difference is the rh9 build was a build from src apache and
> the fedora i just took the installed one that came with fedora (rpm)
>
> so my problem is probably simple, i must be missing just one thing.
>
> I moved the crts over to the new machine (same domain name)
>
> i added the line Include conf/ssl.conf
>
> but when i add this it says there is already an _default_ 443 running
>
> i looked throught httpd.conf and there is no mention  443 or ssl
> anywhere in this file

Dit you look for "Include" statements? It might be in another file.
Run "httpd -S" to find out which virtual hosts are configured, and
from which files.

Krist



--
[EMAIL PROTECTED]
Solothurn, Switzerland

-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED] Apache2 & mod_xslt trouble.

2006-03-20 Thread Sander Smeenk
Hello everyone.

I'm running Apache 2.0.55, prefork mpm and mod_xslt 2004112100 on Debian
servers. From time to time it seems that the daily cronjob's 'apache2ctl
reload' causes Apache to 'forget' to load mod-xslt causing these
warnings for each xml/xsl related request:

| [error] an unknown filter was not added: mod-xslt

Doing a 'hard restart', eg, apache2ctl stop and apache2ctl start fixes it.
Any clue what might cause this?

The other thing is, i see Apache's segfault quite often while processing
xsl/xml, so i have my doubts about the 'cleanlyness' of the mod_xslt
code. Are there any other xml/xsl transformers that work like mod_xslt
but /are/ stable?

I'd be happy to hear from you all!

Kind regards,
Sander Smeenk.
-- 
|  In a perfect world... spammers would get caught, go to jail, and
| share a cell with many men who have enlarged their penisses, taken
| Viagra and are looking for a new relationship.
| 1024D/08CEC94D - 34B3 3314 B146 E13C 70C8  9BDB D463 7E41 08CE C94D

-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] CSS applied in IE but not in Netscape and Firefox

2006-03-20 Thread Krist van Besien
On 3/19/06, Nanu Kalmanovitz <[EMAIL PROTECTED]> wrote:
>
>
> Hi!
>
> Server system SBS (Novell Small Business suite) 6.5 sp 1 with Apache 2.0.48,
> MySQL ver. 4.0.15a, PHP 4.2.3, all of them on same machine.
>
> I found on other forum the link
> http://developer.mozilla.org/en/docs/Incorrect_MIME_Type_for_CSS_Files
> that may be the solution for  a web site that works perfectly in IE, but in
> Netscape and Firefox (the style sheet is not applied to the html file).
>
> The solution is for says to add the "AddType text/css .css" line to the
> ".htaccess" file.
>
> It is the right solution?
>
> I found the ".htaccess" file under the
> sys:\tomcat\4\webapps\nps\portal.

There are several sollutions to to problem. You can add this "AddType"
statement in your httpd.conf, or in  a .htaccess file. In this last
case it has to be a .htaccess file that is read when this css file is
requested, so it needs to be in the directory where the css is, or
maybe one of its parent directories.

Krist

--
[EMAIL PROTECTED]
Solothurn, Switzerland

-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: [EMAIL PROTECTED] self-signed SSL cert problems with httpd-2.0.55 and openssl-0.9.7i

2006-03-20 Thread Victor Trac
DB_ENDIAN::-D_REENTRANT:MACOSX::BN_LLONG RC4_CHAR RC4_CHUNK ->
DL_ENDIAN::-D_REENTRANT:MACOSX::BN_LLONG RC4_CHAR RC4_CHUNK

DB changed to DL.

-Victor

On 3/20/06, Boyle Owen <[EMAIL PROTECTED]> wrote:
> > -Original Message-
> > From: Mark Slater [mailto:[EMAIL PROTECTED]
> > >
> > The original line is:
> >
> > "darwin-i386-cc","cc:-O3 -fomit-frame-pointer -fno-common -
> > DB_ENDIAN::-D_REENTRANT:MACOSX::BN_LLONG RC4_CHAR RC4_CHUNK
> > DES_UNROLL BF_PTR:::darwin-shared:-fPIC::.\$(SHLIB_MAJOR).\$
> > (SHLIB_MINOR).dylib",
> >
> > If it is changed to this, things should work:
> >
> > "darwin-i386-cc","cc:-O3 -fomit-frame-pointer -fno-common -
> > DL_ENDIAN::-D_REENTRANT:MACOSX::BN_LLONG RC4_CHAR RC4_CHUNK
> > DES_UNROLL BF_PTR:::darwin-shared:-fPIC::.\$(SHLIB_MAJOR).\$
> > (SHLIB_MINOR).dylib",
> >
>
> Er without doing a machine compare, they look pretty similar to me...
>
> [If I've missed a very subtle difference, so might others... could you 
> highlight it?]
>
> Rgds,
> Owen Boyle
> Disclaimer: Any disclaimer attached to this message may be ignored.
>
> Diese E-mail ist eine private und persönliche Kommunikation. Sie hat keinen 
> Bezug zur Börsen- bzw. Geschäftstätigkeit der SWX Gruppe. This e-mail is of a 
> private and personal nature. It is not related to the exchange or business 
> activities of the SWX Group. Le présent e-mail est un message privé et 
> personnel, sans rapport avec l'activité boursière du Groupe SWX.
>
>
> This message is for the named person's use only. It may contain confidential, 
> proprietary or legally privileged information. No confidentiality or 
> privilege is waived or lost by any mistransmission. If you receive this 
> message in error, please notify the sender urgently and then immediately 
> delete the message and any copies of it from your system. Please also 
> immediately destroy any hardcopies of the message. You must not, directly or 
> indirectly, use, disclose, distribute, print, or copy any part of this 
> message if you are not the intended recipient. The sender's company reserves 
> the right to monitor all e-mail communications through their networks. Any 
> views expressed in this message are those of the individual sender, except 
> where the message states otherwise and the sender is authorised to state them 
> to be the views of the sender's company.
>
> -
> The official User-To-User support forum of the Apache HTTP Server Project.
> See http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: [EMAIL PROTECTED]
>"   from the digest: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


--
http://www.victortrac.com

-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



[EMAIL PROTECTED] [Digest Authentication Fail] Apache Http Server V2.2

2006-03-20 Thread Ouyang Lei




Hi,
 
I 
try to configure "digest authentication" function with both Apache Http 
Server 2.2(and 2.0.55), all failed. Could anybody have such 
experience and let me know the reason.
 
Step 
1. Download and install Apache HTTP Server 2.2 version
Step 
2. Compile mod_auth_digest.so, by input  "/usr/local/apache/bin/apxs -i -a -c 
mod_auth_digest.c"
Step 
3. Then update httpd.conf as following
LoadModule auth_digest_module 
modules/mod_auth_digest.so   AllowOverride 
All
 
Step 
4. Make a new directory named as /usr/local/apache/htdocs/secd, 

create .htaccess as belows:
"
AuthType DigestAuthName "Digest 
Test"AuthUserFile 
/usr/local/apache/passwd/digest_passwordsRequire 
valid-user
"
Step 
5. Create digest_passwords file by "./htdigest /usr/local/apache/passwd/digest_passwords 
/usr/local/apache/htdocs/secd 123"
 
Last, I use IE6.0/Firefox1.5.0.1 to access 
"http://my_http_server/secd", then it popup 
a dialog to let me input username and password. But the 
problem is here, even I carefully input the correct 
username and password, it continue to popup the dialog, until 
three times fail.
 
The 
error_log shows:[Tue Mar 14 03:54:33 2006] [error] [client 172.21.41.5] 
Digest: user `123' in realm `/usr/local/apache/passwd/digest_passwords' not 
found: /secd/
 
Does 
anybody know what's wrong I am?
 
 
Thanks in advance!
 
Regards
Ouyang
 


Re: [EMAIL PROTECTED] FW: Apache 2.2 & AddDefaultCharset Problem

2006-03-20 Thread Odhiambo Washington
* On 20/03/06 09:37 +0600, Kaan Yamanyar wrote:
| I restarted apache in my all attempts.
| But what other directive can override this.
| 
| In my confs folder and other folder that contains conf to be included
| following command does not prints out anything excepty my addition
| "AddDefaultCharset Off" 
| 
| cat ./* | grep AddDefaultCharset
| 
| It there any other setting that may override this?

Try to find in the DocumentRoot of the affected virtual hosts something
that could be overriding:


find /path/to/directory -type f -exec grep -li 'AddDefaultCharset' {} \;


-Wash

http://www.netmeister.org/news/learn2quote.html

DISCLAIMER: See http://www.wananchi.com/bms/terms.php

--
+==+
|\  _,,,---,,_ | Odhiambo Washington<[EMAIL PROTECTED]>
Zzz /,`.-'`'-.  ;-;;,_ | Wananchi Online Ltd.   www.wananchi.com
   |,4-  ) )-,_. ,\ (  `'-'| Tel: +254 20 313985-9  +254 20 313922
  '---''(_/--'  `-'\_) | GSM: +254 722 743223   +254 733 744121
+==+

Disco is to music what Etch-A-Sketch is to art.

-
The official User-To-User support forum of the Apache HTTP Server Project.
See http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]