I'm developing a system for house selling or renting..

I have installed my system in many servers ( Windows ).. and all run well..


Now.. I have a Customer that have domain+ host with siteGround.com

When i put my system there.. only run the IndexController...

The others controllers say:

Fatal error: Uncaught exception 'Zend_Controller_Dispatcher_Exception' with
message 'Invalid controller specified (ImmAffitto)' in
/home/sardinia/public_html/Zend/library/Zend/Controller/Dispatcher/Standard.php:193
Stack trace: #0
/home/sardinia/public_html/Zend/library/Zend/Controller/Front.php(911):
Zend_Controller_Dispatcher_Standard->dispatch(Object(Zend_Controller_Request_Http),
Object(Zend_Controller_Response_Http)) #1
/home/sardinia/public_html/index.php(124): Zend_Controller_Front->dispatch()
#2 {main} thrown in
/home/sardinia/public_html/Zend/library/Zend/Controller/Dispatcher/Standard.php
on line 193


I have not idea of what can be the problem.. im getting mad...

Here is a part of my index.php:


                //Passo il Dispacher alla classe auth
                $auth = AuthenticationController::factory($db,$session);
                Zend::register('auth',$auth);

                 // Setup request object and specify the base URL 
            $request    = new Zend_Controller_Request_Http(); 
            //$request->setBaseUrl('/'); 

            $router     = new Zend_Controller_Router_Rewrite(); 
            // probably want to setup some routing rules here... 
        
            // Setup controller and dispatch 
            $controller = Zend_Controller_Front::getInstance(); 
            $controller->registerPlugin(new AuthPlugin($db,$session,$post)) 
                                   ->setBaseUrl($baseUrl)
                       ->setControllerDirectory('app/controllers') 
                       ->setRequest($request) 
                       ->setRouter($router)
                                   ->setParam('noViewRenderer', true);
                
            echo $controller->dispatch(); 


Can someone help me..??

Best regards..

Mauro Casula.
-- 
View this message in context: 
http://www.nabble.com/Please-Help-me%3A-Invalid-controller-specified-tf4268493s16154.html#a12148396
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to