Custom Query (313 matches)
Results (31 - 33 of 313)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#189 | fixed | Problem at your pages | moo | Seregwethrin |
Description |
Hello; Your xcache.lighttpd.net pages gives error "Error: Failed to load processor ShellExample No macro or processor named 'ShellExample' found" We can't open the wiki pages. Please check it out. GOod works. |
|||
#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 |