Upgrading Ruby LSAPI on LiteSpeed
Upgrading the Ruby LSAPI is much simpler than upgrading PHP. When working on this it is not required by recommended that you shut down the LiteSpeed web server before upgrading the LSAPI. After the web server is not running just run the following command you will be running the latest version of Ruby LSAPI.
gem update ruby-lsapi
Upgrading PHP LSAPI on LiteSpeed
Introduction
Upgrading PHP on LiteSpeed web server is not that hard but requires a few steps in order to bring the PHP version from the shipped version (4) to the latest version of PHP. The following will walk you through the necessary steps in order to successfully upgrade the PHP implementation in LiteSpeed web server.
Nginx on Solaris 10 11/06 5
Introduction
Nginx is a small webserver that has been built for speed and scalability. It is used for many large sites in Russia and is quite stable. I have been using this webserver for quite some time in a testing environment, I am very satisfied with its performance and memory footprint.
Tip of the Day - Compiling in Solaris
I have a few tips that you might find useful in my experiences with building open source application under solaris 10.
On a default install solaris supplies the GCC tool-chain. You need to have the following two directories in your path. Put the following in your .profile.
export PATH=/usr/ccs/bin:/usr/sfw/bin:$PATH
I have also had more success with working in the bash shell over tcsh. This might just be the fact that I am more familiar with bash.
Installing Subversion 1.4.5 From Source on Solaris 10 1
Introduction
This guide will go through the installation process of building subversion from source on Solaris 10 machine. These instructions can be ported to almost any platform supported by subversion. Subversion is used in many development areas when losing progress and tracking changes is important. Which is basically all the time. That being said I use subversion for all my development projects because it is very efficient version control system, also it can be used over SSH without even setting up Web_DAV access or running the included svn server. Enjoy the post and by all means enjoy subversion. You will never look back.