2017-06-23 21 views
0

ZF2アプリケーションをZF3に移行しています。ZF2からZF3への移行:Zend Mvc Router Http Segmentがプラグインマネージャーで見つかりませんでした

まず、私はエラーを取得しました。

Fatal error: Uncaught Zend\ModuleManager\Listener\Exception\RuntimeException: Could not find a valid ServiceManager for RoutePluginManager in /var/www/work/path/to/project/vendor/zendframework/zend-modulemanager/src/Listener/ServiceListener.php on line 202 
Zend\ModuleManager\Listener\Exception\RuntimeException: Could not find a valid ServiceManager for RoutePluginManager in /var/www/work/path/to/project/vendor/zendframework/zend-modulemanager/src/Listener/ServiceListener.php on line 202 

application.config.php問題を解決でmodulesアレイへ'Zend\Router'の追加。しかし、今、私は別のエラーを取得しています:

Fatal error: Uncaught Zend\ServiceManager\Exception\ServiceNotFoundException: A plugin by the name "Zend\Mvc\Router\Http\Segment" was not found in the plugin manager Zend\Router\RoutePluginManager in /var/www/work/path/to/project/vendor/zendframework/zend-servicemanager/src/AbstractPluginManager.php on line 131 
Zend\ServiceManager\Exception\ServiceNotFoundException: A plugin by the name "Zend\Mvc\Router\Http\Segment" was not found in the plugin manager Zend\Router\RoutePluginManager in /var/www/work/path/to/project/vendor/zendframework/zend-servicemanager/src/AbstractPluginManager.php on line 131 

このエラーが発生する可能性があります何とそれを修正する方法?

答えて

1

Zend\Routerに移動されたZend\Mvc\Routerによって引き起こされる、これだけZend\Router\Http\Segment

Zend\Mvc\Router\Http\Segmentを置き換えます
関連する問題