I'm using Doctrine 2 in a personal project. I'm not using either Zend or other framework.
I have a runnig installation on my Windows XP SP3, with Xampp running perfectly.
When I tried to move my project to a Linux environtment (Debian Squeeze), I could not make it work.
I downloaded the Doctrine with the tar.gz option.
My project is on /home/neojoda/ResucitoServer
My apache config is
<VirtualHost *:80>
ServerAdmin neojoda@gmail.com
DocumentRoot "/home/neojoda/ResucitoServer/admin"
ServerName admin.resucito.server
ServerAlias admin.resucito.localhost
ErrorLog ${APACHE_LOG_DIR}/error-admin.resucito.log
CustomLog ${APACHE_LOG_DIR}/access-admin.resucito.log combined
php_value include_path ".:/home/neojoda/ResucitoServer/libs/doctrine-orm:/home/neojoda/ResucitoServer"
php_value auto_prepend_file /home/neojoda/ResucitoServer/config/bootstrap.php
</VirtualHost>
but when I try to open a browser to admin.resucito.server, nothing happens (white screen) and if I look into php_error.log, I find the next error:
[05-Jan-2012 12:07:56] PHP Warning: require(/Doctrine/Common/Cache/ArrayCache.php): failed to open stream: No such file or directory in /home/neojoda/ResucitoServer/libs/doctrine-orm/Doctrine/Common/ClassLoader.php on line 148
[05-Jan-2012 12:07:56] PHP Fatal error: require(): Failed opening required '/Doctrine/Common/Cache/ArrayCache.php' (include_path='.:/home/neojoda/ResucitoServer/libs/doctrine-orm:/home/neojoda/ResucitoServer') in /home/neojoda/ResucitoServer/libs/doctrine-orm/Doctrine/Common/ClassLoader.php on line 148
I configured the php.ini for cli execution and I set the same include_path, and the command php doctrine.php runs ok. So it does no seems a permissions problem. I also tried to do a cat ArrayCache in /Doctrine/Common/Cache as www-data user I could read perfectly.
I don't know what else to try.
Thanks for advance.
Joan B.