0

所以我试图在我的 Karmic 上安装 Tidy2.0,遵循本指南: http: //www.howtoforge.com/forums/archive/index.php/t-7395.html

我认为一切都会奏效,但似乎 Tidy2.0 的源代码不再存在:http: //support.office-shadow.com/installer/tidy2.0.tar.gz

尽管该站点仍然存在(即 office-shadow.com),但他们似乎不再托管扩展程序。因此,我希望这里有人把它放在盒子的某个地方。请?帮助?

谢谢。

4

1 回答 1

1
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替换为存储库位置。如果您使用的是 PHP 5.2,请将 PHP_5_3 替换为 PHP_5_2。

于 2010-08-20T03:42:10.403 回答