关于Z-Ray的10月CMS反射异常

Fél*_*ins 14 php zend-server laravel octobercms

当我在带有Z-Ray的服务器上加载我的十月安装时,我收到此错误:

//用作解析器,以更精细地分辨这些对象.

if ($concrete instanceof Closure)
{
    return $concrete($this, $parameters);
}

$reflector = new ReflectionClass($concrete);

// If the type is not instantiable, the developer is attempting to resolve
// an abstract type such as an Interface of Abstract Class and there is
// no binding registered for the abstractions so we need to bail out.
if ( ! $reflector->isInstantiable())
{
Run Code Online (Sandbox Code Playgroud)

错误来自这一行: $reflector = new ReflectionClass($concrete);

作为一个ReflectionException.

我不知道它为什么这样做,但在XAMPP上,这不存在.

网址:使用Z-Ray不使用Z-Ray.相同的文件,复制/粘贴.

谢谢

Fél*_*ins 2

我已经找到问题了。

Laravel 插件导致与 October CMS 发生冲突。

我是怎么找到这个的? 首先,这个文件出现了这个错误:

C:\Program Files (x86)\SiteExtensions\Zray55\0.9.6\plugins\Laravel\1.0.0\zray\zray.php(122): Illuminate\Container\Container->offsetGet('auth') #5 C:\Program Files (x86)\SiteExtensions\Zray55\0.9.6\plugins\Laravel\1.0.0\zray\zray.php(27): ZRay\Laravel->loadUserPane
Run Code Online (Sandbox Code Playgroud)

之后,我指出 Laravel 面板是空白的,但有数字。

感谢@num8er,他花时间帮助我解决这个问题!