Reputation: 4509
Hi I am making a simple login in laravel and I get an error when I try to perform an authentication. It is a rather odd connection error
Conection
'mysql' => array(
'driver' => 'mysql',
'host' => 'Marsur',
'database' => 'database',
'username' => 'root',
'password' => 'root',
'charset' => 'utf8',
'collation' => 'utf8_unicode_ci',
'prefix' => '',
'options' => array(
PDO::ATTR_PERSISTENT => true,
),
),
Controller
public function doLogin(){
$rules = array('correo' => 'required|email',
'password' => 'required');
$validator = Validator::make(Input::all(), $rules);
if($validator->fails()){
return Redirect::to('usuario')
->withErrors($validator)// manda los errores al login
->withInput(Input::except('password')); //
}else{
$userData = array(
'Correo' => Input::get('correo'),
'Contrasena' => Input::get('password')
);
if(Auth::attempt($userData)){
echo 'bien';
}else{
return Redirect::to('login');
}
}
}
Model*
class Usuario extends Eloquent{
protected $table = 'Usuario';
protected $primaryKey = 'idUsuario';
protected $fillable = array('Nombre',
'Apellido',
'TipoUsuario',
'Contrasena',
'Correo',
'Telefono');
}
how can I fix it?
Upvotes: 0
Views: 7966
Reputation: 324620
Marsur
is almost certainly not a valid hostname.
Generally a hostname is an IP address, or localhost
. On some occasions you may refer to a remote server by its hostname, but in such a case it will have a name that looks like a web address.
So... fix that. If your database is on the same physical machine as the rest of your code, then you need localhost
.
Upvotes: 1