[EMAIL PROTECTED] mod_rewrite block self

2006-04-24 Thread switch grass
how would i block my own site from its files?i can use mod_rewrite to prevent hotlinking from other sites, but when i try to block myself it doesn't work.what i am trying to do is use my first site( site1.com) to host images that only my second site can access(site2.com).is this possible?

Re: [EMAIL PROTECTED] Making Apache 2.2 work with Weblogic 8.1 (both on Solaris 9)

2006-04-24 Thread Richard de Vries
I had a similar situation with WebSphere. It's just not compatible. I would definately recommend asking for a Apache 2.2 WebLogic plugin, but there is a good chance they won't have one for you. So, in the end you may have to back down to Apache 2.0.55. R --- Joshua Slive <[EMAIL PROTECTED]> w

Re: [EMAIL PROTECTED] Making Apache 2.2 work with Weblogic 8.1 (both on Solaris 9)

2006-04-24 Thread Joshua Slive
On 4/24/06, D J Patel <[EMAIL PROTECTED]> wrote: > > I installed Apache 2.2 (using GNU gcc) on Solaris 9, Bea Weblogic8.1 on > Solaris on two different servers. Both products works fine independently. > > Now I followed directions to configure the the Apache HTTP Server plug-in I > did the followin

[EMAIL PROTECTED] Making Apache 2.2 work with Weblogic 8.1 (both on Solaris 9)

2006-04-24 Thread D J Patel
I installed Apache 2.2 (using GNU gcc) on Solaris 9, Bea Weblogic8.1 on Solaris on two different servers. Both products works fine independently.   Now I followed directions to configure the the Apache HTTP Server plug-in I did the following   1) Copied /opt/bea/weblogic81/server/lib/solaris

RE: [EMAIL PROTECTED] maintaining session after mod_rewrite

2006-04-24 Thread Browne, Anthony A
The links are not broken, but I solved this issue another way. Apparently, mod_rewrite will erase the query string if you place a '?' after the substitution, otherwise it will append it. I needed this with a redirect (R) instead of proxy (P). Thanks for the help though, I appreciate it. --

Re: [EMAIL PROTECTED] mod_access and Client IP's from Load Balancers

2006-04-24 Thread Joshua Slive
On 4/24/06, Jeff Nokes <[EMAIL PROTECTED]> wrote: > Thanks for the reply! > > Yes, that is correct. > But since I cannot use arbitrary headers, these options aren't viable for me. > Basically, I need to restrict the same Location, via a single restriction > (preferably via IP subnets), using an

Re: [EMAIL PROTECTED] mod_access and Client IP's from Load Balancers

2006-04-24 Thread Jeff Nokes
Thanks for the reply! Yes, that is correct. But since I cannot use arbitrary headers, these options aren't viable for me. Basically, I need to restrict the same Location, via a single restriction (preferably via IP subnets), using an explicit defined Header from 50% of web traffic [Netscaler],

Re: [EMAIL PROTECTED] maintaining session after mod_rewrite

2006-04-24 Thread Joshua Slive
On 4/24/06, Anthony Browne <[EMAIL PROTECTED]> wrote: > Hello everyone, > > I have a question about maintaining the session after mod_rewrite > successfully applies a rewrite rule. Currently, I have a bunch of links that > look like this: > http://www.serverName.org/external.html?link=http:

[EMAIL PROTECTED] maintaining session after mod_rewrite

2006-04-24 Thread Anthony Browne
Hello everyone, I have a question about maintaining the session after mod_rewrite successfully applies a rewrite rule. Currently, I have a bunch of links that look like this: http://www.serverName.org/external.html?link=http://www.anotherServer.com/ I can successfully extract the 'www.anot

Re: [EMAIL PROTECTED] png images are broken with reverse proxy

2006-04-24 Thread Joshua Slive
On 4/24/06, Vects <[EMAIL PROTECTED]> wrote: > Hi there, > I have a problem with mod_proxy, png images are broken. I found that > apache removes '\n\r' (hex 0a0d) from png files. Is there anyway to > prevent apache to do that or I need to fix png files? Apache does not, by default, change any cont

Re: [EMAIL PROTECTED] mod_access and Client IP's from Load Balancers

2006-04-24 Thread Joshua Slive
On 4/24/06, Jeff Nokes <[EMAIL PROTECTED]> wrote: > > > > order deny,allow > deny from all > allow from 10 172.16 192.168 > mod_rewrite or mod_setenvif can do access control based on arbitrary headers. So assuming you have an X-Remote-IP header, you could

Re: [EMAIL PROTECTED] Accessing POST data using mod_ext_filter?

2006-04-24 Thread Nick Kew
On Monday 24 April 2006 20:33, Redding, Jason wrote: > I'm using a perl script as my external filter (mod_ext_filter) and I > need to find out how to access POST data from within this filter. Simple answer: you can't. POST data is input data; ext_filter gives you output data. Alternative answer:

Re: [EMAIL PROTECTED] LDAP authentification from 2.0 to 2.2

2006-04-24 Thread Falko Zurell
Hello Matteo,I think you got two errors in your configuration:Require valid-usermust beRequire ldap-user if you use LDAP-Authentication.And since Apache 2.2.0 You have to tell apache which basic provider to use:AuthBasicProvider ldapmaybe this helps...kind regardsAm 24.04.2006 um 17:53 schrieb Matt

Re: [EMAIL PROTECTED] Accessing POST data using mod_ext_filter?

2006-04-24 Thread Joshua Slive
On 4/24/06, Redding, Jason <[EMAIL PROTECTED]> wrote: > I'm using a perl script as my external filter (mod_ext_filter) and I > need to find out how to access POST data from within this filter. For this, you need an input filter (mode=input). If what you want to do is affect both the request and t

[EMAIL PROTECTED] mod_access and Client IP's from Load Balancers

2006-04-24 Thread Jeff Nokes
Hi, I'm running a mod_perl/Mason app at a fairly large company. We have two pools of machines, each pool with it's own pair of load balancers. One pool uses F5 BigIP, and the other uses Netscaler. The problem that I'm having is that the Apache variable REMOTE_ADDR seems to correctly represent

[EMAIL PROTECTED] Accessing POST data using mod_ext_filter?

2006-04-24 Thread Redding, Jason
I'm using a perl script as my external filter (mod_ext_filter) and I need to find out how to access POST data from within this filter. Platform: SuSe 9.2 Apache version: 2.2.0 --- Jason CCBC - The official User-To-Us

Re: [EMAIL PROTECTED] SHARED_CORE

2006-04-24 Thread Krist van Besien
On 4/24/06, William A. Rowe, Jr. <[EMAIL PROTECTED]> wrote: > Krist van Besien wrote: > > > > It apears that compiling using the "SHARED_CORE" rule involves adding > > the --enable-rule=SHARED_CORE to the configure command's options. > > > > What I would like to know is though, what this does. Doe

Re: [EMAIL PROTECTED] SHARED_CORE

2006-04-24 Thread William A. Rowe, Jr.
Krist van Besien wrote: It apears that compiling using the "SHARED_CORE" rule involves adding the --enable-rule=SHARED_CORE to the configure command's options. What I would like to know is though, what this does. Does this mean I can provide the httpd daemon with an additional directory to loa

[EMAIL PROTECTED] Trouble with Apache ASP

2006-04-24 Thread maillists
Hi, I am having some trouble with my ASP setup; I am setting up a software package called "Freeside" and I have all that set up right, but when I access a page, this is what returns in my browser: Errors Output 1. Not running uid freeside! at /usr/local/etc/freeside/asp-global//glo

Re: [EMAIL PROTECTED] Recognize embed request from html page?

2006-04-24 Thread chiaki
No. src="mysite.com /movie.swf" will request the flash file with a regular HTTP request, the max information you'll (sometimes) be able to get is the HTTP-Referer, wich can tell you the site where the flash is refered from and maybe used into. There's no way to tell your apache in wich case or t

Re: [EMAIL PROTECTED] LDAP authentification from 2.0 to 2.2

2006-04-24 Thread Matt Bockol
Hi Matteo, I've run into the same error, here's an example config that works for us: AuthType Basic AuthName "LDAP Auth" AuthBasicProvider ldap AuthLDAPBindDN cn=blah,dc=blah2,dc=blah3 AuthLDAPBindPassword "" AuthLDAPURL "ldaps://similar to yours" AuthzLDAPAuthoritative off

Re: [EMAIL PROTECTED] Recognize embed request from html page?

2006-04-24 Thread switch grass
eg: if i were to embed a flash movie like so on some-other-site.com  "mysite.com /movie.swf">". can apache on mysite.com tell that the requested file is embeded?On 4/24/06, Nick Kew <[EMAIL PROTECTED] > wrote:On Monday 24 April 2006 03:12, switch grass wrote:> is there a way for apache to recogniz

[EMAIL PROTECTED] LDAP authentification from 2.0 to 2.2

2006-04-24 Thread Matteo Corti
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I posted the same question on alt.apache.configuration some time ago but got no answer and decided to try also here. I am setting up a test server with apache 2.2.0 and having trouble with LDAP authentification. This is (or was in 2.0) my

[EMAIL PROTECTED] png images are broken with reverse proxy

2006-04-24 Thread Vects
Hi there, I have a problem with mod_proxy, png images are broken. I found that apache removes '\n\r' (hex 0a0d) from png files. Is there anyway to prevent apache to do that or I need to fix png files? Thanks, Alexc. - The offici

[EMAIL PROTECTED] SHARED_CORE

2006-04-24 Thread Krist van Besien
In apache 2.0, httpd has (according to the documentation) the following option: -R directory When the server is compiled using the SHARED_CORE rule, this specifies the directory for the shared object files. It apears that compiling using the "SHARED_CORE" rule involves adding the --enable-rul

[EMAIL PROTECTED] Apache 2.2 and Active Directory

2006-04-24 Thread Falko Zurell
Hi *, here again my question: Has anyone successfully configured Apache 2.2 to authenticate against a MS Active Directory Server (via mod_authnz_ldap)? Please give a note to me. Thanks! --- F a l k o Z u r e l l - mail: mailto:[EMAIL P

RE: [EMAIL PROTECTED] URL Rewriting trouble with Apache 2.2

2006-04-24 Thread S.Hayles
On Fri, 21 Apr 2006, Darren Hall wrote: This fixed my redirection for just this virtual host. Do I need to repeat this in each virtual host on the server, or can I put the redirect code in another location so it will apply to all virtual hosts on this server? RedirectMatch is allowed at the se

Re: [EMAIL PROTECTED] Recognize embed request from html page?

2006-04-24 Thread Nick Kew
On Monday 24 April 2006 03:12, switch grass wrote: > is there a way for apache to recognize a request from the tags of > an html page? There's no tag in any published HTML version. You must be using some proprietary vendor-markup. Is the kind of processing described in the examples at http://ap