"Warning: Cannot add header information - headers already sent by (output
started at c:\program files\apache group\apache\htdocs\web1\1.php:2) in
c:\program files\apache group\apache\htdocs\web1\1.php on line 6"

Seems to me that you have some HTML output (probably in the .INC file) and then
try to send a HEADER.
The Header *must* be the first thing you output, othervise you get the "header
already sent" error.

As for the session problem - it might be the temporary storage folder in which
the session data is stored that is in error / wrong.
Check the spelling of the path and make sure that the folder really exist.

That's my .2 $ worth ;-)

--

Michel Laine

--------------------------------------------------------------------

Web User wrote:

> Hi,
> There are problems with session and header();
> Please give me some advice.
> Thank you!
> Mike
>
> System: PHP4.06 + Apache 1.3.20 Win32 + Win98 (the session configurations
> are default in php.ini)
> when the 1.php is running, the IE shows 2 errors  as below:
>
> Warning: open(/tmp\sess_5176646ce5a800db9101970b80d507f6, O_RDWR) failed: m
> (2) in c:\program files\apache group\apache\htdocs\web1\1.php on line 2
>
> Warning: Cannot add header information - headers already sent by (output
> started at c:\program files\apache group\apache\htdocs\web1\1.php:2) in
> c:\program files\apache group\apache\htdocs\web1\1.php on line 6
>
> -------------------------------
> The scripts of 1.php: (1.php and 2.php are under the same base directory)
> <?
> session_start();
> require("html-head.inc");
> $name="user";
> session_register("name");
> header("Location: 2.php"); /* let the IE automatically turn to the 2.php */
> require("html-foot.inc");
> ?>
> -------------------------------
> The scripts of html-head.inc:
> <html>
> <head>
> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
> <title>page title</title>
> </head>
> <body>
>
>  -----
>  The scripts of html-foot.inc:
> </body>
> </html>


-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to