[EMAIL PROTECTED] help with apache2 and php3 support // mojo

2008-07-09 Thread Reveal MAP
hello! newbie at apache, lamp and generally linux stuff here. I have 2 problem: first one: .i would like to be able to run dialup_admin 2.0.5 on apache2. like indicated at: http://wiki.freeradius.org/Dialup_admin#Installing_.26_System_Configuration i did the following: ln -s /usr/share/dialup_ad

Re: [EMAIL PROTECTED] php and apache

2008-07-09 Thread Frank Gingras
Matt, Please read the following link: http://wiki.apache.org/httpd/DebianPHP Frank. Matt Funk wrote: Well, i tried to add that but to no avail. Plus i already have an AddType directive in the config file for php (though i am no sure if that has the same effect). Either way, it doesn't work

Re: [EMAIL PROTECTED] Possible to force SSL based on URL Variable?

2008-07-09 Thread Mike Soultanian
got it to work!! Here's the code that some people helped me out with: |RewriteCond %{HTTPS} off RewriteCond %{QUERY_STRING} ssl=true RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} RewriteCond %{HTTPS} on RewriteCond %{QUERY_STRING} !ssl=true RewriteCond %{REQUEST_METHOD} GET RewriteRule (.

Re: [EMAIL PROTECTED] php and apache

2008-07-09 Thread Matt Funk
Well, i tried to add that but to no avail. Plus i already have an AddType directive in the config file for php (though i am no sure if that has the same effect). Either way, it doesn't work. Any other ideas? matt ps: i did remember to restart the server ... On Wednesday 09 July 2008 17:16, San

Re: [EMAIL PROTECTED] Possible to force SSL based on URL Variable?

2008-07-09 Thread Mike Soultanian
Well, I think I kinda got it, but it doesn't seem to work right: RewriteEngine On RewriteCond %{QUERY_STRING} ssl=true [NC] RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} So, I would think that should search for anything after the path that contains ssl=true and if it finds it, it will rew

Re: [EMAIL PROTECTED] Problem while clustering Jboss

2008-07-09 Thread André Warnier
Ch Praveena wrote: * Hi all, * I am trying to cluster 2 jboss 4.2.2.GA instances and found this in the httpd server logs. And so, I could not cluster the instances properly. Please let me know where exactly I might have done the error?* [Wed Jul 09 18:10:27 2008][6637:3086218944

Re: [EMAIL PROTECTED] Forward proxies and aliases

2008-07-09 Thread André Warnier
Tavian Barnes wrote: Just an idea from a guy who really knows next to nothing about proxies : If - a proxy configuration allows you to selectively forward some requests to a selection of sites, but not to a local file - but what you want to do is to redirect some URLs to a local file then can yo

Re: [EMAIL PROTECTED] php and apache

2008-07-09 Thread Sander Temme
On Jul 9, 2008, at 3:49 PM, Matt Funk wrote: Anyway, I am running apache/2.2.9 on a debian etch box. My setup used to work but after a friend did a debian upgrade something seems to have gone wrong. Have your friend fix it. (: S. Oh, you're probably missing an AddHandler x-httpd-php .php

[EMAIL PROTECTED] php and apache

2008-07-09 Thread Matt Funk
Hi, i hope i am posting to the right list. Just upfront: I am by no means an expert with apache but i have never really had any issues setting up a web server. Anyway, I am running apache/2.2.9 on a debian etch box. My setup used to work but after a friend did a debian upgrade something seem

[EMAIL PROTECTED] Possible to force SSL based on URL Variable?

2008-07-09 Thread Mike Soultanian
Hey Everyone, I currently run phpbb and there is no facility to force SSL during logins only - it's only full-time SSL or not. Because I have to encrypt logins, I do the following in my .htaccess file: RewriteEngine On RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_UR

Re: [EMAIL PROTECTED] GET vs POST issue w/ a Proxy/Redirect

2008-07-09 Thread Nick Kew
On Wed, 9 Jul 2008 15:15:39 -0500 "Scott Moseman" <[EMAIL PROTECTED]> wrote: > Thanks for the information, Nick. That said, is there another way to > accomplish what I'm trying to do? The theory is that "remoteserver" > will host several /portal/ type subdirectories, and we will use > virtual ho

[EMAIL PROTECTED] ErrorDocument 403 does not work for document root

2008-07-09 Thread Jurrie Overgoor
Hello everyone, While I'm buidling (or updating) my site, I want to redirect my visitors to a special "work in progress" page. I'm trying to do this by using this .htaccess file Order Deny,Allow Deny from all Allow from 87.210.176.14 ErrorDocument 403 /wip/index.html Furthermore, I have a .h

Re: [EMAIL PROTECTED] GET vs POST issue w/ a Proxy/Redirect

2008-07-09 Thread Scott Moseman
>> >> ProxyPass / http://remoteserver/portal/ >> ProxyPassReverse / http://remoteserver/portal/ >> RewriteCond %{REQUEST_URI} ^/portal/(.*) >> RewriteRule ^/portal/(.*) /$1 [R] >> >> >> Thanks for the information, Nick. That said, is there another way to accomplish what I'm trying to do? The th

Re: [EMAIL PROTECTED] Forward proxies and aliases

2008-07-09 Thread Tavian Barnes
> Just an idea from a guy who really knows next to nothing about proxies : > If > - a proxy configuration allows you to selectively forward some requests to a > selection of sites, but not to a local file > - but what you want to do is to redirect some URLs to a local file > > then can you not set

Re: [EMAIL PROTECTED] Forward proxies and aliases

2008-07-09 Thread André Warnier
Just an idea from a guy who really knows next to nothing about proxies : If - a proxy configuration allows you to selectively forward some requests to a selection of sites, but not to a local file - but what you want to do is to redirect some URLs to a local file then can you not set up a local

Re: [EMAIL PROTECTED] GET vs POST issue w/ a Proxy/Redirect

2008-07-09 Thread Nick Kew
On Wed, 9 Jul 2008 11:28:37 -0500 "Scott Moseman" <[EMAIL PROTECTED]> wrote: > ProxyPass / http://remoteserver/portal/ > ProxyPassReverse / http://remoteserver/portal/ > RewriteCond %{REQUEST_URI} ^/portal/(.*) > RewriteRule ^/portal/(.*) /$1 [R] > > Website form: > > > > Logins fail (packet

[EMAIL PROTECTED] segfault (11) - Apache 2.2.9

2008-07-09 Thread Salvator*eL*arosa
Hello everyone, Until a short time ago (version 2.2.8 Apache) could see all files and php phtml in my browser. Ever since I updated Apache to the latest version (2.2.9) can I no longer see my files php, phtml. I do not understand what could have happened. I am doing several searches around but wit

[EMAIL PROTECTED] GET vs POST issue w/ a Proxy/Redirect

2008-07-09 Thread Scott Moseman
*** This proxy setup works for logins Apache config: ProxyPass / http://remoteserver/admin/ ProxyPassReverse / http://remoteserver/admin/ RewriteCond %{REQUEST_URI} ^/admin/(.*) RewriteRule ^/admin/(.*) /$1 [R] Website form: Logins work (packet captures show a POST was made). *** This proxy

Re: [EMAIL PROTECTED] Using rewrite to forward the request

2008-07-09 Thread Bradley Giesbrecht
Holy cow. Did I do that. I did! I hit reply with the wrong email select. How embarassing. //Brad On Jul 9, 2008, at 9:22 AM, Bradley Giesbrecht wrote: Actually this is a good use of Chrome. Chrome has stock images. Well at least one. //brad On Jul 9, 2008, at 8:51 AM, Mohit Anchlia wrote:

Re: [EMAIL PROTECTED] Using rewrite to forward the request

2008-07-09 Thread Bradley Giesbrecht
Actually this is a good use of Chrome. Chrome has stock images. Well at least one. //brad On Jul 9, 2008, at 8:51 AM, Mohit Anchlia wrote: We have a web server that redirects traffic to app server using mod_jk load balancer. Now I need to do the following: 1. If request comes from URL /AB

[EMAIL PROTECTED] Using rewrite to forward the request

2008-07-09 Thread Mohit Anchlia
We have a web server that redirects traffic to app server using mod_jk load balancer. Now I need to do the following: 1. If request comes from URL /AB and content of URL /AB has content in certain format then forward it to mod_jk otherwise forward it to some other URL (external system in our case

[EMAIL PROTECTED] blank pages served when mod_cache is used on apache 2.2.8

2008-07-09 Thread rossputin
Hi, I am hoping someone can point me to documentation on how to fix a problem I am experiencing. I am using mod_disk_cache with the following settings: CacheDefaultExpire 3600 CacheRoot /var/cache/apache2/mod_disk_cache CacheEnable disk / CacheMaxFileSize 2000 CacheDirLevels 5 CacheDirLengt

Re: [EMAIL PROTECTED] Forward proxies and aliases

2008-07-09 Thread Tavian Barnes
On Tue, Jul 8, 2008 at 2:03 PM, Nick Kew <[EMAIL PROTECTED]> wrote: > On Tue, 8 Jul 2008 13:48:54 -0600 > "Tavian Barnes" <[EMAIL PROTECTED]> wrote: > >> But that's a reverse proxy, not a forward one. I'm attempting to use >> an Apache server as a proxy for my web browser, that uses a local copy >

[EMAIL PROTECTED] Config error

2008-07-09 Thread Vijay
Hi When am doing configure am getting these errors. performing libtool configuration... /home/kodiak/httpd-2.2.9/srclib/apr/configure: line 9945: syntax error near unexpected token `lt_decl_varnames,' /home/kodiak/httpd-2.2.9/srclib/apr/configure: line 9945: `lt_if_append_uniq(lt_decl_varnames, SED

Re: [EMAIL PROTECTED] suExec & vhost problem

2008-07-09 Thread Nick Wiltshire
On July 8, 2008 06:30:01 pm Res wrote: > On Tue, 8 Jul 2008, Nick Wiltshire wrote: > > Hi list, > > > > I'm trying to set up suExec with virtual hosts, and I am either going > > about this all wrong, or I have found a bug. > > > > Given the following vhost: > > > > > > SuexecUserGroup example.

[EMAIL PROTECTED] memory problem with apache on Linux

2008-07-09 Thread Malka Cymbalista
We are running apache 2.2.6 with mod_perl 2.0.3 on a 64bit Linux machine. We have recently been experiencing some very strange problems. Every now and then (and we cannot find any consistency), the server slows down to a crawl and gets stuck for a while (it can be up to 10 minutes) and then so

Re: [EMAIL PROTECTED] Request processing/logging according to HTTP GET/POST parameter

2008-07-09 Thread Samir Ghodasara
Hi, Thanks you very much. I found script from below URL for piped logs and modified according to my requirement. http://www.gossamer-threads.com/lists/apache/users/204847?search_string=mod_log_mysql;#204847 Regards, Samir. On Wed, Jul 9, 2008 at 5:16 AM, Rich Schumacher <[EMAIL PROTECTED]> wr

AW: [EMAIL PROTECTED] Strange compile / build problem: Apache 2.2.9 under Solaris 10 SPARC

2008-07-09 Thread Wulf Kaiser
Hi Igor, I did as you suggested. buildconf & configure worked fine, but then during make ... *** Error code 1 make: Fatal error: Command failed for target `ldap/apr_ldap_stub.lo' Current working directory /local/src/apache/httpd-2.2.9/srclib/apr-util *** Error code 1 The following command caused

Re: [EMAIL PROTECTED] Can I configure a load balancer using https ?

2008-07-09 Thread Krist van Besien
On Tue, Jul 8, 2008 at 23:39, Jorge Medina <[EMAIL PROTECTED]> wrote: > Hi, > > Is it possible to configure Apache as a reverse proxy that will pass > a request to any of the servers in a cluster using HTTPS? > > Basically I want to know if it possible to configure Apache as a > reverse proxy (

[EMAIL PROTECTED] UserDir Problem...

2008-07-09 Thread Agus
Hi guys.. I am having a hard time configuring userdir in my freebsd apache22. My home structure is as follows.. /home/[a-z]/[a-z]/user.. That is..if the user's name is peter..then his home would be /home/p/e/peter/ Now when i enabled the user dir and tried it with a test user in /home/test it