Re: [users@httpd] Run PHP Handler after running my handler Apache

2016-07-19 Thread Amlaan Kar
, and mod_rewrite do not work here as I am reading the query string parameter from a xml file and thus cannot declare it in the configuration file. However, it would be really helpful if you would help me understand how a module's processing can be hooked up earlier in the cycle as this seems to

Re: [users@httpd] Run PHP Handler after running my handler Apache

2016-07-19 Thread Amlaan Kar
Sir, it would be great if you could elaborate on how to hook up the module's processing earlier in the cycle. I am parsing the query string and checking if the parameter's value is alphanumeric or not. So what do I use as condition in the clause? Besides, does not work. On Tue, Jul 19, 2016 at 1

Re: [users@httpd] Run PHP Handler after running my handler Apache

2016-07-18 Thread Dr James Smith
I use something similar - you should really be applying this in one of the AAA level of handlers (I use mod_perl rather than C handlers) but there are various places you can hook into the process Usually (and slightly naughtily) I add this to the access handler within mod_perl {it does the use

Re: [users@httpd] Run PHP Handler after running my handler Apache

2016-07-18 Thread Nick Kew
On Tue, 2016-07-19 at 10:45 +0530, Amlaan Kar wrote: > I have created a handler in Apache Sounds like your module's processing should be hooked up earlier in the cycle. It can then set the handler either to PHP or to its own page according to the outcome of whatever parsing it does. But given th

[users@httpd] Run PHP Handler after running my handler Apache

2016-07-18 Thread Amlaan Kar
I have created a handler in Apache which is supposed to parse the URL entered. If the conditions defined by the handler are satisfied, the handler returns DECLINED AND the page requested is open. If not, the handler displays "Rejected". However, the problem I am facing is that when I am trying to d