[EMAIL PROTECTED] modify columns widht on directory listing

2007-08-09 Thread Karol Krenski
Hi list,

Could I specify the width of
Name / Last modified / Size / Description
columns on directory listing? I have got long Names and need to have
them readable.

thanks in advance and regards,
Karol

-
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] Is it possible to view the current apache configuration

2007-08-09 Thread Tony Stevenson

Puthick Hok wrote:

Hi,

I've just removed some important apache virtual host configuration on
my local workstation during a server reconfiguration routine. I
intended to remove *~, but removed * instead. Now everything under
vhosts.d is gone.


What version of Apache is this?



The configuration contains mod_perl settings which I want to recover
some parts of it. The httpd is still running and has not been
restarted or reloaded yet.

So, my question: is it possible to see the current working apache
configuration that is in memory? I am using ext3 filesystem. Restoring
deleted files from this system seems to be more time consuming than
reconfiguring mod_perl from scratch.


If you have a recent version of Apache, and have Server-Status enabled 
in extended mode, you might be able to get at least some of your config 
back.





I will remember to backup everything including my personal workstation.

Thanks,
Puthick

-
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]





smime.p7s
Description: S/MIME Cryptographic Signature


Re: [EMAIL PROTECTED] modify columns widht on directory listing

2007-08-09 Thread Tony Stevenson

Karol Krenski wrote:

Hi list,

Could I specify the width of
Name / Last modified / Size / Description
columns on directory listing? I have got long Names and need to have
them readable.



You could use

IndexOptions FancyIndexing DescriptionWidth=* HTMLTable NameWidth=*



Tony



smime.p7s
Description: S/MIME Cryptographic Signature


Re: [EMAIL PROTECTED] modify columns widht on directory listing

2007-08-09 Thread Karol Krenski
On Thu, Aug 09, 2007 at 09:33:32AM +0100, Tony Stevenson wrote:
> Karol Krenski wrote:
> >Hi list,
> >
> >Could I specify the width of
> >Name / Last modified / Size / Description
> >columns on directory listing? I have got long Names and need to have
> >them readable.
> >
> 
> You could use
> 
> IndexOptions FancyIndexing DescriptionWidth=* HTMLTable NameWidth=*
Geez, that was a fast, usable anwer!

Thanks Tony,
Karol

-
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] modify columns widht on directory listing

2007-08-09 Thread Tony Stevenson

Karol Krenski wrote:

On Thu, Aug 09, 2007 at 09:33:32AM +0100, Tony Stevenson wrote:

Karol Krenski wrote:

Hi list,

Could I specify the width of
Name / Last modified / Size / Description
columns on directory listing? I have got long Names and need to have
them readable.


You could use

IndexOptions FancyIndexing DescriptionWidth=* HTMLTable NameWidth=*

Geez, that was a fast, usable anwer!



Well I aim to please!  :-)




smime.p7s
Description: S/MIME Cryptographic Signature


[EMAIL PROTECTED] What the commands means?

2007-08-09 Thread Nanu Kalmanovitz
Hi!

In the  HTTPD.CONF (Apache2) I find the following commands in the
"VirtualHost" block:


BrowserMatch "MSIE" nokeepalive downgrade-1.0 force-response-1.0
Include "SYS:/qfsearch/WEB-INF/QFRewrite.conf"


I searched the documentation, but didn't find any explanation.

Please help.

TIA

Nanu

-
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 1.3 and Apache 2 on one server

2007-08-09 Thread veejar
Hello,

I have many web-projects, many of witch work only with Apache 1.3. Now
we have new projects and want to develelop them on Apache 2.
I have installed Apache2 as main web-server (on port 80) and Apache
1.3 as secondary (on port 8000).

I need some virtual hosts run on Apache 2, and some - on Apache 1.3.
I use mod_proxy under Apache 2 to forward requests for some virtual
hosts to Apache 1.3.


ServerName  myproj.mydomain.com
ServerAlias   myproj

ProxyRequests Off
ProxyPreserveHost On
ProxyPass /  http://127.0.0.1:8000/



All is OK. But I have only such problem:
When I see access_log of Apache 1.3 for my project, I see requests
from 127.0.0.1. I don't see realy Client-IP. It's bad for my
web-project promotion and visitors analysis.

Is it possible to make tunneling from Apache 2 to Apache 1.3 for some
virtual hosts?

-
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 1.3 and Apache 2 on one server

2007-08-09 Thread Tony Stevenson

veejar wrote:

Hello,

I have many web-projects, many of witch work only with Apache 1.3. Now
we have new projects and want to develelop them on Apache 2.
I have installed Apache2 as main web-server (on port 80) and Apache
1.3 as secondary (on port 8000).

I need some virtual hosts run on Apache 2, and some - on Apache 1.3.
I use mod_proxy under Apache 2 to forward requests for some virtual
hosts to Apache 1.3.


ServerName  myproj.mydomain.com
ServerAlias   myproj

ProxyRequests Off
ProxyPreserveHost On
ProxyPass /  http://127.0.0.1:8000/



All is OK. But I have only such problem:
When I see access_log of Apache 1.3 for my project, I see requests
from 127.0.0.1. I don't see realy Client-IP. It's bad for my
web-project promotion and visitors analysis.


This is the expected behaviour, this is because you are connecting to 
your 1.3 server via from your Apache2 instance.  All the log entries 
will be recorded in the AccessLog on your Apache2 server.


Is it possible to make tunneling from Apache 2 to Apache 1.3 for some
virtual hosts?

Tunneling? If you mean selective let some virtualhosts to your 1.3 
server on port 80, and at the same time some on your Apache instance, 
also on port 80. Then the answer is no.  Unless you add an additional IP 
address to the server, then make 1.3 listen to one IP address, and 
Apache2 on the other.




Tony




smime.p7s
Description: S/MIME Cryptographic Signature


[EMAIL PROTECTED] URL Redirect

2007-08-09 Thread Rajendra Rait

 Hi,

I have Apache 2.2 and i am trying to implement apache redirect request 
to a JBoss server. Now wht's happening is that whenever some hits 
www.#*$!#*$!.com it very well gets redirected to the desired 
http://aaa.aaa.aaa.aaa:8080/website/home/home.jsp, 
 
but the thing is the whole 
http://aaa.aaa.aaa.aaa:8080/website/home/home.jsp 
 
link is displayed instead of the URL www.#*$!#*$!.com


Is it possible to hide the whole IP and the contents and just display 
www.#*$!#*$!.com, while the user browses the site, here is my Virtual 
host directive.



ServerAdmin [EMAIL PROTECTED]
DocumentRoot "/var/www/html"
Options Indexes FollowSymLinks
ServerName www.#*$!#*$!.com
ErrorLog logs/#*$!#*$!.com-error_log
Redirect / http://aaa.aaa.aaa.aaa:8080/website/home/home.jsp 
 




Please let me something on how to achieve this.

Thanks.

Rajendra.

begin:vcard
fn:Rajendra Rait
n:Rait;Rajendra
org:Ambrosia Infotech Ltd;Information Technology
adr:Andheri(East);;D-3136/39, Oberoi Garden Estates, Chandivalli,;Mumbai;Maharashtra;400072;India
email;internet:[EMAIL PROTECTED]
title:Senior Systems Administrator
tel;work:91 22 67170727
tel;fax:91 22 66924319
tel;home:91 22 25810427
tel;cell:91 9819330803
x-mozilla-html:TRUE
url:http://www.ambrosiainfotech.com
version:2.1
end:vcard


-
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: CGI works, but client denied error messages in error.log

2007-08-09 Thread Georg Sauthoff
On 2007-08-08, Georg Sauthoff <[EMAIL PROTECTED]> wrote:
> On 2007-08-08, Vincent Bray <[EMAIL PROTECTED]> wrote:
>> Some debugging tips:

>> http://wiki.apache.org/httpd/WatchingHttpHeaders

handy command lines - with those you don't have to worry about browser
caches/proxy configurations any more.

>> http://wiki.apache.org/httpd/ClientDeniedByServerConfiguration

Hm, this texts describes the 'normal' reason for this error message - in
the case I observe, no access is denied, and the stated url /var/www/bar
was not requested at all.

Best regards
Georg Sauthoff


-
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] Can you help me find the options directive, please?

2007-08-09 Thread Mar Pearly


Hello to all,

Well I'm a newbie here and as you can easily understand I don't know a lot and 
I don't know how to find everything the FAQ's say..

I read the Security Tips and I was in the section of Server Side Includes and 
what to do .I want to find the Options directive  but I don't know where to 
locate it...Can you help me please?


This is the part of the security tips  I read and want to fix


--#include virtual="..." --> to execute CGI scripts if these scripts are in 
directories desginated by a ScriptAlias directive.   >>


Thanks a lot in advance
_
Express yourself instantly with MSN Messenger! Download today it's FREE!
http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/
-
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] Can you help me find the options directive, please?

2007-08-09 Thread Mar Pearly

Hello to all,
 
Well I'm a newbie here and as you can easily understand I don't know a lot and 
I don't know how to find everything the FAQ's say..
 
I read the Security Tips and I was in the section of Server Side Includes and 
what to do .I want to find the Options directive  but I don't know where to 
locate it...Can you help me please?
 
 
This is the part of the security tips  I read and want to fix
 
 
-Another solution is to disable the ability to run scripts and programs 
from SSI pages. To do this replace Includes  with IncludesNOEXEC in the Options 
directive. Note that users may still use <--#include virtual="..." --> to 
execute CGI scripts if these scripts are in directories desginated by a 
ScriptAlias directive. >>
 
 
Thanks a lot in advance
_
Play free games, earn tickets, get cool prizes! Join Live Search Club. 
http://club.live.com/home.aspx?icid=CLUB_wlmailtextlink
-
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] Cronolog for Windows?

2007-08-09 Thread \"Crash\" Dummy
Since I cannot get rotatelogs to work with ErrorLog (I can't even start Apache),
I thought I'd try Cronolog. Unfortunately, it is only available as source code,
intended for use with *nix systems. So I need either a Windows compatible
executable of Cronolog, or an equivalent program, or a solution to my rotatelogs
problem.

I can use rotatelog with my access log(s), but not my error log:

This works:
CustomLog "|L:/apache/bin/rotatelogs -l logs/local 86400" local env=locallog

This doesn't. In fact, I can't even start Apache, and since there is no error
log, I don't know why:
ErrorLog "|L:/apache/bin/rotatelogs -l logs/errorlog 86400"
-- 
Crash, running Windows 2000 Pro - Apache 2.2.4 - PHP 5.2.1 - PERL 5.8.8

Reply to group only. E-mail is blocked.





-
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] Where can i find the server configuration file and where should i add the needed code block?

2007-08-09 Thread Mar Pearly

 Hello again,
Do you know where I can find the User directive and the Server configuration 
file?

Furthermore where i should write the code block that the security tips tell me 
-as far as the server configuration file is concerned?


These are the pieces from the Security tips , I want to perform



<<<
AllowOverride None


This prevents the use of .htaccess files in all directories apart from those 
specifically enabled.


PROTECT SERVER FILES IN DEFAULT


To work around this, add the following block to your server's configuration:


Order Deny,Allow
Deny from all


This will forbid default access to filesystem locations. Add appropriate 
Directory blocks to allow access only in those areas you wish. For example,


Order Deny,Allow
Allow from all


Order Deny,Allow
Allow from all
 >>




thanks a lot in advance
_
Express yourself instantly with MSN Messenger! Download today it's FREE!
http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/
-
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] ReWrite Rule

2007-08-09 Thread Vincent Bray
On 09/08/07, Lalit Kapoor <[EMAIL PROTECTED]> wrote:
> Hello,
>
> I am new to apache community.

Welcome :-)

> I need to put rewrite rule in such a way that http://community.brand.com
> should end up at
> http://community.brand.com/base/index.jspa.

This rather depends on what you mean by 'end up at'. If you wish the
client to see the new address, then:

# This requires a recent version of apache. If using an older major version,
# specify the second argument in full
RedirectMatch ^/$ /base/index.jspa

On the other hand if you want the client to see only '/'

RewriteEngine On
RewriteRule ^/$ /base/index.jspa

Note that this assumes you're using the main server config and putting
the rules in a VirtualHost block directly. If you're forced to use
htaccess, then read:

http://wiki.apache.org/httpd/RewriteContext

hth,
-- 
noodl

-
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] What the commands means?

2007-08-09 Thread Joshua Slive
On 8/9/07, Nanu Kalmanovitz <[EMAIL PROTECTED]> wrote:
> Hi!
>
> In the  HTTPD.CONF (Apache2) I find the following commands in the
> "VirtualHost" block:
>
> 
> BrowserMatch "MSIE" nokeepalive downgrade-1.0 force-response-1.0

These are work-arounds for bugs in Internet Explorer's SSL
implementation. The specifics are here:
http://httpd.apache.org/docs/2.2/env.html#special

> Include "SYS:/qfsearch/WEB-INF/QFRewrite.conf"

This is including more config information from a separate config file.
You'd have to check for yourself exactly what is in there.

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] Can you help me find the options directive, please?

2007-08-09 Thread Joshua Slive
On 8/9/07, Mar Pearly <[EMAIL PROTECTED]> wrote:
>
> Hello to all,
>
> Well I'm a newbie here and as you can easily understand I don't know a lot 
> and I don't know how to find everything the FAQ's say..
>
> I read the Security Tips and I was in the section of Server Side Includes and 
> what to do .I want to find the Options directive  but I don't know where to 
> locate it...Can you help me please?
>

The Options directive is typically in httpd.conf, which is your main
apache config file.

If you don't need SSI at all, then you should just make sure that none
of your Options directives include "Includes" and that your
AllowOverride directives are all set to "none".

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] Where can i find the server configuration file and where should i add the needed code block?

2007-08-09 Thread Vincent Bray
On 09/08/07, Mar Pearly <[EMAIL PROTECTED]> wrote:
>
>  Hello again,
> Do you know where I can find the User directive and the Server configuration 
> file?

This might help:

http://wiki.apache.org/httpd/DistrosDefaultLayout

-- 
noodl

-
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] hate to do this but....

2007-08-09 Thread Robert T Wyatt
I've been trying to remove myself from this list for a week now. I've
used the [EMAIL PROTECTED] address about four times
and the list owner address once.

Does anyone know how to, or can anyone reading the list, unsubscribe
me... please?

Thanks,
Robert

-
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] Cronolog for Windows?

2007-08-09 Thread Florian Yanez
There is a version of cronolog for Windows at
http://cronolog.org/download/index.html

It is one revision behind.  I have not used it as we only run Apache on
UNIX and Linux.

Hope this helps.

Florian Yanez
Manager of Technical Systems
Helzberg's Diamond Shops, Inc.
Email : [EMAIL PROTECTED]
Office:  816-627-1253
-Original Message-
From: news [mailto:[EMAIL PROTECTED] On Behalf Of "Crash" Dummy
Sent: Thursday, August 09, 2007 7:14 AM
To: users@httpd.apache.org
Subject: [EMAIL PROTECTED] Cronolog for Windows?

Since I cannot get rotatelogs to work with ErrorLog (I can't even start
Apache),
I thought I'd try Cronolog. Unfortunately, it is only available as
source code,
intended for use with *nix systems. So I need either a Windows
compatible
executable of Cronolog, or an equivalent program, or a solution to my
rotatelogs
problem.

I can use rotatelog with my access log(s), but not my error log:

This works:
CustomLog "|L:/apache/bin/rotatelogs -l logs/local 86400" local
env=locallog

This doesn't. In fact, I can't even start Apache, and since there is no
error
log, I don't know why:
ErrorLog "|L:/apache/bin/rotatelogs -l logs/errorlog 86400"
-- 
Crash, running Windows 2000 Pro - Apache 2.2.4 - PHP 5.2.1 - PERL 5.8.8

Reply to group only. E-mail is blocked.





-
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]
 
Internet E-mail Disclaimer 
This message contains confidential information and is intended only for the 
individual(s) named. If you are not the named addressee you should not 
disseminate, distribute or copy this E-mail. Please notify the sender 
immediately by E-mail if you have received this E-mail by mistake and delete 
this E-mail from your system. E-mail transmission cannot be guaranteed to be 
secure or error-free as information could be intercepted, corrupted, lost, 
destroyed, arrive late or incomplete, or contain viruses. The recipient should 
check this E-mail and any attachments for the presence of viruses. The sender 
and Helzberg's Diamond Shops, Inc. therefore does not accept liability for any 
errors or omissions in the contents of this message, which arise as a result of 
E-mail transmission. Views of this E-mail and of Helzberg Diamond Shops, Inc. 
employees do not necessarily reflect the views of Helzberg Diamond Shops, Inc. 
If verification is required please request a hard-copy version.
Helzberg's Diamond Shops, Inc. - 1825 Swift Ave. - N. Kansas City, MO - USA - 
www.helzberg.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]



RE: [EMAIL PROTECTED] Is it possible to view the current apache configuration

2007-08-09 Thread Florian Yanez
If you have server-info turned on then you should be able to see the
current configuration.

Florian Yanez
Manager of Technical Systems
Helzberg's Diamond Shops, Inc.
Email : [EMAIL PROTECTED]
Office:  816-627-1253

-Original Message-
From: Puthick Hok [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, August 08, 2007 8:39 PM
To: users@httpd.apache.org
Subject: [EMAIL PROTECTED] Is it possible to view the current apache
configuration

Hi,

I've just removed some important apache virtual host configuration on
my local workstation during a server reconfiguration routine. I
intended to remove *~, but removed * instead. Now everything under
vhosts.d is gone.

The configuration contains mod_perl settings which I want to recover
some parts of it. The httpd is still running and has not been
restarted or reloaded yet.

So, my question: is it possible to see the current working apache
configuration that is in memory? I am using ext3 filesystem. Restoring
deleted files from this system seems to be more time consuming than
reconfiguring mod_perl from scratch.

I will remember to backup everything including my personal workstation.

Thanks,
Puthick

-
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]
 
Internet E-mail Disclaimer 
This message contains confidential information and is intended only for the 
individual(s) named. If you are not the named addressee you should not 
disseminate, distribute or copy this E-mail. Please notify the sender 
immediately by E-mail if you have received this E-mail by mistake and delete 
this E-mail from your system. E-mail transmission cannot be guaranteed to be 
secure or error-free as information could be intercepted, corrupted, lost, 
destroyed, arrive late or incomplete, or contain viruses. The recipient should 
check this E-mail and any attachments for the presence of viruses. The sender 
and Helzberg's Diamond Shops, Inc. therefore does not accept liability for any 
errors or omissions in the contents of this message, which arise as a result of 
E-mail transmission. Views of this E-mail and of Helzberg Diamond Shops, Inc. 
employees do not necessarily reflect the views of Helzberg Diamond Shops, Inc. 
If verification is required please request a hard-copy version.
Helzberg's Diamond Shops, Inc. - 1825 Swift Ave. - N. Kansas City, MO - USA - 
www.helzberg.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]



Re: [EMAIL PROTECTED] hate to do this but....

2007-08-09 Thread Joshua Slive
On 8/9/07, Robert T Wyatt <[EMAIL PROTECTED]> wrote:
> I've been trying to remove myself from this list for a week now. I've
> used the [EMAIL PROTECTED] address about four times
> and the list owner address once.
>
> Does anyone know how to, or can anyone reading the list, unsubscribe
> me... please?

Do you think you could give the list owner a day to respond? We're not
all sitting here glued to our computers 24 hours a day ;-)

I got your email and I will deal with it.

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] URL Redirect

2007-08-09 Thread Joshua Slive
On 8/9/07, Rajendra Rait <[EMAIL PROTECTED]> wrote:

> Is it possible to hide the whole IP and the contents and just display
> www.#*$!#*$!.com, while the user browses the site, here is my Virtual
> host directive.

You'd need to use a reverse proxy / gateway. See, for example,
http://www.apachetutor.org/admin/reverseproxies

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] mod_headers.c

2007-08-09 Thread gerocoma-forophp
Thank you.

Is there any way to just add it?

Gerardo.


--- Joshua Slive <[EMAIL PROTECTED]> escribió:

> On 8/8/07, [EMAIL PROTECTED]
> <[EMAIL PROTECTED]> wrote:
> > Hello,
> >
> > I've apache 1.3 installation. It doesn't have
> > mod_headers installed. How can I install it?
> >
> > The best/only thing I find in the web was the
> > mod_headers.c source code
> >
>
(http://www.koders.com/c/fid0AAB65D829C37CFB1E1F87D75C64A019E51DD972.aspx)
> >
> > However, I don't know how to get it working into
> my
> > current installation.
> 
> The most straight-forward way is to reinstall with
> that module included:
> http://httpd.apache.org/docs/1.3/install.html
> 
> Joshua.
> 



  

¡Sé un mejor asador!
Aprende todo sobre asados.  
http://mx.yahoo.com/promos/mejorasador.html

-
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_headers.c

2007-08-09 Thread Joshua Slive
On 8/9/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
> Thank you.
>
> Is there any way to just add it?

IF you already have mod_so compiled into the server AND you have a
working version of apxs somewhere in your apache install, then you MAY
be able to use apxs to compile and install as show in example 4 under
"Usage Summary" here:
http://httpd.apache.org/docs/1.3/dso.html

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]



[EMAIL PROTECTED] Re: restarting only one virtual host

2007-08-09 Thread Landlord Bulfleet
Hi, I have an apache server running multiple virtual hosts. One of them is
running a django app with mod_python and I would like to be able to restart
it without restarting the whole apache server...

Any suggestions...


Re: [EMAIL PROTECTED] Re: restarting only one virtual host

2007-08-09 Thread Joshua Slive
On 8/9/07, Landlord Bulfleet <[EMAIL PROTECTED]> wrote:
> Hi, I have an apache server running multiple virtual hosts. One of them is
> running a django app with mod_python and I would like to be able to restart
> it without restarting the whole apache server...
>
> Any suggestions...

If you absolutely need to do this, then you must run that virtual host
on another instance of apache (using another IP-address/port or using
a reverse proxy as in
http://wiki.apache.org/httpd/DifferentUserIDsUsingReverseProxy )

But unless you are restarting very frequently, there is no harm in
doing a graceful restart of the whole server. Clients will not notice
at all.

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] mod_headers.c

2007-08-09 Thread gerocoma-forophp
Thank you very much Joshua!!!

It completely works

It was very straigth forward. I just followed the 2
single steps in that guide. 

apxs -c
apxs -i -a -n

The only thing is that apxs didn't add the LoadModule
and AddModule lines as expected, but I only changed
them and now is working! 

(mod_mod_headers.c was written instead of
mod_headers.c)

Cool!

Thanks again.
Gerardo.


--- Joshua Slive <[EMAIL PROTECTED]> escribió:

> On 8/9/07, [EMAIL PROTECTED]
> <[EMAIL PROTECTED]> wrote:
> > Thank you.
> >
> > Is there any way to just add it?
> 
> IF you already have mod_so compiled into the server
> AND you have a
> working version of apxs somewhere in your apache
> install, then you MAY
> be able to use apxs to compile and install as show
> in example 4 under
> "Usage Summary" here:
> http://httpd.apache.org/docs/1.3/dso.html
> 
> 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]
> 
> 



  

¡Sé un mejor asador!
Aprende todo sobre asados.  
http://mx.yahoo.com/promos/mejorasador.html

-
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] htaccess and htpasswd

2007-08-09 Thread Mandy Singh
Hi Tony,

Yes I needed to move stuff to the httpd.conf file, but still how does one do
domain level password protection. Your example is directory level password
protection that would apply to all Virtual Hosts.

Any idea on domain level?

Thanks.

On 8/8/07, Tony Stevenson <[EMAIL PROTECTED]> wrote:
>
> Mandy Singh wrote:
> > Hello Everyone,
> >
> > On my website, I have content served off webroot.
> >
> > site1.example.com 
> > site2.example.com 
> > site3.example.com 
> >
> > All point to the same doc root.
> >
> > I want to passwd protect site1.example.com 
> > but not the others (but they are served off the same directory)
> >
> > How can I do that using apache?
>
> Add your config to your httpd.conf file. Try to avoid using .htaccess
> files if you can.
>
> Look at this page for an idea of how you can do this
>
> http://wiki.apache.org/httpd/PasswordBasicAuth
>
>
>
>
>


Re: [EMAIL PROTECTED] mod_headers.c

2007-08-09 Thread gerocoma-forophp
Thank you very much Joshua!!!

It completely works

It was very straigth forward. I just followed the 2
single steps in that guide. 

apxs -c
apxs -i -a -n

The only thing is that apxs didn't add the LoadModule
and AddModule lines as expected, but I only changed
them and now is working! 

(mod_mod_headers.c was written instead of
mod_headers.c)

Cool!

Thanks again.
Gerardo.


--- Joshua Slive <[EMAIL PROTECTED]> escribió:

> On 8/9/07, [EMAIL PROTECTED]
> <[EMAIL PROTECTED]> wrote:
> > Thank you.
> >
> > Is there any way to just add it?
> 
> IF you already have mod_so compiled into the server
> AND you have a
> working version of apxs somewhere in your apache
> install, then you MAY
> be able to use apxs to compile and install as show
> in example 4 under
> "Usage Summary" here:
> http://httpd.apache.org/docs/1.3/dso.html
> 
> 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]
> 
> 



  

¡Sé un mejor besador!
Comparte todo lo que sabes sobre besos.  
http://mx.yahoo.com/promos/mejorbesador.html

-
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: Cronolog for Windows?

2007-08-09 Thread \"Crash\" Dummy
> There is a version of cronolog for Windows at
> http://cronolog.org/download/index.html

> I have not used it as we only run Apache on
> UNIX and Linux.

Thank you. Unfortunately, I am having the same problem with it as I am having
with rotatelogs. The both work fine with access logs but neither works with
ErrorLog. :-(

I vaguely recall hearing that rotatelogs didn't work in Apache 2.2.4. Maybe it
is piping that doesn't work. At least, not for the error log. This is my first
exposure to Apache, so I have no frame of reference.

> It is one revision behind.

Aren't we all!
-- 
Crash
Running: Windows 2000 Pro - Apache 2.2.4 - PHP 5.2.1 - PERL 5.8.8

Reply to group only. E-mail is blocked.




-
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] htaccess and htpasswd

2007-08-09 Thread Tony Stevenson

Mandy Singh wrote:

Hi Tony,

Yes I needed to move stuff to the httpd.conf file, but still how does 
one do domain level password protection. Your example is directory level 
password protection that would apply to all Virtual Hosts.


Any idea on domain level?


In the vhost you want to 'protect' use :


Pass Auth text in here


This will then apply only to that vhost, and not the FS path.

let me know how you get on.


Tony



smime.p7s
Description: S/MIME Cryptographic Signature


Re: [EMAIL PROTECTED] htaccess and htpasswd

2007-08-09 Thread Mandy Singh
Thanks Tony.

Doing the following inside the VirtualHost tag did it -


ServerAdmin [EMAIL PROTECTED]
DocumentRoot F:\xampp-lite\xampplite\htdocs\c\trunk\app\webroot
ServerName dev.c.com
ErrorLog F:\xampp-lite\xampplite\apache\logs\error_log
CustomLog F:\xampp-lite\xampplite\apache\logs\access_log common

  AuthType Basic
  AuthName "Authentication Required"
  AuthUserFile "/var/www/html/.htpasswd"
  Require valid-user

  Order allow,deny
  Allow from all




On 8/9/07, Tony Stevenson <[EMAIL PROTECTED]> wrote:
>
> Mandy Singh wrote:
> > Hi Tony,
> >
> > Yes I needed to move stuff to the httpd.conf file, but still how does
> > one do domain level password protection. Your example is directory level
> > password protection that would apply to all Virtual Hosts.
> >
> > Any idea on domain level?
> >
> In the vhost you want to 'protect' use :
>
> 
> Pass Auth text in here
> 
>
> This will then apply only to that vhost, and not the FS path.
>
> let me know how you get on.
>
>
> Tony
>
>
>


Re: [EMAIL PROTECTED] Apache 2.2.4 self-signed SSL problem with openssl 0.9.8e on Solaris 10

2007-08-09 Thread Dragon

S.A. Birl wrote:

Greetings all:

I recently upgraded my server from Solaris 9 to Solaris 10.
I restored my self-signed CRT and privkey.pem from backup,
and restored all of my Apache files (minus the binaries) from
backup too.  Re-compiled httpd (just in case) and started it up.

Apache asked for the passphrase and accepted it, but my web browsers
wont connect to it.  SeaMonkey says "Data Transfer Interrupted"

https://concept.temple.edu/

Generating a new CSR and CRT with openssl 0.9.8e and tried again.
Same result.

Nothing in the error log; nothing in the access log, but lsof says
httpd is listening on 443.

Im baffled.  What could I be over-looking?


Thanks
 Birl

 End original message. -

The site came up in my browser (IE7) but showed a certificate error. 
The error is that the certificate is not signed by a trusted authority.


Dragon

~~~
 Venimus, Saltavimus, Bibimus (et naribus canium capti sumus)
~~~


-
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_jk error

2007-08-09 Thread Sangoi, Nehal (Gexpro, consultant)
In continuation to below error, I have few more lines of log.
 
[Thu Aug 09 20:09:27 2007] [28566:38592] [debug]
wc_get_worker_for_name::jk_worker.c (114): found a worker iat1
[Thu Aug 09 20:09:27 2007] [28566:38592] [debug]
wc_get_name_for_type::jk_worker.c (290): Found worker type 'ajp13'
[Thu Aug 09 20:09:27 2007] [28566:38592] [debug]
init_ws_service::mod_jk.c (607): Service protocol=HTTP/1.1 method=GET
host=(null) addr=10.33.84.4 name=gexprdweb.gexo.com port=7001
auth=(null) user=(null) laddr=10.33.4.151 raddr=10.33.84.4
 

==
 
[Thu Aug 09 20:10:50 2007] [28567:38592] [debug]
map_uri_to_worker::jk_uri_worker_map.c (616): Found a wildchar match
'/custdash/*=custdash1'
[Thu Aug 09 20:10:50 2007] [28567:38592] [debug] jk_handler::mod_jk.c
(2111): Into handler jakarta-servlet worker=custdash1 r->proxyreq=0
[Thu Aug 09 20:10:50 2007] [28567:38592] [debug]
wc_get_worker_for_name::jk_worker.c (114): found a worker custdash1
[Thu Aug 09 20:10:50 2007] [28567:38592] [debug]
wc_get_name_for_type::jk_worker.c (290): Found worker type 'ajp13'
[Thu Aug 09 20:10:50 2007] [28567:38592] [debug]
init_ws_service::mod_jk.c (607): Service protocol=HTTP/1.1 method=GET
host=(null) addr=10.33.84.4 name=gexprdweb.gexo.com port=80 auth=(null)
user=(null) laddr=10.33.4.151 raddr=10.33.84.4
 
==
 
[Thu Aug 09 20:49:17 2007] [29047:38592] [debug]
wc_get_worker_for_name::jk_worker.c (114): found a worker ecatalog1
[Thu Aug 09 20:49:17 2007] [29047:38592] [debug]
wc_get_name_for_type::jk_worker.c (290): Found worker type 'ajp13'
[Thu Aug 09 20:49:17 2007] [29047:38592] [debug]
init_ws_service::mod_jk.c (607): Service protocol=HTTP/1.1 method=GET
host=(null) addr=10.33.84.4 name=gexprdweb.gexo.com port=8
0 auth=(null) user=(null) laddr=10.33.4.151 raddr=10.33.84.4
 
 
In the above bold lines, my URL port is getting changed from 7001 to 80
mysteriously. My instance is running over 7001 and application too, is
pointing to 7001 in all of the configuration. What could be the reason
for getting it redirected to port 80?
 
Thanks
Nehal



From: Sangoi, Nehal (Gexpro, consultant) 
Sent: Wednesday, August 08, 2007 10:20 AM
To: users@httpd.apache.org
Subject: [EMAIL PROTECTED] mod_jk error


Hi
 
I am running apache 2.0.59 on linux machine with the mod_jk 1.2.19
binary as connector to tomcat 5.5.23.
For one of the workers in mod_jk, its giving me following error.
 
[Tue Aug 07 20:41:03 2007] [22993:22208] [debug] jk_handler::mod_jk.c
(2047): Service finished with status=404 for worker=tss1
 
I tried to search the fressh mod_jk binary for the given apache version,
but it seems, its not available anymore. Hence, I tried to build from
the source code, but that option also did not work.
 
What could be the possible reason for the error mentioned and how it can
be resolved?
 
 
Thanks
Nehal
 


Re: [EMAIL PROTECTED] htaccess and htpasswd

2007-08-09 Thread Tony Stevenson



Mandy Singh wrote:

Thanks Tony.

Doing the following inside the VirtualHost tag did it -

http://127.0.0.1:80>>
ServerAdmin [EMAIL PROTECTED] 
DocumentRoot F:\xampp-lite\xampplite\htdocs\c\trunk\app\webroot
ServerName dev.c.com 
ErrorLog F:\xampp-lite\xampplite\apache\logs\error_log
CustomLog F:\xampp-lite\xampplite\apache\logs\access_log common



Mandy, just so you know, using  applies to the root of your 
file system, i.e. /


You should consider using a  stanza instead.





  AuthType Basic
  AuthName "Authentication Required"
  AuthUserFile "/var/www/html/.htpasswd"
  Require valid-user

  Order allow,deny
  Allow from all
   







--Tony

-
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] mod_cache and wildcard url's

2007-08-09 Thread wi
Hi again

I have a REST-based application that is getting quite loaded. I need to
begin caching some dynamically generated png files that are created by the
command:

/users//games/user_score

Ideally, I'd like to create a caching directive along the following lines:

CacheEnable disk /users/*/games/*/user_score

so that the thumbnail graphic can be cached.

thanks
Wayne

-- 
2X7 -> %A-3+ -> %K-7+ -> %9-?+ -> %Q-8 -> ?9-?9+


[EMAIL PROTECTED] About the setting of the Security Console MySQL & XAMPP Directory Protection

2007-08-09 Thread Mar Pearly

Hello,how are you all doing?

well I am new here and i'm trying to set the Security Console MySQL & XAMPP 
Directory Protection through the url .

My question might sound to you foolish but please forgive me...

In the MySQL Section, 2 radio button options appear for the  PHPMyAdmin 
Authentification .I should check a specific button-i mean it is for everybody 
the same option and if yes which option ?   cookie or http?And what each option 
serves?

And In the Security Risk :Safe Plain password in textfile checkbox :means that 
if i check the box my password will be saved in plain text in the according 
file ?

As far as the Xampp Directory Protection is concerned in the field username i 
must enter root -so that it is in accordance with the MySQL Section?Or I should 
use another different?


Thanks a lot in advance and sorry for these questions but I really don't know 
what to do...

Thanks a lot in Advance 

Yours,faithfully




_
Make every IM count. Download Windows Live Messenger and join the i’m 
Initiative now. It’s free. 
http://im.live.com/messenger/im/home/?source=TAGWL_June07
-
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] ReWrite Rule

2007-08-09 Thread Lalit Kapoor
Thanks.
Will try and share results. I am using main server and will be putting rules
directly
in virtual host block.

On 8/9/07, Vincent Bray <[EMAIL PROTECTED]> wrote:
>
> On 09/08/07, Lalit Kapoor <[EMAIL PROTECTED]> wrote:
> > Hello,
> >
> > I am new to apache community.
>
> Welcome :-)
>
> > I need to put rewrite rule in such a way that http://community.brand.com
> > should end up at
> > http://community.brand.com/base/index.jspa.
>
> This rather depends on what you mean by 'end up at'. If you wish the
> client to see the new address, then:
>
> # This requires a recent version of apache. If using an older major
> version,
> # specify the second argument in full
> RedirectMatch ^/$ /base/index.jspa
>
> On the other hand if you want the client to see only '/'
>
> RewriteEngine On
> RewriteRule ^/$ /base/index.jspa
>
> Note that this assumes you're using the main server config and putting
> the rules in a VirtualHost block directly. If you're forced to use
> htaccess, then read:
>
> http://wiki.apache.org/httpd/RewriteContext
>
> hth,
> --
> noodl
>
> -
> 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_jk error

2007-08-09 Thread Jeff Beard
Can you post the relevant configuration from workers.properties, apache
config and the server.xml please? 

 

 

Thanks,

 

Jeff

 

From: Sangoi, Nehal (Gexpro, consultant) [mailto:[EMAIL PROTECTED] 
Sent: Thursday, August 09, 2007 3:22 PM
To: users@httpd.apache.org
Subject: RE: [EMAIL PROTECTED] mod_jk error

 

In continuation to below error, I have few more lines of log.

 

[Thu Aug 09 20:09:27 2007] [28566:38592] [debug]
wc_get_worker_for_name::jk_worker.c (114): found a worker iat1
[Thu Aug 09 20:09:27 2007] [28566:38592] [debug]
wc_get_name_for_type::jk_worker.c (290): Found worker type 'ajp13'
[Thu Aug 09 20:09:27 2007] [28566:38592] [debug] init_ws_service::mod_jk.c
(607): Service protocol=HTTP/1.1 method=GET host=(null) addr=10.33.84.4
name=gexprdweb.gexo.com port=7001 auth=(null) user=(null) laddr=10.33.4.151
raddr=10.33.84.4

 


==

 

[Thu Aug 09 20:10:50 2007] [28567:38592] [debug]
map_uri_to_worker::jk_uri_worker_map.c (616): Found a wildchar match
'/custdash/*=custdash1'
[Thu Aug 09 20:10:50 2007] [28567:38592] [debug] jk_handler::mod_jk.c
(2111): Into handler jakarta-servlet worker=custdash1 r->proxyreq=0
[Thu Aug 09 20:10:50 2007] [28567:38592] [debug]
wc_get_worker_for_name::jk_worker.c (114): found a worker custdash1
[Thu Aug 09 20:10:50 2007] [28567:38592] [debug]
wc_get_name_for_type::jk_worker.c (290): Found worker type 'ajp13'
[Thu Aug 09 20:10:50 2007] [28567:38592] [debug] init_ws_service::mod_jk.c
(607): Service protocol=HTTP/1.1 method=GET host=(null) addr=10.33.84.4
name=gexprdweb.gexo.com port=80 auth=(null) user=(null) laddr=10.33.4.151
raddr=10.33.84.4

 

==

 

[Thu Aug 09 20:49:17 2007] [29047:38592] [debug]
wc_get_worker_for_name::jk_worker.c (114): found a worker ecatalog1
[Thu Aug 09 20:49:17 2007] [29047:38592] [debug]
wc_get_name_for_type::jk_worker.c (290): Found worker type 'ajp13'
[Thu Aug 09 20:49:17 2007] [29047:38592] [debug] init_ws_service::mod_jk.c
(607): Service protocol=HTTP/1.1 method=GET host=(null) addr=10.33.84.4
name=gexprdweb.gexo.com port=8
0 auth=(null) user=(null) laddr=10.33.4.151 raddr=10.33.84.4

 

 

In the above bold lines, my URL port is getting changed from 7001 to 80
mysteriously. My instance is running over 7001 and application too, is
pointing to 7001 in all of the configuration. What could be the reason for
getting it redirected to port 80?

 

Thanks

Nehal

  _  

From: Sangoi, Nehal (Gexpro, consultant) 
Sent: Wednesday, August 08, 2007 10:20 AM
To: users@httpd.apache.org
Subject: [EMAIL PROTECTED] mod_jk error

Hi

 

I am running apache 2.0.59 on linux machine with the mod_jk 1.2.19 binary as
connector to tomcat 5.5.23.

For one of the workers in mod_jk, its giving me following error.

 

[Tue Aug 07 20:41:03 2007] [22993:22208] [debug] jk_handler::mod_jk.c
(2047): Service finished with status=404 for worker=tss1

 

I tried to search the fressh mod_jk binary for the given apache version, but
it seems, its not available anymore. Hence, I tried to build from the source
code, but that option also did not work.

 

What could be the possible reason for the error mentioned and how it can be
resolved?

 

 

Thanks

Nehal

 



Re: [EMAIL PROTECTED] mod_cache and wildcard url's

2007-08-09 Thread Joshua Slive
On 8/9/07, wi <[EMAIL PROTECTED]> wrote:
> Hi again
>
> I have a REST-based application that is getting quite loaded. I need to
> begin caching some dynamically generated png files that are created by the
> command:
>
> /users//games/user_score
>
> Ideally, I'd like to create a caching directive along the following lines:
>
> CacheEnable disk /users/*/games/*/user_score
>
> so that the thumbnail graphic can be cached.

As far as I know, you can't use wildcards in CacheEnable (although I
haven't checked the code). You can only specify an exact leading path.

One thing to consider: if you are sending proper cache-control
directives with your non-png files, then there shouldn't be any
problem in letting the cache act on them. If you don't want them in
the cache at all, simply send Cache-control: no-cache.

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] About the setting of the Security Console MySQL & XAMPP Directory Protection

2007-08-09 Thread Dragon

On Thu, August 9, 2007 16:27, Mar Pearly wrote:
>
> Hello,how are you all doing?
>
> well I am new here and i'm trying to set the Security Console MySQL &
> XAMPP Directory Protection through the url .
>
> My question might sound to you foolish but please forgive me...
>
> In the MySQL Section, 2 radio button options appear for the  PHPMyAdmin
> Authentification .I should check a specific button-i mean it is for
> everybody the same option and if yes which option ?   cookie or http?And
> what each option serves?
>
> And In the Security Risk :Safe Plain password in textfile checkbox :means
> that if i check the box my password will be saved in plain text in the
> according file ?
>
> As far as the Xampp Directory Protection is concerned in the field
> username i must enter root -so that it is in accordance with the MySQL
> Section?Or I should use another different?
>
>
> Thanks a lot in advance and sorry for these questions but I really don't
> know what to do...
>

Absolutely none of this has anything to do with the Apache web server so
it is highly doubtful that anyone here is in a position to help you.

You need to find documentation and/or support lists appropriate to your
problem, in your case, it looks like lists for MySQL, PHPMyAdmin and XAMPP
are what you need to go look for.

None of which you are going to find here.

-- 
~~~
  Venimus, Saltavimus, Bibimus (et naribus canium capti sumus)
~~~


-
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_jk error

2007-08-09 Thread Sangoi, Nehal (Gexpro, consultant)
httpd.conf :
 
Listen 7001
# Load Mod_JK Module for Tomcat Connector
LoadModule  jk_module   modules/mod_jk.so
#SiteMinder Configs Begin - by ssoteam - 0729
LoadModule sm_module
/data01/netegrity/siteminder5qmr7/webagent/lib/libmod_sm20.so
SmInitFile /data01/expd/conf/WebAgent.conf
#SiteMinder Configs End
 
#
# Where to find workers.properties
JkWorkersFile /data01/expd/conf/workers.properties
# Where to put jk logs
JkLogFile /data01/expd/logs/mod_jk.log
# Set the jk log level [debug/error/info]
JkLogLevel debug
JkMount /sso/*  sso1
JkMount /iat/* iat1
JkMount /custdash/* custdash1
 
 
workers.properties :
 
workers.java_home=/usr/java
ps=/
worker.list=iat1,sso1,custdash1
## SSO CONNECTOR
worker.sso1.port=7103
worker.sso1.host=10.33.9.71
worker.sso1.type=ajp13
## IAT CONNECTOR
worker.iat1.port=7123
worker.iat1.host=10.33.9.71
worker.iat1.type=ajp13
## CUSTDASH CONNECTOR
worker.custdash1.port=7183
worker.custdash1.host=10.33.9.71
worker.custdash1.type=ajp13
 
 
server.xml :
 

 


 

 


 


 
 

 
My request is not even reaching uptil my tomcat server. It stucks on
apache webserver itself.



From: Jeff Beard [mailto:[EMAIL PROTECTED] 
Sent: Thursday, August 09, 2007 7:52 PM
To: users@httpd.apache.org
Subject: RE: [EMAIL PROTECTED] mod_jk error



Can you post the relevant configuration from workers.properties, apache
config and the server.xml please? 

 

 

Thanks,

 

Jeff

 

From: Sangoi, Nehal (Gexpro, consultant)
[mailto:[EMAIL PROTECTED] 
Sent: Thursday, August 09, 2007 3:22 PM
To: users@httpd.apache.org
Subject: RE: [EMAIL PROTECTED] mod_jk error

 

In continuation to below error, I have few more lines of log.

 

[Thu Aug 09 20:09:27 2007] [28566:38592] [debug]
wc_get_worker_for_name::jk_worker.c (114): found a worker iat1
[Thu Aug 09 20:09:27 2007] [28566:38592] [debug]
wc_get_name_for_type::jk_worker.c (290): Found worker type 'ajp13'
[Thu Aug 09 20:09:27 2007] [28566:38592] [debug]
init_ws_service::mod_jk.c (607): Service protocol=HTTP/1.1 method=GET
host=(null) addr=10.33.84.4 name=gexprdweb.gexo.com port=7001
auth=(null) user=(null) laddr=10.33.4.151 raddr=10.33.84.4

 


==

 

[Thu Aug 09 20:10:50 2007] [28567:38592] [debug]
map_uri_to_worker::jk_uri_worker_map.c (616): Found a wildchar match
'/custdash/*=custdash1'
[Thu Aug 09 20:10:50 2007] [28567:38592] [debug] jk_handler::mod_jk.c
(2111): Into handler jakarta-servlet worker=custdash1 r->proxyreq=0
[Thu Aug 09 20:10:50 2007] [28567:38592] [debug]
wc_get_worker_for_name::jk_worker.c (114): found a worker custdash1
[Thu Aug 09 20:10:50 2007] [28567:38592] [debug]
wc_get_name_for_type::jk_worker.c (290): Found worker type 'ajp13'
[Thu Aug 09 20:10:50 2007] [28567:38592] [debug]
init_ws_service::mod_jk.c (607): Service protocol=HTTP/1.1 method=GET
host=(null) addr=10.33.84.4 name=gexprdweb.gexo.com port=80 auth=(null)
user=(null) laddr=10.33.4.151 raddr=10.33.84.4

 

==

 

[Thu Aug 09 20:49:17 2007] [29047:38592] [debug]
wc_get_worker_for_name::jk_worker.c (114): found a worker ecatalog1
[Thu Aug 09 20:49:17 2007] [29047:38592] [debug]
wc_get_name_for_type::jk_worker.c (290): Found worker type 'ajp13'
[Thu Aug 09 20:49:17 2007] [29047:38592] [debug]
init_ws_service::mod_jk.c (607): Service protocol=HTTP/1.1 method=GET
host=(null) addr=10.33.84.4 name=gexprdweb.gexo.com port=8
0 auth=(null) user=(null) laddr=10.33.4.151 raddr=10.33.84.4

 

 

In the above bold lines, my URL port is getting changed from 7001 to 80
mysteriously. My instance is running over 7001 and application too, is
pointing to 7001 in all of the configuration. What could be the reason
for getting it redirected to port 80?

 

Thanks

Nehal



From: Sangoi, Nehal (Gexpro, consultant) 
Sent: Wednesday, August 08, 2007 10:20 AM
To: users@httpd.apache.org
Subject: [EMAIL PROTECTED] mod_jk error

Hi

 

I am running apache 2.0.59 on linux machine with the mod_jk 1.2.19
binary as connector to tomcat 5.5.23.

For one of the workers in mod_jk, its giving me following error.

 

[Tue Aug 07 20:41:03 2007] [22993:22208] [debug] jk_handler::mod_jk.c
(2047): Service finished with status=404 for worker=tss1

 

I tried to search the fressh mod_jk binary for the given apache version,
but it seems, its not available anymore. Hence, I tried to build from
the source code, but that option also did not work.

 

What could be the possible reason for the error mentioned and how it can
be resolved?

 

 

Thanks

Nehal

 



[EMAIL PROTECTED] help! need httpd-devel-2.2.4.i386

2007-08-09 Thread Jeff Murch
I built ver 2.2.4 right off of the apache.org site a few weeks ago for a
reverse proxy and now can't find the httpd-devel for it (to compile the
newest mod_proxy_html).

An RPM would be nice but not necessary. Anything I do find gives me an error
that it is not the same version ie httpd-devel-2.2.4-4 says it needs 2.2.4-4
not the 2.2.4 that I have.

Thanks, Jeff






-
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] help! need httpd-devel-2.2.4.i386

2007-08-09 Thread Joshua Slive
On 8/9/07, Jeff Murch <[EMAIL PROTECTED]> wrote:
> I built ver 2.2.4 right off of the apache.org site a few weeks ago for a
> reverse proxy and now can't find the httpd-devel for it (to compile the
> newest mod_proxy_html).
>
> An RPM would be nice but not necessary. Anything I do find gives me an error
> that it is not the same version ie httpd-devel-2.2.4-4 says it needs 2.2.4-4
> not the 2.2.4 that I have.

If you built it off the apache site, then the development stuff is all
included. Check the build/ directory off your ServerRoot (wherever you
installed the server).

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] mod_jk error

2007-08-09 Thread Jeff Beard
First, I noticed that the host in your log entry, gexprdweb.gexo.com, is not
the same domain name as the gexpro.com in your email address. I don't know
what the story is there but I suppose there could be a typo. 

 

Next, I don't know much, if anything, about Siteminder's Apache module and
how it might influence the request cycle. But it looks like the SSO team
added a module into the Apache configuration on 7/29. That's recent enough I
have to ask if you have commented out the Siteminder directives and tested
it? 

 

Also, have you tested directly against the Tomcat instance without going
through Apache? There's a 404 error in the first log message that might have
come from Tomcat. I think you get a different error when the request doesn't
make it through to Tomcat.

 

The worker in the first log entry doesn't exist in the conf you posted or in
the other log entries. Other than that, everything else seems fairly
"normal" to me. 

 

HTH.

 

--Jeff

 

From: Sangoi, Nehal (Gexpro, consultant) [mailto:[EMAIL PROTECTED] 
Sent: Thursday, August 09, 2007 6:08 PM
To: users@httpd.apache.org
Subject: RE: [EMAIL PROTECTED] mod_jk error

 

httpd.conf :

 

Listen 7001
# Load Mod_JK Module for Tomcat Connector
LoadModule  jk_module   modules/mod_jk.so

#SiteMinder Configs Begin - by ssoteam - 0729
LoadModule sm_module
/data01/netegrity/siteminder5qmr7/webagent/lib/libmod_sm20.so
SmInitFile /data01/expd/conf/WebAgent.conf
#SiteMinder Configs End
 
#
# Where to find workers.properties
JkWorkersFile /data01/expd/conf/workers.properties
# Where to put jk logs
JkLogFile /data01/expd/logs/mod_jk.log
# Set the jk log level [debug/error/info]
JkLogLevel debug

JkMount /sso/*  sso1
JkMount /iat/* iat1
JkMount /custdash/* custdash1

 

 

workers.properties :

 

workers.java_home=/usr/java
ps=/

worker.list=iat1,sso1,custdash1

## SSO CONNECTOR
worker.sso1.port=7103
worker.sso1.host=10.33.9.71
worker.sso1.type=ajp13
## IAT CONNECTOR
worker.iat1.port=7123
worker.iat1.host=10.33.9.71
worker.iat1.type=ajp13
## CUSTDASH CONNECTOR
worker.custdash1.port=7183
worker.custdash1.host=10.33.9.71
worker.custdash1.type=ajp13

 

 

server.xml :

 



 


 

 


 


 

 



 

My request is not even reaching uptil my tomcat server. It stucks on apache
webserver itself.

 

  _  

From: Jeff Beard [mailto:[EMAIL PROTECTED] 
Sent: Thursday, August 09, 2007 7:52 PM
To: users@httpd.apache.org
Subject: RE: [EMAIL PROTECTED] mod_jk error

Can you post the relevant configuration from workers.properties, apache
config and the server.xml please? 

 

 

Thanks,

 

Jeff

 

From: Sangoi, Nehal (Gexpro, consultant) [mailto:[EMAIL PROTECTED] 
Sent: Thursday, August 09, 2007 3:22 PM
To: users@httpd.apache.org
Subject: RE: [EMAIL PROTECTED] mod_jk error

 

In continuation to below error, I have few more lines of log.

 

[Thu Aug 09 20:09:27 2007] [28566:38592] [debug]
wc_get_worker_for_name::jk_worker.c (114): found a worker iat1
[Thu Aug 09 20:09:27 2007] [28566:38592] [debug]
wc_get_name_for_type::jk_worker.c (290): Found worker type 'ajp13'
[Thu Aug 09 20:09:27 2007] [28566:38592] [debug] init_ws_service::mod_jk.c
(607): Service protocol=HTTP/1.1 method=GET host=(null) addr=10.33.84.4
name=gexprdweb.gexo.com port=7001 auth=(null) user=(null) laddr=10.33.4.151
raddr=10.33.84.4

 


==

 

[Thu Aug 09 20:10:50 2007] [28567:38592] [debug]
map_uri_to_worker::jk_uri_worker_map.c (616): Found a wildchar match
'/custdash/*=custdash1'
[Thu Aug 09 20:10:50 2007] [28567:38592] [debug] jk_handler::mod_jk.c
(2111): Into handler jakarta-servlet worker=custdash1 r->proxyreq=0
[Thu Aug 09 20:10:50 2007] [28567:38592] [debug]
wc_get_worker_for_name::jk_worker.c (114): found a worker custdash1
[Thu Aug 09 20:10:50 2007] [28567:38592] [debug]
wc_get_name_for_type::jk_worker.c (290): Found worker type 'ajp13'
[Thu Aug 09 20:10:50 2007] [28567:38592] [debug] init_ws_service::mod_jk.c
(607): Service protocol=HTTP/1.1 method=GET host=(null) addr=10.33.84.4
name=gexprdweb.gexo.com port=80 auth=(null) user=(null) laddr=10.33.4.151
raddr=10.33.84.4

 

==

 

[Thu Aug 09 20:49:17 2007] [29047:38592] [debug]
wc_get_worker_for_name::jk_worker.c (114): found a worker ecatalog1
[Thu Aug 09 20:49:17 2007] [29047:38592] [debug]
wc_get_name_for_type::jk_worker.c (290): Found worker type 'ajp13'
[Thu Aug 09 20:49:17 2007] [29047:38592] [debug] init_ws_service::mod_jk.c
(607): Service protocol=HTTP/1.1 method=GET host=(null) addr=10.33.84.4
name=gexprdweb.gexo.com port=8
0 auth=(null) user=(null) laddr=10.33.4.151 raddr=10.33.84.4

 

 

In the above bold lines, my URL port is getting changed from 7001 to 80
mysteriously. My instance is running over 7001 and application too, is
pointing to 7001 in all of the configuration. What could be the reason for
getting it redirected to port 80?

 

Thanks

Nehal

  _  

From: Sang