身份验证 laravel 4.2 无法工作
Posted
技术标签:
【中文标题】身份验证 laravel 4.2 无法工作【英文标题】:Authentication laravel 4.2 cannot work 【发布时间】:2015-04-27 10:29:23 【问题描述】:身份验证 laravel 无法在我的程序上运行。我用谷歌搜索但没有解决这个问题。我的程序是
LoginController@auth
public function auth()
$username = Input::get('username');
$password = Input::get('pass');
if(Auth::attempt(array('id' => $username, 'password' => $password)))
echo "Work";
else
echo "Bad";
Authtable.php
<?php
use Illuminate\Auth\UserInterface;
use Illuminate\Auth\Reminders\RemindableInterface;
class Authtable extends Eloquent implements UserInterface, RemindableInterface
protected $table = 'authtable';
protected $hidden = array('password');
/**
* Get the unique identifier for the user.
*
* @return mixed
*/
public function getAuthIdentifier()
return $this->getKey();
/**
* Get the password for the user.
*
* @return string
*/
public function getAuthPassword()
return $this->password;
/**
* Get the e-mail address where password reminders are sent.
*
* @return string
*/
public function getReminderEmail()
return $this->email;
public function getRememberToken()
return $this->remember_token;
public function setRememberToken($value)
$this->remember_token = $value;
public function getRememberTokenName()
return 'remember_token';
auth.php
'driver' => 'eloquent',
'model' => 'Authtable',
'table' => 'authtable',
并且可以为空的 remember_token(varchar(100)), password(varchar(60)) 但仍然不起作用。请给出一些解决方案。
【问题讨论】:
你能发布你的身份验证配置文件吗 【参考方案1】:我对此有过不好的经历。
Composer dump-autoload
确保型号名称正常工作。
检查型号名称是否没有冲突
检查“authtable”列名。这些列是否包含您输入的内容?'id' => $username, 'password' => $password
【讨论】:
以上是关于身份验证 laravel 4.2 无法工作的主要内容,如果未能解决你的问题,请参考以下文章
有没有办法在没有数据库的情况下使用 laravel 4.2 身份验证?
Laravel 身份验证在 laravel 5.3 中无法正常工作