views:

50

answers:

1

When i transfer my zend framework application from windows(zf 1.10.3) to linux (zf.10.7) some controllers work fine but some show this exception

Fatal error: Undefined class constant 'EXCEPTION_NO_ROUTE' in /path/to/application/modules/default/controllers/ErrorController.php on line 11

/controllers
VideoController.php
/view
/scripts
/Video
index.phtml

VideoController.php

class VideoController extend Zend_Controller_Action
{
  public indexAction(){}
}

Weacan that did not correctly ?

A: 

Solved just coment in default error controller case:NO_ROUTE

Alehandro