我正在尝试在 Qnap NAS 上安装 Bolt 2.0,最新固件带有 PHP/5.3.29。我读过 Bolt 至少需要 PHP/5.3.3,所以我想我必须等待 Qnap 更新。
我想知道该错误是否与过时的 PHP 版本有关,还是表示其他问题?
PHP Fatal Error: Vendor Library
Error: Class ' ��' not found
File: vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Session/Session.php
Line: 59
第 59 行是指:
$attributes = $attributes ?: new AttributeBag();
这是以下内容的一部分:
public function __construct(SessionStorageInterface $storage = null, AttributeBagInterface $attributes = null, FlashBagInterface $flashes = null)
{
$this->storage = $storage ?: new NativeSessionStorage();
$attributes = $attributes ?: new AttributeBag();
$this->attributeName = $attributes->getName();
$this->registerBag($attributes);
$flashes = $flashes ?: new FlashBag();
$this->flashName = $flashes->getName();
$this->registerBag($flashes);
}