Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I hope someone can help me with this.

I am working my way through Rob Allen's Zend Framework 2 Tutorial .

When I try to go to:

http://zf2-tutorial.localhost/album I get the following error in apache's log (i using Zend Server CE version free):

PHP Fatal error: Class 'Album\Controller\AlbumController' not found in C:\Program Files\Zend\Apache2\htdocs\zf2-tutorial\vendor\zendframework\zendframework\library\Zend\ServiceManager\AbstractPluginManager.php on line 175

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()
{
}
}

My configuration:

Windows xp. Zend Server CE Technology Preview (PHP 5.3).

Thank you for your help

share|improve this question
1  
Have you configured the autoloader? (For instance, getAutoloaderConfig() in the Module class.) – Daniel M Sep 18 '12 at 9:55
yes, i have. public function getAutoloadConfig(){ return array( 'Zend\Loader\ClassMapAutoloader' => array( DIR . '/autoload_classmap.php', ), 'Zend\Loader\StandardAutoloader' => array( 'namespaces' => array( NAMESPACE => DIR . '/src/' . NAMESPACE, ), ), ); – aaa Sep 18 '12 at 10:07
1  
Oh my god. getAutoloaderConfig() not getAutoloadConfig(), it's work. Thank for your help! – aaa Sep 18 '12 at 10:09

1 Answer

Hi please rename this file module\Album\src\Album\Controller\AlbumController.php

with Capital "C"

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.