Yeni Setiawan wrote:
On 5/30/07, *Sebe* <sebastian@xxxxxxxx <mailto:sebastian@xxxxxxxx>>
wrote:
I run some scripts via php (cgi) which sends output to another
file, but
it's including unwanted cookie header, etc in the outfile.
example:
php /home/dev/script.php > /home/production/feeds/news.xml 2>&1
and at the top of news.xml i get:
X-Powered-By: PHP/5.2.2
Set-Cookie: .....
Set-Cookie: .....
Cache-Control: private
Content-Type: text/html; charset=ISO-8859-1
i turned off expose php which gets rid of the x-powered-by but what
about the rest?
try to use quiet mode by using -q option as follow:
php -q /home/dev/script.php > /home/production/feeds/news.xml 2>&1
i tried using -q
still shows the headers.. this problem started when i switched to php cgi.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php