Symphony Installed!
Jan. 6th, 2009 08:27 amI got Symphony installed and working on my server! The kink,for the curious, was one of the requirements listed on the Symphony website: "LibXSLT Processor - XSL Module (Provided by LibXML)""
For this in Ubuntu (Hardy), I needed to install libxml2 (XML C parser/ toolkit for Gnome,) which I had to download, then compile and install. (The version available at the time was 2.6.32.
So in the terminal I did the following to download and extract Libxml2:
Then I configured Libxml2 library, and compiled with:
Really simple fix. After that, everything was great and I now get to play with Symphony. The default theme is awesome, btw.
For this in Ubuntu (Hardy), I needed to install libxml2 (XML C parser/ toolkit for Gnome,) which I had to download, then compile and install. (The version available at the time was 2.6.32.
So in the terminal I did the following to download and extract Libxml2:
wget ftp://xmlsoft.org/libxml2/libxml2-sources-2.6.32.tar.gz
tar -xvzf libxml2-sources-2.6.32.tar.gz
cd libxml2-2.6.32
Then I configured Libxml2 library, and compiled with:
./configure --prefix=/usr/local/libxml2
make
sudo make install
Really simple fix. After that, everything was great and I now get to play with Symphony. The default theme is awesome, btw.