PHP::PEAR installation problems
I tried to install the Cache package for PEAR on Mac OS X 10.4.8 ( xampp installed ). Got the
error message: No handlers for package.xml version 2.0
Found the following solution:
pear upgrade --force PEAR-1.3.6 Archive_Tar-1.3.1 Console_Getopt-1.2
pear upgrade --force PEAR-1.4.11
pear upgrade PEAR
Than i was able to install ‘HTTP_Request’ and ‘Cache’.
Update: that was not all … i tried to use the Graphics.php for caching some gd calls. Got a Fatal Error on line 247 because of undefined function ob_end();
so that function really doesn’t exist, i guess its some dev note or so. But still after removing that line, there are massive errors. In the end i better coded my own caching functions.