RE: [EMAIL PROTECTED] + in URL

2005-11-20 Thread Jacob Eshed
Title: RE: [EMAIL PROTECTED] + in URL Hi Bill, Thank you very much for your brief and helpful explanation. Sincerely, Jacob Eshed -Original Message- From: William A. Rowe, Jr. [mailto:[EMAIL PROTECTED]] Sent: Monday, November 21, 2005 6:35 AM To: users@httpd.apache.org Subject:

Re: [EMAIL PROTECTED] + in URL

2005-11-20 Thread William A. Rowe, Jr.
Jacob Eshed wrote: Hi Bill, Thanks for your prompt answer. The '&sub_cat=Art + Design' was entered as parameter in Microsoft Internet Browser 6. as a url address: <_http://server.name:port/V/?func=some_function&mode=category&category=Category Name&sub_cat=Art + Design&restricted=all_

Re: [EMAIL PROTECTED] rewrite only for certain originating IPs

2005-11-20 Thread Joshua Slive
On 11/20/05, Prabhat Kumar (IT) <[EMAIL PROTECTED]> wrote: > I have a simple rewrite rule that sends requests meant for one domain to > another. Is there a way to only perform this redirection for only a certain > originating IP? There will probably be a list of 10 IPs for which this > redirection

Re: [EMAIL PROTECTED] mod_rewrite decodes %20 -> 400 bad request

2005-11-20 Thread ogjunk-httpd1
Hi, --- Robert Ionescu <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] wrote: > > One more thing > > > > --- André Malo <[EMAIL PROTECTED]> wrote: > > > >> * <[EMAIL PROTECTED]> wrote: > >> > >>> Hi, > >>> > >>> I "solved" this problem by substituting "%20" with "+" > characters. > >>> Appa

[EMAIL PROTECTED] rewrite only for certain originating IPs

2005-11-20 Thread Prabhat Kumar \(IT\)
Title: rewrite only for certain originating IPs I have a simple rewrite rule that sends requests meant for one domain to another. Is there a way to only perform this redirection for only a certain originating IP? There will probably be a list of 10 IPs for which this redirection will have t

[EMAIL PROTECTED] Problem with the fwrite function (not as simple as it sounds though)

2005-11-20 Thread Łukasz Hejnak
Hello, First of all sorry for my english, trying my best :] I posted this also to PHP General, but although help, the problem is still not solved. Anyway I think this is more apache related than php, that's why I post this here. The story is: I'm running a small webserver and to monitor the a

RE: [EMAIL PROTECTED] + in URL

2005-11-20 Thread Jacob Eshed
Title: RE: [EMAIL PROTECTED] + in URL Hi Bill, Thanks for your prompt answer. The '&sub_cat=Art + Design' was entered as parameter in Microsoft Internet Browser 6. as a url address:

Re: [EMAIL PROTECTED] + in URL

2005-11-20 Thread William A. Rowe, Jr.
Jacob Eshed wrote: Hi, A plus sign (+) in a url is converted to space (%20). Yup, that's what the HTTP/1.0 (and 1.1) rules are for URI's. '&sub_cat=Art + Design' is converted to '&sub_cat=Art%20+%20Design' by the browser but the apache output received is '&sub_cat=Art%20%20%20Design' That'

[EMAIL PROTECTED] + in URL

2005-11-20 Thread Jacob Eshed
Title: + in URL Hi, A plus sign (+) in a url is converted to space (%20). '&sub_cat=Art + Design' is converted to '&sub_cat=Art%20+%20Design' by the browser but the apache output received is '&sub_cat=Art%20%20%20Design' How can I force apache not to parse the '+' sign? Thanks. Sincer