[PHP-DEV] X-Powered-by

2001-03-14 Thread Mark Taylor
Dear all, When I upload my php4 work to my ISP, the following is displayed at the beginning of each php page. "X-Powered-By: PHP/4.0.4pl1 Content-type: text/html" Now, after reading numerous support pages, I know that this can be turned off if php is in 'quiet' mode. Having emailed this

Re: [PHP-DEV] X-Powered-by

2001-03-14 Thread Zeev Suraski
At 11:22 14/3/2001, Mark Taylor wrote: Dear all, When I upload my php4 work to my ISP, the following is displayed at the beginning of each php page. "X-Powered-By: PHP/4.0.4pl1 Content-type: text/html" Now, after reading numerous support pages, I know that this can be turned off if php is in

Re: [PHP-DEV] X-Powered-by

2001-03-14 Thread Egon Schmid (@work)
Mark Taylor wrote: When I upload my php4 work to my ISP, the following is displayed at the beginning of each php page. "X-Powered-By: PHP/4.0.4pl1 Content-type: text/html" Tell your ISP, he should set "expose_php = Off" in php.ini. -Egon -- SIX Offene Systeme GmbH

Re: [PHP-DEV] X-Powered-by

2001-03-14 Thread Zeev Suraski
At 11:39 14/3/2001, Egon Schmid (@work) wrote: Mark Taylor wrote: When I upload my php4 work to my ISP, the following is displayed at the beginning of each php page. "X-Powered-By: PHP/4.0.4pl1 Content-type: text/html" Tell your ISP, he should set "expose_php = Off" in php.ini. The

Re: [PHP-DEV] X-Powered-by

2001-03-14 Thread Sascha Schumann
(note that this thread is off-topic. This list is about developing PHP, not developing with PHP. Further emails on this topic should be send to php-general.) A possible cause is passing a string to header (or SetCookie) which contains a CRLF. header("Foo: bar\r\n");

Re: [PHP-DEV] X-Powered-by

2001-03-14 Thread Boian Bonev
hi, header("Foo: bar\r\n"); Get rid of that CRLF and it should work. this is an idea. what about if header stripped all \n \r? i cant see a reasonable use of \n in a header line... b. -- PHP Development Mailing List http://www.php.net/ To unsubscribe, e-mail: [EMAIL PROTECTED] For