0

こんにちは、私は zend フレームワークを使用して残りのサービスを作成しようとしています。基本的に、この残りのサービスが対象とする実際のアプリをコピーしました。レイアウトフォルダーとビューフォルダーを削除しました。

私の問題は、モジュールがまったくロードされていないようで、index.php に移動すると次の出力が得られることです。

problemInvalid controller specified (error)#0 /home/********/*****/library/Zend/Controller/Front.php(954): Zend_Controller_Dispatcher_Standard->dispatch(Object(Zend_Controller_Request_Http), Object(Zend_Controller_Response_Http)) #1 /home/********/*****/library/Zend/Application/Bootstrap/Bootstrap.php(97): Zend_Controller_Front->dispatch() #2 /home/********/*****/library/Zend/Application.php(366): Zend_Application_Bootstrap_Bootstrap->run() #3 /home/********/public_html/portal/websvc/index.php(34): Zend_Application->run() #4 {main}

なぜこれが機能しないのかわかりません。基本的には、20 個のモジュールを持つ元のアプリと同じ設定であり、問​​題はありません。

助けてください!:'(

だから私は基本的に次のフォルダ構造を持っています

/app/modules
/app/modules/v1
/app/modules/v1/controllers
/app/modules/v1/controllers/OutboundController.php
/app/modules/v1/controllers/ProductController.php
/app/modules/v1/Bootstrap.php
/app/modules/default
/app/modules/default/controllers
/app/modules/default/controllers/errorController.php
/app/config/

これは私のapplication.iniです

[production]
includePaths.library = APPLICATION_PATH "/../../../library"
bootstrap.path = APPLICATION_PATH "/Bootstrap.php"
bootstrap.class = "Bootstrap"
appnamespace = "Application"
resources.frontController.defaultModule = "v1"
resources.frontController.moduleDirectory = APPLICATION_PATH "/modules"
resources.frontController.moduleControllerDirectoryName = "controllers"

resources.router.routes.rest.type = Zend_Rest_Route

私のbootstrap.php

class Bootstrap extends Zend_Application_Bootstrap_Bootstrap {

protected function _initautoloader()    {
    $autoloader = new Zend_Application_Module_Autoloader(array(
        'basePath'  => APPLICATION_PATH."/modules/default",
        'namespace' => '',
    ));

    $resourceAutoLoader = new Zend_Loader_Autoloader_Resource(array(
        'basePath'  => APPLICATION_PATH,
        'namespace' => '',
    ));
    $resourceAutoLoader->addResourceTypes(array(
            "class" => array(
                            'namespace' => 'Class',
                            'path'      => '/../../../library/Class'
                        ),
            "model" => array(
                            'namespace' => 'Model',
                            'path' => '/../../../library/Models'
                        )
    ));   
}




protected function _initFrontModules() 
{ 
    $this->bootstrap('frontController'); 
    $front = $this->getResource('frontController'); 
    $front->addModuleDirectory(APPLICATION_PATH . '/modules');
}

}

私の index.php

// Define path to application directory
defined('APPLICATION_PATH')
    || define('APPLICATION_PATH', realpath(dirname(__FILE__) . '/../../../ibwms/applications/external/websvc'));

// Define application environment
defined('APPLICATION_ENV')
    || define('APPLICATION_ENV', (getenv('APPLICATION_ENV') ? getenv('APPLICATION_ENV') : 'development'));


// Ensure library/ is on include_path
set_include_path(implode(PATH_SEPARATOR, array(
    realpath(APPLICATION_PATH . '/../../../library'),
    get_include_path(),
)));

/* Zend_Application */
require_once 'Zend/Application.php';
// Create application, bootstrap, and run
try{


$application = new Zend_Application(
    APPLICATION_ENV,
    APPLICATION_PATH . '/configs/application.ini'
);

Zend_Controller_Front::getInstance()->setBaseUrl('/portal/websvc/');

$application->bootstrap()
            ->run();

}catch(Exception $e)
{
    echo 'problem'.$e->getMessage();
}
4

1 に答える 1