因此,我正在尝试在我的Karmic上安装Tidy2.0,遵循以下指南:http://www.howtoforge.com/forums/archive/index.php/t-7395.html
我认为一切都会正常工作,但似乎Tidy2.0的源码不再是live:http://support.office-shadow.com/installer/tidy2.0.tar.gz
该网站仍然在线(即office-shadow.com),但看起来他们不再托管这个扩展了。因此,我希望这里的某个人把它放在某个盒子里。请?帮助?
谢谢。
发布于 2010-08-20 11:42:10
sudo aptitude install php5-dev libtidy-dev
#you may have to install other libs, like gcc, build-essential, etc.
#see the guides on how to compile PHP, for instance
svn co http://svn.php.net/repository/php/php-src/branches/PHP_5_3/ext/tidy/
cd tidy
phpize
./configure
make
sudo make install基本上,我只是将http://support.office-shadow.com/installer/tidy2.0.tar.gz替换为存储库位置。如果您使用的是PHP5.2,请用PHP_5_2替换PHP_5_3。
https://stackoverflow.com/questions/3527855
复制相似问题