Hello,
I know that you guys are familiar with this, but I tried almost every solution I googled, but no chance getting it wroked, here is the error.
Warning: session_start() [function.sessio n-start]: Cannot send session cookie - headers already sent by (output started at /home/admin/public_html/xxx/xxx/userclass.php:6 2) in /home/admin/public_html/xxx/xxx/sessiondata.php on line 28
Warning: session_start() [function.sessio n-start]: Cannot send session cache limiter - headers already sent (output started at /home/admin/public_html/xxx/xxx/userclass.php:6 2) in /home/admin/public_html/xxx/xxx/sessiondata.php on line 28
and here is the sessiondata.php lines, that have the error.
[code=php]
if ($sessionFileDi r != "") {
session_save_pa th($sessionFile Dir);
}
if ($SID == "") {
session_start() ;
$SID = session_id();
} else {
session_start($ SID);
}
[/code]
Hope I can get any help soon.
I know that you guys are familiar with this, but I tried almost every solution I googled, but no chance getting it wroked, here is the error.
Warning: session_start() [function.sessio n-start]: Cannot send session cookie - headers already sent by (output started at /home/admin/public_html/xxx/xxx/userclass.php:6 2) in /home/admin/public_html/xxx/xxx/sessiondata.php on line 28
Warning: session_start() [function.sessio n-start]: Cannot send session cache limiter - headers already sent (output started at /home/admin/public_html/xxx/xxx/userclass.php:6 2) in /home/admin/public_html/xxx/xxx/sessiondata.php on line 28
and here is the sessiondata.php lines, that have the error.
[code=php]
if ($sessionFileDi r != "") {
session_save_pa th($sessionFile Dir);
}
if ($SID == "") {
session_start() ;
$SID = session_id();
} else {
session_start($ SID);
}
[/code]
Hope I can get any help soon.
Comment