Re: [EMAIL PROTECTED] block endless loop

2008-08-19 Thread Rich Schumacher
On Thu, Aug 14, 2008 at 6:55 AM, Alexandru David Constantinescu < [EMAIL PROTECTED]> wrote: > I' am using Apache 1.3 and today I observe that one of the users > (virtual hosts) site generate a lot of requests. I look into the client > source code and I see that the index.php has a endless loop s

Re: [EMAIL PROTECTED] Changing headers with mod_headers

2008-08-08 Thread Rich Schumacher
> > Hi, > > Do you know if it is possible to modify http and https headers with the > mod_headers module ?? > > Thanks a lot, > > Sergio > Yes, that is exactly what this module was created for. I've recently used this mod in conjunction with mod_rewrite to do some A/B testing with different Docum

Re: [EMAIL PROTECTED] different kinds of proxies

2008-07-24 Thread Rich Schumacher
On Wed, Jul 23, 2008 at 8:50 AM, André Warnier <[EMAIL PROTECTED]> wrote: > Hi. Me again butting in, because I am confused again. > When users workstations within a company's local network have browsers > configured to use an internal "http proxy" in order to access Internet HTTP > servers, is thi

Re: [EMAIL PROTECTED] different kinds of proxies

2008-07-24 Thread Rich Schumacher
On Tue, Jul 22, 2008 at 11:51 PM, <[EMAIL PROTECTED]> wrote: > Thank you. I was wondering if anybody noticed the question at the end > of my post. I am truly interested in the answer. > > How would you have handled this if forward proxies did not exist? > Your answer was the forward proxy helped

Re: [EMAIL PROTECTED] different kinds of proxies

2008-07-22 Thread Rich Schumacher
Solprovider, While I agree with your sentiment that forward proxies can be very dangerous, I think you are jumping the gun with your statement doubting they have "any legitimate use today." Here is a a real-world example that I use at my current job. My employer operates a series of websites tha

Re: [EMAIL PROTECTED] How to prevent apache proxy abuse?

2008-07-18 Thread Rich Schumacher
t;[EMAIL PROTECTED]> wrote: > Thanks for the reply. > > I use shorewall firewall. I will try to configure it to drop these hosts. > Is there some way to deny these accesses with rewriterule? > > If yes how it should looks like? > > > Quoting Rich Schumacher <[EMAIL PROTEC

Re: [EMAIL PROTECTED] How to prevent apache proxy abuse?

2008-07-18 Thread Rich Schumacher
If you are seeing nothing but abuse from these hosts your best bet would be to block these at the router/firewall level. If you don't have access to that, use iptables on the web server to silenty drop any connections from them. On Fri, Jul 18, 2008 at 12:08 PM, Ali Nebi <[EMAIL PROTECTED]> wrote

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

2008-07-08 Thread Rich Schumacher
ipt as > request listener and script will have access to request > parameter/Header/URL. > > Thanks & Regards, > Samir. > > > > On Mon, Jul 7, 2008 at 10:27 PM, Rich Schumacher <[EMAIL PROTECTED]> > wrote: > >> Hey Samir, >> >> Have you

Re: [EMAIL PROTECTED] Apache crashes when using WHILE loop to traverse SQL query results

2008-07-07 Thread Rich Schumacher
row the problem down to *$row = > mysqli_fetch_assoc($result);* > For some reason this is causing the crash. Would there be any reason that > this function cant be found perhaps? I really have no clue!!! > > > > On Mon, Jul 7, 2008 at 6:39 PM, Rich Schumacher <[EMAIL PROTECTED]> > wrote:

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

2008-07-07 Thread Rich Schumacher
Hey Samir, Have you looked into mod_log_sql or mod_log_mysql? I don't know the specifics, but they look like they might accomplish what you need. If not, you can always create your own custom logging script and direct Apache to use that. Cheers, Rich On Sun, Jul 6, 2008 at 10:22 PM, Samir Gho

Re: [EMAIL PROTECTED] Apache crashes when using WHILE loop to traverse SQL query results

2008-07-07 Thread Rich Schumacher
Bonger, Are you using Apache with the Worker MPM? If so, that could be your problem. It is fairly well documented and highly discussed that the Worker MPM on *nix is not a good combination, as explained here: http://us2.php.net/manual/en/faq.installation.php#faq.installation.apache2. The problem

[EMAIL PROTECTED] Cookie based AB testing with different document roots

2008-06-23 Thread Rich Schumacher
eem to find anything that will satisfy these requirements. I know that this would be much easier to just have separate boxes for each version of the site; trust me, I've tried suggesting that, but this is currently not an option. Thanks in advance, Rich Schumacher