Z-Ray 上的十月 CMS 反射异常

October CMS Reflection Exception on Z-Ray

当我使用 Z-Ray 在服务器上加载 10 月安装时,出现此错误:

// 用作解析器以更精细地解析这些对象。

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())
{

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

作为 ReflectionException.

我不知道为什么要那样做,但在 XAMPP 上不存在。

URL:With Z-Ray and without Z-Ray。相同的文件,copy/pasted.

谢谢

我找到问题了。

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

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

C:\Program Files (x86)\SiteExtensions\Zray55[=10=].9.6\plugins\Laravel.0.0\zray\zray.php(122): Illuminate\Container\Container->offsetGet('auth') #5 C:\Program Files (x86)\SiteExtensions\Zray55[=10=].9.6\plugins\Laravel.0.0\zray\zray.php(27): ZRay\Laravel->loadUserPane

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

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