[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] [RAQ4] PHP_AUTH_USER
- Subject: Re: [cobalt-users] [RAQ4] PHP_AUTH_USER
- From: Lieven Govaerts <govaertsl@xxxxxxxxxx>
- Date: Fri Sep 29 12:31:28 2000
- Organization: Ebitec nv
- List-id: Mailing list for users to share thoughts on Cobalt products. <cobalt-users.list.cobalt.com>
Jake,
the code works great on our server.
As others have said, this error indicates that other characters,
like spaces or html are already printed out. Since you say that the
php code is starting on the first line, the only thing I see that can
be wrong is a possible file that is automatically included before
all other php code.
Check php.ini for the auto_prepend_file directive, try to set it
to none to see what happens.
If you don't have access to the ini file, use this php code to check
the serversettings:
<?php
phpinfo();
?>
Hope this helps,
Lieven.