Estoy haciendo un login de usuarios ya tengo la base de datos con registros y el problema esta al momento de hacer login no se si mi script para hacer login tenga algun error y ya me canse el error que me aparece es el siguiente:
Código:
Y este es el script:Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at dominio.com on line 2 Warning: Cannot modify header information - headers already sent by (output started at dominio.com on line 6
Código PHP:
<?php
session_start();
require_once "library/includes/login.class.php";
if ((!$_POST['user']) || (!$_POST['pass'])) {
header("location: ./?fuseaction=customers§ion=panel&action=login");
exit;
} $loginSystem = new LoginSystem();
if ($loginSystem->doLogin($_POST['user'],$_POST['pass'])) {
header("location: ./");
} else {
header("location: ./?fuseaction=customers§ion=panel&action=login");
exit;
}
?>
Espero que me puedan ayudar, Gracias