it seen that the autoload in not entirely broken.

Here is my autoloader definition:
$resourceLoader = new Zend_Application_Module_Autoloader(array(
    'basePath'  => APPLICATION_PATH,
    'namespace' => 'Aew',
));

$a = new Aew_Form_Delete();
echo $a;

$b = new Aew_Model_Orm_Tag();
echo get_class($b);

It can get the Form just fine, the problem is in the Model classes



::: Diego Potapczuk


On Fri, Jan 15, 2010 at 10:30 AM, Diego Potapczuk <potapc...@gmail.com>wrote:

> Anyone knows why Auto Loading may be not working on Linux?
>
> The application crash with this error:
> Fatal error: Class 'Aew_Model_Orm_Tag' not found in
> /var/www/aew_sec/application/models/Tag.php on line 15
>
> When trying to load Doctrine Models
>         Doctrine::loadModels(realpath($dir));
>
> It is working just fine on windows.
>
>
>
> ::: Diego Potapczuk
>

Reply via email to