Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
I made a softlink (as a root) in / with: ln -s /home/neojoda/ResucitoServer/libs/doctrine-orm/Doctrine Doctrine But I still don't understand, why PHP does not go to look from /home/neojoda/ResucitoServer/libs/doctrine-orm as it does in Windows XP – Joan Jan 6 '12 at 1:33
Well.... At the end..... I set-up the include path in the Doctrine Class as you can you below: classLoader = new \Doctrine\Common\ClassLoader('Entities', INCLUDE_PATH_NAMESPACE_CLASSES_PROJECT); – Joan Jan 6 '12 at 2:05

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.