誰かがこれを手伝ってくれることを願っています。
私はRobAllenのZendFramework2チュートリアルを進めています。
私が行こうとすると:
http://zf2-tutorial.localhost/album apacheのログに次のエラーが表示されます(Zend Server CEバージョンを無料で使用しています)。
PHPの致命的なエラー:175行目のC:\ Program Files \ Zend \ Apache2 \ htdocs \ zf2-tutorial \ vendor \ zendframework \ zendframework \ library \ Zend \ ServiceManager\AbstractPluginManager.phpにクラス'Album\ Controller\AlbumController'が見つかりません
module \ Album \ module.config.php
<?php
return array(
'controllers' => array(
'invokables' => array(
'Album\Controller\Album' => 'Album\Controller\AlbumController'
),
),
'router' => array(
'routes' => array(
'album' => array(
'type' => 'segment',
'options' => array(
'route' => '/album[/:action][/:id]',
'constraints' => array(
'action' => '[a-zA-Z][a-zA-Z0-9_-]*',
'id' => '[0-9]+',
),
'defaults' => array(
'controller' => 'Album\Controller\Album',
'action' => 'index',
),
),
),
),
),
'view_manager' => array(
'template_path_stack' => array(
'album' => __DIR__ . '/../view'
)
)
);
module \ Album \ src \ Album \ Controller \ Albumcontroller.php
<?php
namespace Album\Controller;
use Zend\Mvc\Controller\AbstractActionController;
use Zend\View\Model\ViewModel;
class AlbumController extends AbstractActionController
{
protected $albumTable;
public function getAlbumTable()
{
if (!$this->albumTable) {
$sm = $this->getServiceLocator();
$this->albumTable = $sm->get('Album\Model\AlbumTable');
}
return $this->albumTable;
}
public function indexAction()
{
return new ViewModel(array(
'albums' => $this->getAlbumTable()->fetchAll(),
));
}
public function addAction()
{
}
public function editAction()
{
}
public function deleteAction()
{
}
}
私の構成:
WindowsXP。Zend Server CEテクノロジープレビュー(PHP5.3)。
ご協力ありがとうございました