Status
Not open for further replies.

darkfelon

Active Member
203
2009
20
0
i was coding an admin panel for my facebook phisher and got most of it all set but when i try to login it is showing me errors:
Code:
Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at cheatking/htdocs/admin.php:1) in cheatking/htdocs/admin.php on line 27

Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at cheatking/htdocs/admin.php:1) in cheatking/htdocs/admin.php on line 27

Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at cheatking/htdocs/admin.php:1) in cheatking/htdocs/admin.php on line 27

Notice: Undefined index: admin in cheatking/htdocs/admin.php on line 28

Notice: Undefined index: passwd in cheatking/htdocs/admin.php on line 28

Notice: A session had already been started - ignoring session_start() in cheatking/htdocs/admin.php on line 49

Warning: Cannot modify header information - headers already sent by (output started at cheatking/htdocs/admin.php:1) in cheatking/htdocs/admin.php on line 54


Is there anyone that code help me fix these :)
 
2 comments
Code:
Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at cheatking/htdocs/admin.php:1) in cheatking/htdocs/admin.php on line 27
Looks like there's an unintended space or new line character at the beginning of admin.php, before <?php .
 
Status
Not open for further replies.
Back
Top