vote up 0 vote down star

I am trying to use either APC or XCache as an opcode to cache my php pages. I am using it with Zend and Doctrine and it's having a problem with the autoloader.

If I try with APC, I get the following:

Fatal error: spl_autoload() [<a href='function.spl-autoload'>function.spl-autoload</a>]: 
  Class Doctrine_Event could not be loaded in 
  C:\\[mydir]\\library\\doctrine\\Doctrine\\Record.php on line 777

If I try with XCache I get the following:

PHP Fatal error: Cannot redeclare class Zend_Registry in 
  C:\\[mydir]\\library\\zendframework\\Zend\\Registry.php on line 0

I'm running Zend 1.9.1, Doctrine 1.1 on a windows box.

My bootstrap is as follows:

set_include_path(dirname(__FILE__).'/../library/zendframework'
. PATH_SEPARATOR . dirname(__FILE__).'/../library/doctrine'.....

require 'Zend/Loader/Autoloader.php';

$loader = Zend_Loader_Autoloader::getInstance();
$loader->suppressNotFoundWarnings(false);
$loader->setFallbackAutoloader(true);

From what I've read, using APC or xcache is almost a must for performance, but I can't seem to get it working. Any ideas?

flag

3 Answers

vote up 2 vote down check

You have to put a "Zend_Session::writeClose(true);" at the end of your index.php.

This will write the session into a persistent state before necessary Objects (Zend_Loader etc.) get destructed.

link|flag
This solved it for me, using APC. – smoove666 Sep 24 at 6:39
vote up 0 vote down

Is there something else mucking the include path? Maybe try to log out the include path right before that line in your first APC example.

The XCache one is really weird. That project is pretty dead though, and I'd not trust it on PHP 5.2+. Try eaccelerator instead? We've had the best luck with it.

link|flag
There are other Doctrine-specific things in the include path (models, etc). We're looking for a ZendCache backend (framework.zend.com/manual/en/…) so eaccelerator won't work. – Chris Williams Sep 2 at 14:30
Theres a proposal for an eaccelerator backend framework.zend.com/wiki/display/… - should be pretty easy to implement really. Anyway what i was wondering is if anything is removing your intended include paths from the total before that error is thrown. – Justin Sep 2 at 14:42
vote up 0 vote down

I LOVE YOU!!! YOU MADE MY DAY!

After 3 days struckling of sessiondata is getting lost i found this post, and damned!! it works!!!

Nico

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.