VerifyCsrfToken.php第68行中的TokenMismatchException - 全新安装

时间:2018-02-06 00:03:08

标签: php laravel session laravel-5

我有一年以上的Laravel项目,一切都在我的环境中运作良好。 一周前我安装了一个新的HD,需要再次安装所有东西,laravel停止工作。

我团队中的其他开发人员正在使用该项目,我检查其他环境,一切看起来都一样。

当我尝试登录系统时(表单发布)我收到此错误:“VerifyCsrfToken.php第68行中的TokenMismatchException”

注意:我已经阅读了很多主题并尝试了很多解决方案,但没有任何工作。

注2:“storage / framework / session”文件夹有写入权限,我有很多会话文件。

注意3:在我的网络服务器中,一切正常。所以我认为这不是一个应用程序问题,而是一个环境问题。 (最大的问题是:我不知道什么是env问题= /

有谁知道发生了什么事?

我的环境:

操作系统:Mac OS High Sierra 10.13

PHP:7.1.7

Laravel:5.4.17

其他主题讲述的一些文件:

.env文件:

APP_ENV=local
APP_KEY=base64:kYGq9r2jM9FwWXg19ip+MioiHmfkXn/xD708KqBYAb4=
APP_DEBUG=true
APP_LOG_LEVEL=debug
APP_URL=http://localhost
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=healthsangel
DB_USERNAME=root
DB_PASSWORD=
BROADCAST_DRIVER=log
CACHE_DRIVER=file
SESSION_DRIVER=file
QUEUE_DRIVER=sync
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
MAIL_DRIVER=smtp
MAIL_HOST=smtp.gmail.com
MAIL_PORT=587
MAIL_USERNAME=
MAIL_PASSWORD=
MAIL_ENCRYPTION=tls
PUSHER_APP_ID=
PUSHER_KEY=
PUSHER_SECRET=

登录刀片:

    @extends('layouts.login')

@section('content')
<div class="container wow fadeInDown" data-wow-delay="0.5s" data-wow-duration="2s">

    <div class="row">

        <div class="col-md-3"></div>
        <div class="bg-white login_content login_border_radius col-md-6 login_background">
            <form class="form-horizontal form_margin" role="form" name="loginForm" id="loginForm" method="POST" action="{{ url('/dashboard') }}">
                {{csrf_field()}}
                <input type="hidden" class="form-control form-control-md" id="loggedUserUid" name="loggedUserUid">
                <div class="form-group">
                    <h3 class="text-center">
                       <img src="{{asset('/img/logo_name.png')}}" height="200" width="200">
                    </h3>
                </div>

                <div class="form-group{{ $errors->has('email') ? ' has-error' : '' }}">
                    <input type="text" class="form-control  form-control-md" id="email" name="email" border-width= "medium" placeholder="Usuário ou email" required autofocus>
                    @if ($errors->has('email'))
                        <span class="help-block">
                            <strong>{{ $errors->first('email') }}</strong>
                        </span>
                    @endif
                </div>
                <!--</h3>-->
                <div class="form-group{{ $errors->has('password') ? ' has-error' : '' }}">                              
                        <input type="password" class="form-control form-control-md" id="password"   name="password" placeholder="Senha" required>
                        @if ($errors->has('password'))
                            <span class="help-block">
                                <strong>{{ $errors->first('password') }}</strong>
                            </span>
                        @endif
                </div>
                <div class="form-group text-center hiddenStyle" id="wrong_credentials">
                    <span class="help-block text-center error-text">
                        <strong id="error_text">Usuário ou senha incorretos!</strong>
                    </span>
                </div>

                <div class="form-group text-center hiddenStyle" id="loading_view">
                    <span class="help-block text-center error-text">
                        <img src="/img/rolling.gif" width="5%"></img>
                    </span>
                </div>

                <div class="row form-group">
                    <div class="col-md-6" style="padding:2px !important">
                        <div class="text-center">
                            <a href="/register" class="btn btn-block signup_button">Cadastrar</a>
                        </div>
                    </div>
                    <div class="col-md-6" style="padding:2px !important">
                        <input type="submit" onClick="doLogin()" value="Login" id="loginButton" class="btn btn-success btn-block btn-large login_button loading_button">
                    </div>
                </div>
            </form>

            <div class="form-group">
                <div class="row">                               
                        <h6 class="text-center">
                            <b>
                            <a align="center" href="{{ url('/password/reset') }}" class="custom-control-description forgottxt_clr"><u>Esqueceu a senha?</u></a>
                            </b>
                        </h6>                                
                </div>
            </div>

            <div class="form-group">
                <div class="row">                               
                        <h6 class="text-center">
                        <b class="gray_text">
                            Ao entrar você está aceitando o nosso 
                            <a align="center" href="{{ url('http://hangel.com.br/termos-de-uso') }}"  target="_blank" class="custom-control-description error-text"><u>Termo de Uso e Política de Privacidade</u></a></b>
                        </h6>                                
                </div>
            </div>
        </div>
        <div class="col-md-3"></div>
    </div>
</div>
@endsection

配置/ session.php文件

<?php

return [

    /*
    |--------------------------------------------------------------------------
    | Default Session Driver
    |--------------------------------------------------------------------------
    |
    | This option controls the default session "driver" that will be used on
    | requests. By default, we will use the lightweight native driver but
    | you may specify any of the other wonderful drivers provided here.
    |
    | Supported: "file", "cookie", "database", "apc",
    |            "memcached", "redis", "array"
    |
    */

    'driver' => env('SESSION_DRIVER', 'file'),

    /*
    |--------------------------------------------------------------------------
    | Session Lifetime
    |--------------------------------------------------------------------------
    |
    | Here you may specify the number of minutes that you wish the session
    | to be allowed to remain idle before it expires. If you want them
    | to immediately expire on the browser closing, set that option.
    |
    */

    'lifetime' => 120,

    'expire_on_close' => false,

    /*
    |--------------------------------------------------------------------------
    | Session Encryption
    |--------------------------------------------------------------------------
    |
    | This option allows you to easily specify that all of your session data
    | should be encrypted before it is stored. All encryption will be run
    | automatically by Laravel and you can use the Session like normal.
    |
    */

    'encrypt' => false,

    /*
    |--------------------------------------------------------------------------
    | Session File Location
    |--------------------------------------------------------------------------
    |
    | When using the native session driver, we need a location where session
    | files may be stored. A default has been set for you but a different
    | location may be specified. This is only needed for file sessions.
    |
    */

    'files' => storage_path('framework/sessions'),

    /*
    |--------------------------------------------------------------------------
    | Session Database Connection
    |--------------------------------------------------------------------------
    |
    | When using the "database" or "redis" session drivers, you may specify a
    | connection that should be used to manage these sessions. This should
    | correspond to a connection in your database configuration options.
    |
    */

    'connection' => null,

    /*
    |--------------------------------------------------------------------------
    | Session Database Table
    |--------------------------------------------------------------------------
    |
    | When using the "database" session driver, you may specify the table we
    | should use to manage the sessions. Of course, a sensible default is
    | provided for you; however, you are free to change this as needed.
    |
    */

    'table' => 'sessions',

    /*
    |--------------------------------------------------------------------------
    | Session Cache Store
    |--------------------------------------------------------------------------
    |
    | When using the "apc" or "memcached" session drivers, you may specify a
    | cache store that should be used for these sessions. This value must
    | correspond with one of the application's configured cache stores.
    |
    */

    'store' => null,

    /*
    |--------------------------------------------------------------------------
    | Session Sweeping Lottery
    |--------------------------------------------------------------------------
    |
    | Some session drivers must manually sweep their storage location to get
    | rid of old sessions from storage. Here are the chances that it will
    | happen on a given request. By default, the odds are 2 out of 100.
    |
    */

    'lottery' => [2, 100],

    /*
    |--------------------------------------------------------------------------
    | Session Cookie Name
    |--------------------------------------------------------------------------
    |
    | Here you may change the name of the cookie used to identify a session
    | instance by ID. The name specified here will get used every time a
    | new session cookie is created by the framework for every driver.
    |
    */

    'cookie' => 'laravel_session',

    /*
    |--------------------------------------------------------------------------
    | Session Cookie Path
    |--------------------------------------------------------------------------
    |
    | The session cookie path determines the path for which the cookie will
    | be regarded as available. Typically, this will be the root path of
    | your application but you are free to change this when necessary.
    |
    */

    'path' => '/',

    /*
    |--------------------------------------------------------------------------
    | Session Cookie Domain
    |--------------------------------------------------------------------------
    |
    | Here you may change the domain of the cookie used to identify a session
    | in your application. This will determine which domains the cookie is
    | available to in your application. A sensible default has been set.
    |
    */

    'domain' => env('SESSION_DOMAIN', null),

    /*
    |--------------------------------------------------------------------------
    | HTTPS Only Cookies
    |--------------------------------------------------------------------------
    |
    | By setting this option to true, session cookies will only be sent back
    | to the server if the browser has a HTTPS connection. This will keep
    | the cookie from being sent to you if it can not be done securely.
    |
    */

    'secure' => env('SESSION_SECURE_COOKIE', false),

    /*
    |--------------------------------------------------------------------------
    | HTTP Access Only
    |--------------------------------------------------------------------------
    |
    | Setting this value to true will prevent JavaScript from accessing the
    | value of the cookie and the cookie will only be accessible through
    | the HTTP protocol. You are free to modify this option if needed.
    |
    */

    'http_only' => true,

];

路由/ web.php

<?php

/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your application. These
| routes are loaded by the RouteServiceProvider within a group which
| contains the "web" middleware group. Now create something great!
|
*/

Route::get('/', function () {
    return view('auth/login');
});

Auth::routes();

Route::post('/login', 'LoginController@index');

Route::post('/dashboard', 'DashboardController@index');
Route::get('/dashboard', 'DashboardController@index');

Route::get('/patients', 'PatientsController@index');
Route::get('/favorites', 'PatientsController@favorites');
Route::get('/doctors', 'DoctorsController@index');
Route::get('/pontuation', 'PontuationController@index');
Route::get('/editProfile', 'EditProfileController@index');

Route::get('/patientDetails/{uid}', 'PatientDetailsController@index');
Route::get('/patientDetails', 'PatientDetailsController@openPatientDetails');

Route::get('solicitations', 'SolicitationsController@index');
Route::get('alerts', 'AlertsController@index');

Route::post('/inviteDoctor', 'InviteDoctorController@index');

Route::post('/registerAdmin', 'RegisterController@registerAdmin');
Route::get('/registerAdmin', 'RegisterController@registerAdmin');

Route::post('/dashboardAdmin', 'DashboardController@dashboardAdmin');
Route::get('/dashboardAdmin', 'DashboardController@dashboardAdmin');

我刚发现我的令牌与会话令牌不同。为什么这是哈珀?印刷如下: My token x Session token

2 个答案:

答案 0 :(得分:0)

这个命令可以帮助你:

php artisan cache:clear
php artisan view:clear

答案 1 :(得分:0)

我解决了我的问题!!!

这是一系列问题。为了解决这个问题,我做了以下五个步骤:

  1. ActiveSheet.Range("H:H").Select
  2. composer update
  3. chmod 755 storage/frameworks/sessions
  4. rm -rf storage/frameworks/sessions/*
  5. 重新启动,一切正常!
  6. 谢谢大家的帮助。希望可以帮助另一个开发者解决这个问题。