RE: [EMAIL PROTECTED] Requests taking a lot of time

2008-01-02 Thread Axel-Stephane SMORGRAV
What MPM are you using? What is the output of httpd -l ?? -ascs De : Jean-Christophe Roux [mailto:[EMAIL PROTECTED] Envoyé : mercredi 2 janvier 2008 17:59 À : users@httpd.apache.org Objet : [EMAIL PROTECTED] Requests taking a lot of time Hello, I am strug

RE: [EMAIL PROTECTED] Needing help with mod_proxy

2008-01-02 Thread Axel-Stephane SMORGRAV
Check your RewriteLog directive. If you do not have one, use it to specify the file into which mod_rewrite will log. -ascs De : Bryan Richardson [mailto:[EMAIL PROTECTED] Envoyé : mercredi 2 janvier 2008 18:39 À : users@httpd.apache.org Objet : Re: [EMAIL PRO

Re: [EMAIL PROTECTED] Needing help with mod_proxy

2008-01-02 Thread Bryan Richardson
Axel, Again, thanks for your help. However, I made the changes you suggested but I'm still getting the same result. Below is what I have. Also, nothing is showing up in my logs about rewrites... and I made sure I have ErrorLog specified. I hate to keep bugging you so don't worry about it if yo

Re: [EMAIL PROTECTED] Requests taking a lot of time

2008-01-02 Thread Dragon
Jean-Christophe Roux wrote: Hello, I am struggling with an issue and I have the following set up that reproduces the problem. I am running apache 2.2 on Centos 5.0. On the client side, I have a web page that polls the server every second. Using prototypejs, it looks like that: setInterval('p

Re: [EMAIL PROTECTED] Cannot restart httpd

2008-01-02 Thread Dragon
Liz Kim wrote: I was not able to restart Apache earlier today and had to reboot the server itself. This is the error message that I received when it failed to restart. Stopping httpd:[ OK ] Starting httpd: (98)Address already in use: make_sock: coul

[EMAIL PROTECTED] Cannot restart httpd

2008-01-02 Thread Liz Kim
I was not able to restart Apache earlier today and had to reboot the server itself. This is the error message that I received when it failed to restart. Stopping httpd:[ OK ] Starting httpd: (98)Address already in use: make_sock: could not bind to addr

[EMAIL PROTECTED] Requests taking a lot of time

2008-01-02 Thread Jean-Christophe Roux
Hello, I am struggling with an issue and I have the following set up that reproduces the problem. I am running apache 2.2 on Centos 5.0. On the client side, I have a web page that polls the server every second. Using prototypejs, it looks like that: setInterval('polling();', 1000); function p

RE: [EMAIL PROTECTED] Needing help with mod_proxy

2008-01-02 Thread Axel-Stephane SMORGRAV
My fault. I guess that what is happening is that the browser is being redirected and the Location header is not rewritten because I omitted the ProxyPassReverse directives. Try adding: ProxyPassReverse /otherapp/ http://127.0.0.1:3001/ ProxyPassReverse / http://127.0.0.1:3000/ There is anot

Re: [EMAIL PROTECTED] Needing help with mod_proxy

2008-01-02 Thread Bryan Richardson
Hi again Axel. I tried out what you said and I'm still having some problems. Below is what I have in my site's config file. This makes it possible for me to go to www.mysite.com/otherapp and I will get forwarded to my Rails app server at port 3001. Notice I had to leave %{REQUEST_URI} off the e

[EMAIL PROTECTED] Strange error "host: isc_taskmgr_create: no available threads"

2008-01-02 Thread Santi Saez
Dear Srs, I'm getting this error on a Linux box, running Apache 2.0.52: "host: isc_taskmgr_create: no available threads" Making some search for those strings in Google, didn't tell me anything about this.. appears to be related to SELinux, but it's disabled in the box. Any idea about thi

Re: [EMAIL PROTECTED] Needing help with mod_proxy

2008-01-02 Thread Bryan Richardson
Thanks for responding! I'll give this a go and let you know how it works. Thanks again! -- BTR On Jan 2, 2008 6:02 AM, Axel-Stephane SMORGRAV < [EMAIL PROTECTED]> wrote: > There may be conflicts between mod_rewrite and mod_proxy wrt. the order in > which the filename to uri translation is done.

RE: [EMAIL PROTECTED] Virtual Hosts

2008-01-02 Thread Frank M. Ramaekers
I was having the same problem, only mine are different hosts not domains. How would you do them? (e.g. abc.domain.com def.domain.com and xyz.domain.com) TIA, Frank M. Ramaekers Jr. Systems Programmer MCP, MCP+I, MCSE & RHCE American Income Life Insurance Co. Phone: (254)761-

RE: [EMAIL PROTECTED] Needing help with mod_proxy

2008-01-02 Thread Axel-Stephane SMORGRAV
There may be conflicts between mod_rewrite and mod_proxy wrt. the order in which the filename to uri translation is done. Either one or the other may do the translation first. In Apache 2.2 the order is well-defined. In 2.0 the order may depend on the order in which the modules are loaded. So w