Custom Query (272 matches)
Results (28 - 30 of 272)
| Ticket | Resolution | Summary | Owner | Reporter |
|---|---|---|---|---|
| #199 | fixed | PHP wrapper object code | moo | Shnapoo |
| Description |
Hi there, I was unable to log into the website (although giving right password for sure). Just wanted to inform you of a tiny bug in the XCache wrapper object code provided here. It currently doesn't handle its singleton correctly. When calling xcache::getInstance() you get a new instance each time, because the class doesn't store the reached out instance. Bad version: public static function getInstance()
{
return (self::$xcobj instanceof XCache) ? self::$xcobj : new XCache;
}
Fixed version should look like: public static function getInstance()
{
if( !(self::$xcobj instanceof XCache) ){
self::$xcobj = new XCache;
}
return self::$xcobj;
}
|
|||
| #200 | invalid | Compatability issue with ZendOptimizer | moo | ShyaM |
| Description |
Hi, When we install xcache in a server which already includes ZendOpt?. & Ioncube it produces the following error, ================ PHP Fatal error: [Zend Optimizer] Zend Optimizer 3.3.3 is incompatible with XCache 1.2.2 in Unknown on line 0 ================ On further checking, it seems that xcache works either with ZendOpt? or Ioncube , but not with both. Also the above error produced when I installed ioncube. So there is still compatibility issue with xcache + zendopt + ioncube |
|||
| #291 | duplicate | Wrong path for same ??? file | moo | Steuf |
| Description |
Hello, On shared architecture I have a strange problem when Xcache is enabled. Sometimes I see it on logs : include(/home/nfs/www/www.website1.com/httpdocs/footer.php): failed to open stream: Permission denied in /home/nfs/www/www.website2.com/httpdocs/index.php on line 13 I don't know why, but sometime "cache" for include is currupted and try to include file /home/nfs/www/www.website1.com/httpdocs/footer.php instead of /home/nfs/www/www.website2.com/httpdocs/footer.php It's a really really big problem :/ This is on Debian whis Dotdeb package with files shared by NFS. |
|||

