在cPanel

时间:2015-10-13 11:07:41

标签: php zend-framework zend-framework2 cpanel

尝试在Zend 2中掌握并创建一个非常基本的起始站点。首先,我通过Softaculous安装了Zend 2,但是已经安装了一个非常基本的shell。所以离开了,因为我不确定这是最好的事情。

其次,我从Github下载了Zend 2 Skeleton。在我的服务器上提取了这个。但是,当我尝试转到index.php时,它会给出损坏的路径错误。

我在哪里可以更改cPanel文件管理器中的路径? (我无法访问composer的命令行,并且在init文件中放置路径不起作用)

  

致命错误:未捕获的异常'RuntimeException',消息'无法加载ZF2。运行php composer.phar install或定义ZF2_PATH环境变量。在/home/****/public_html/zf2-tutorial/init_autoloader.php:51堆栈跟踪:#0 /home/****/public_html/zf2-tutorial/public/index.php(18):require( )第51行/home/****/public_html/zf2-tutorial/init_autoloader.php中输入的#1 {main}

1 个答案:

答案 0 :(得分:0)

检查应用程序基目录中的init_autoloader.php文件。您可能拥有以下代码:

if (file_exists('vendor/autoload.php')) {
    $loader = include 'vendor/autoload.php';
}

if (class_exists('Zend\Loader\AutoloaderFactory')) {
    return;
}

$zf2Path = false;

if (is_dir('vendor/ZF2/library')) {
    $zf2Path = 'vendor/ZF2/library';
} elseif (getenv('ZF2_PATH')) {      // Support for ZF2_PATH environment variable or git submodule
    $zf2Path = getenv('ZF2_PATH');
} elseif (get_cfg_var('zf2_path')) { // Support for zf2_path directive value
    $zf2Path = get_cfg_var('zf2_path');
}

if ($zf2Path) {
    if (isset($loader)) {
        $loader->add('Zend', $zf2Path);
        $loader->add('ZendXml', $zf2Path);
    } else {
        include $zf2Path . '/Zend/Loader/AutoloaderFactory.php';
        Zend\Loader\AutoloaderFactory::factory(array(
            'Zend\Loader\StandardAutoloader' => array(
                'autoregister_zf' => true
            )
        ));
    }
}

if (!class_exists('Zend\Loader\AutoloaderFactory')) {
    throw new RuntimeException('Unable to load ZF2. Run `php composer.phar install` or define a ZF2_PATH environment variable.');
}

所以,你必须设置ZF2_PATH env var。如果在服务器上的Apache中启用了mod_env,则只需在.htaccess文件中添加SetEnv指令。

请参阅以下链接:

Zend Framework 2 installation

Zend Framework 2 - Beginners Tutorial - Apache server config

How to give zend library path in our application?