php-general Digest 26 Apr 2011 09:37:47 -0000 Issue 7284

2011-04-26 Thread php-general-digest-help
php-general Digest 26 Apr 2011 09:37:47 - Issue 7284 Topics (messages 312484 through 312489): Re: JavaScript Injection ??? 312484 by: Nathan Rixham 312487 by: Daniel Brown 312488 by: tedd Re: str_replace 312485 by: Nathan Rixham 312486 by: Nathan

[PHP] Improve server HTTP GET server response - HTTP 1.1 ?

2011-04-26 Thread Eli Orr (Office)
Dear PHP Gurus, I have wrote a service that respond to a client HTTP GET request with BLOB of data: http://mimmage.com/cms/client_initialize1.php?OPERATOR=MIRSID=23412341234OS=RIM The first time I call the HTTP GET it works very slow.. next calls it works much faster. Please advise how can

[PHP] Re: htaccess question

2011-04-26 Thread David Robley
Al wrote: I want to restrict access to all files except one on my site and in parent dir. Thought this should work; but it doesn't. Files * Order Deny,Allow Deny from all Allow from xx.36.2.215 /Files xx.36.2.215 is actual value IP This file makes a captcha image and is called with

[PHP] Re: htaccess question

2011-04-26 Thread Al
On 4/26/2011 5:54 AM, David Robley wrote: Al wrote: I want to restrict access to all files except one on my site and in parent dir. Thought this should work; but it doesn't. Files * Order Deny,Allow Deny from all Allow from xx.36.2.215 /Files xx.36.2.215 is actual value IP This file makes

Re: [PHP] Improve server HTTP GET server response - HTTP 1.1 ?

2011-04-26 Thread Ashley Sheridan
On Tue, 2011-04-26 at 12:37 +0300, Eli Orr (Office) wrote: Dear PHP Gurus, I have wrote a service that respond to a client HTTP GET request with BLOB of data: http://mimmage.com/cms/client_initialize1.php?OPERATOR=MIRSID=23412341234OS=RIM The first time I call the HTTP GET it works very

Re: [PHP] Improve server HTTP GET server response - HTTP 1.1 ?

2011-04-26 Thread Eli Orr (Office)
Dear Ash, I could not follow on how it can be faster using your advise. Seems you focus on how it could be slower using a random suffix each call to assure no caching is involved. Any practical advise or references/example how to make it faster for the initial call ? Any methods from the

Re: [PHP] Improve server HTTP GET server response - HTTP 1.1 ?

2011-04-26 Thread Govinda
Dear Ash, I could not follow on how it can be faster using your advise. Seems you focus on how it could be slower using a random suffix each call to assure no caching is involved. Any practical advise or references/example how to make it faster for the initial call ? Any methods

Re: [PHP] Improve server HTTP GET server response - HTTP 1.1 ?

2011-04-26 Thread Ashley Sheridan
On Tue, 2011-04-26 at 14:45 -0400, Govinda wrote: Dear Ash, I could not follow on how it can be faster using your advise. Seems you focus on how it could be slower using a random suffix each call to assure no caching is involved. Any practical advise or references/example how