This Howtos posted under: Apache | Total Visitors Till Now: 90

How To install Sablotron with PHP

You need to first install expat, followed by Sablotron. Then you need to reinstall PHP. This is the method we used :-

Get source for expat
http://sourceforge.net/projects/expat/ (check for latest)
wget http://telia.dl.sourceforge.net/sourceforge/expat/expat-1.95.5.tar.gz
tar -pxzf expat-1.95.5.tar.gz
cd expat-1.95.5
./configure
make
make install
cd ..
rm �r expat-1.95.2*

*Make sure that /etc/ld.so.conf contains /usr/local/lib
then run
ldconfig

Get the source from http://www.gingerall.com
http://download-2.gingerall.cz/download/sablot/Sablot-0.96.tar.gz
tar -pxzf Sablot-0.96.tar.gz
cd Sablot-0.96
./configure
make
make install
ldconfig
cd ..
rm Sablot-0.96*

Then recompile PHP using –enable-xslt –with-xslt-sablot in the cofigure line.

Had a problem with error messages found a site
http://archive.gingerall.cz/archives/public/sablot2002/msg02029.html

Then used the patch and it worked great
in the Sablot dir
wget http://phpfaq.info/sablot/Sablot-0.96.1.patch
patch -p2 < Sablot-0.96.1.patch

Coolsearchinfo - A free Social Bookmarking Site

Liked this article? To continue getting our latest free Howtos and Tutorials,
you can also grab the RSS feed or Subscribe to Techgurulive by Email

Not Getting



Related posts
  • Apache Sample Use of the configure Script
    By now you must be familiar with a lot of configure options. However, each Web server administrator operates under different circumstances and is influenced by different perceptions. To me, the...
  • How to Install and Configure APC for PHP on Linux
    APC is the Alternative PHP Cache, which is a free, open, and robust framework for caching and optimizing PHP intermediate code. What this means is that APC reads your PHP...