Archive by Author

Install php from source – custom path

Hey guys, Recently I wanted to give php 5.4 a go but without interferring with my current setup, so I choosed to run it as fcgi. In order to do that I wanted to compile php from source, enabling the … Continue reading

Install eaccelerator from scratch – Centos

1. download the source code and upload it to your server 2. execute export PHP_PREFIX=”/usr/local/php/” where /usr/local/php/ is my path to where php is installed 3. $PHP_PREFIX/bin/phpize 4. ./configure –enable-eaccelerator=shared –with-php-config=$PHP_PREFIX/bin/php-config 5. make 6. make install 7. now go to … Continue reading

Cakephp – JsController could not be found

Recently I wanted to test the ajax capabilities from cakePHP and after setting up the links to prototype.js and scriptaculous.js just as shown on cakePHP website, I’ve noticed the ajax is not working. In the javascript error console I noticed … Continue reading

SVN set up for multiple projects

just a quick tutorial how to set up subversion, aka SVN to be used with multiple projects. Setting up only one repository has the downside of incrementing revision number for all the projects no matter what project is modified. The … Continue reading