ReflectionException (-1) Class App\Http\Middleware\MyMiddleware 项目上传到cpanel后laravel 5.6中不存在

Posted

技术标签:

【中文标题】ReflectionException (-1) Class App\\Http\\Middleware\\MyMiddleware 项目上传到cpanel后laravel 5.6中不存在【英文标题】:ReflectionException (-1) Class App\Http\Middleware\MyMiddleware does not exist in laravel 5.6 after uploading the project to cpanelReflectionException (-1) Class App\Http\Middleware\MyMiddleware 项目上传到cpanel后laravel 5.6中不存在 【发布时间】:2018-11-10 00:21:22 【问题描述】:

在上传到 cpanel 之前,我尝试了我的 laravel 项目,一切正常。在我将它上传到 cpanel 之后,所有没有中间件的页面都可以正常工作,但带有中间件的页面返回:

ReflectionException (-1)Class App\Http\Middleware\MyMiddleware does not exist

这里是我的中间件 App\Http\Middleware\MyMiddleware.php

namespace App\Http\Middleware;

use Closure;

class MyMiddleware

    /**
     * Handle an incoming request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Closure  $next
     * @return mixed
     */
    public function handle($request, Closure $next)
    
        if(session()->has('adminId'))
            return redirect('/admin/dashboard');
        else
            if($request->path() == 'admin')
                return redirect('/admin/login');
            else
                return $next($request);
            
        
    

这是我的 App\Http\Kernel.php

protected $routeMiddleware = [
    'auth' => \Illuminate\Auth\Middleware\Authenticate::class,
    'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class,
    'bindings' => \Illuminate\Routing\Middleware\SubstituteBindings::class,
    'cache.headers' => \Illuminate\Http\Middleware\SetCacheHeaders::class,
    'can' => \Illuminate\Auth\Middleware\Authorize::class,
    'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class,
    'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class,
    'myAuth' => \App\Http\Middleware\MyMiddleware::class,
];

这是我在 routes/web.php 的路线

Route::get('/admin', ['middleware' => 'myAuth', 'uses' => function()
echo "nothing";]);

到目前为止我已经尝试过

php artisan config:clear
composer update
composer dump-autoload

在上传到 cpanel 之前,但没有运气。

【问题讨论】:

请阅读此This Question 可能会对您有所帮助。 好的,现在就开始阅读和尝试。 没有运气仍然给出同样的错误 【参考方案1】:

我认为您的文件名在 MyMidd'l'eware 中缺少“l”。

作曲家转储自动加载,然后重命名您的文件名。

我猜你的文件名和你的类名必​​须相同。

【讨论】:

啊..对不起,当我输入问题时,这是一个错字。我编辑了谢谢。知道我的代码有什么问题吗?正如我提到的,我已经在本地尝试过,一切正常。但是在我将其上传到 cpanel 后出现了该错误

以上是关于ReflectionException (-1) Class App\Http\Middleware\MyMiddleware 项目上传到cpanel后laravel 5.6中不存在的主要内容,如果未能解决你的问题,请参考以下文章

Container.php 第 741 行中的 ReflectionException:类视图不存在

Laravel 5 - 工匠种子 [ReflectionException] 类 SongsTableSeeder 不存在

Laravel 错误“ReflectionException”-“类 App\Http\Kernel 不存在”

Sonata 管理员/用户:“类不存在”(ReflectionException)

Composer 抛出 [ReflectionException] Class Fxp\Composer\AssetPlugin\Repository\NpmRepository 不存在

Laravel 5.1 ReflectionException 类不存在[重复]