Right now T-mobile Croatia has very attractive offer for GPRS/3G – if you have your own 3G modem it will cost you only $4 for 500MB.
Read more »
Monthly Archives: July 2011
Prepaid mobile data in Croatia: 500Mb for 4 USD
Posted by admin
on 07/27/2011
No comments
X-Robots-Tag in headers – fine grained crawlers control in apache
Posted by admin
on 07/26/2011
No comments
I was asked to implement X-Robots-tag on one of our dedicated servers the other day.
This google document explains in the great details what it does and how it influences your site presentation on the search engine.
Read more »
Django on cpanel server for shared web hosting
Posted by admin
on 07/18/2011
No comments
I had a customer request to install Django on cpanel server shared account the other day – took me some time to get it going, mostly because of easyapache not willing to play nice.
Other then that, Jimmy’s blog entry here provides excellent instructions on how to configure it, the only difference being that his cpanel server already had mod_fcgid installed.
So, what I’ll do is just quick recap:
Things to do as root
- Make sure your apache had mod_fcgid compiled, if not – run easyapache script from SSH or from WHM web page and make sure mod_fcgid option checked
- Install easy_install script –
123456#cd /usr/src/#wget http://pypi.python.org/packages/2.4/s/setuptools/setuptools-0.6c11-py2.4.egg#sh setuptools-0.6c11-py2.4.egg - Use easy_install to install a couple Python packages –
123456#cd /usr/src#./easy_install flup#./easy_install django - Restart apache, make sure mod_fcgid is loaded
This is it – you can notify customer that he can do his django magic – all prerequisites are in place.