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 […]
Author: alamster
Deploy google app engine : appcfg.py
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 […]
Testing php script on google app engine
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 […]
install php sdk for google app engine on ubuntu 13.04
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/ $ […]
old-releases.ubuntu.com vs us.archive.ubuntu.com
As copy paste user I never realized the difference between that address :us.archive.ubuntu.com and old-releases.ubuntu.com Yes, old-release hold old version ubuntu that not supported any longer. I see that when I need to install php5-curl on Maverick and I get 404 message. Change sources.list entry from us.archive.ubuntu.com to old-releases.ubuntu.com give me php5-curl 🙂 # apt-get […]