我在Magento 2上遇到了一些问题。我已经制作了自己的模块,看起来工作正常,但是当我安装了模块并生成php bin/magento setup:di:compile
时会出现这样的错误:
[ReflectionException] Class \ MyInstaller不存在
由setup/src/Magento/Setup/Module/PhpScanner.php
MyInstaller类存在,但我更改了类文件的路径。最初,有路径/my-libraries/MyInstaller.php
,但是当我在本地测试它时,我上面有错误:
[ReflectionException] Class \ MyInstaller不存在
当我将文件夹名称更改为mylibraries时,在localhost上它可以正常工作。但是,当我在外部服务器上安装模块时,我有ReflectionException
。当我将文件夹名称更改为原始文件夹名称时,它不会显示 - " my-libraries"。正如我所观察到的那样,Magento仍然呼唤着一条古老的道路。但是,我试图运行Magento 2的新实例,但我仍然遇到此错误。
我试图通过以下方式清除缓存:
bin/magento cache:clean
bin/magento cache:flush
我也试图删除/var
文件夹。启用我的模块后,我做了:
php bin/magento setup:upgrade
和
php bin/magento setup:static-content:deploy
你能告诉我,我如何强制Magento使用新的文件路径?或者我应该更改服务器上的某些缓存设置吗?
我补充说,MyInstaller类中没有命名空间,因为我在另一个模块中使用相同的文件。但是,如果在localhost上没有错误,我认为它们不是必需的。
有MyInstaller类代码:
<?php
if (!class_exists('MyInstaller', false)) {
class MyInstaller implements MyInterface
{
private $translations;
private $sliderEnabled = true;
private $pages = array();
public function __construct($sliderEnabled = true, array $translations = array())
{
$this->sliderEnabled = $sliderEnabled;
$this->setTranslations($translations);
}
public function setTranslations(array $translations = array())
{
$this->translations = $translations;
}
public function addPages(array $pages = array())
{
$this->pages = array_values($pages);
}
public function renderInstallerSteps()
{
if (!$this->sliderEnabled || empty($this->pages) || !is_array($this->pages)) {
return '';
}
$requirements = $this->checkRequirements();
$params = array(
'requirements' => $requirements,
'translations' => $this->translations
);
$maxSteps = 0;
$data = array(
'steps' => array()
);
foreach ($this->pages as $page) {
$page = (int)$page;
if ($page > 0) {
$step = $this->loadStep($page, $params);
$data['steps'][$page] = $step;
$maxSteps++;
}
}
if ($maxSteps === 0) {
return '';
}
$data['maxSteps'] = $maxSteps;
return $this->loadTemplate('installer', $data);
}
private function loadStep($number, $params = null)
{
$step = $this->loadTemplate('step' . $number, $params);
$step = $this->removeNewLines($step);
return $step;
}
private function removeNewLines($string)
{
return trim(str_replace(PHP_EOL, ' ', $string));
}
private function loadTemplate($view, $data = null)
{
extract(array("content" => $data));
ob_start();
$viewFile = dirname(__FILE__) . DIRECTORY_SEPARATOR . 'theme' . DIRECTORY_SEPARATOR . "$view.tpl.php";
if (file_exists($viewFile)) {
include $viewFile;
} else {
throw new Exception('View not exist in ' . get_class($this));
}
$content = ob_get_clean();
return $content;
}
private function checkRequirements()
{
$data = array(
'php' => array(
'test' => (version_compare(PHP_VERSION, '5.2.0') > 0),
'label' => $this->translations['php_version']
),
'curl' => array(
'test' => function_exists('curl_version'),
'label' => $this->translations['curl_enabled']
),
'soap' => array(
'test' => class_exists('SoapClient'),
'label' => $this->translations['soap_enabled']
)
);
return $data;
}
}
}
很抱歉,如果描述很混乱,这是我在这里的第一篇文章。
答案 0 :(得分:1)
Magento2依赖命名空间来分离和定位模块和类。
所有文件都需要一个宣布的NAMESPACE,如下:
<?php
namespace Vendor\MyModule\Setup;
class MyInstaller implements ... {}
编辑 - 在看到评论之后
同时检查区分大小写 - UNIX系统将此和此视为两个单独的文件,而Windows将其视为一个。