Another server came and the requirement still same. PHP 5.2.17 is a must. I only have 2 options from the vendor; using ubuntu or freebsd. Its 2013 and all support for php 5.2 on ubuntu server already gone. I have one option left for this job. FreeBSD. Since my last work with FreeBSD I also […]

I’m programmer and not designer. That is my main reason to use css framework. To speed up development, specially in early development phase. Feature change and so on, no need to get polished and clean interface. Just simple but logic presentation. Bootstrap come to rescue and since version 3 the documentation is lack and force […]

Deploy php script aka application to google app engine is interesting. I came from traditional ftp-ing (so 1999 hehehe), scp and cpanel. Google app engine provide 2 ways of deployment; through appcfg.py and via git. I’ll try to explore both options now. Preparation In this stage, application need to get register first to App Engine Administration […]

On last post I’ve wrote about howto install the google app SDK for PHP . Today I want to continue with simple testing. How to run php script using google app engine on my Ubuntu 13.04 desktop : 1. Setting PATH to google app engine by edit .profile $ cd $ nano .profile add this […]

Another need for try php on google app engine make install all required stuff : Install python $ sudo apt-get install python Check version : $ python -V Python 2.7.4 Install PHP CGI Download latest php 5.4 from download page : $ wget -c http://au1.php.net/get/php-5.4.22.tar.gz/from/this/mirror -O php-5.4.22.tar.gz $ tar xvzf php-5.4.22.tar.gz $ cd php-5.4.22/ $ […]