Change Default Country on Google Apps (even free edition)

Change Default Country In Google Apps     Once your default country is selected in your Google Apps account you cannot change it. Sometime it becomes necessary to change the default country for eg: when you change your country.   To force the change follow the steps below: Login to… Continue reading

Kaspersky 2012: download link

  for the 2013, go here Internet Secutirity http://usa.kaspersky.com/files/?file=kis&lang=en&ver=2013&trial=y&pn=Downloads+%7C+Free+Trials+%7C+Home+User+%7C+-+Thanks   Go here (2012): Anti-Virus http://usa.kaspersky.com/files/?file=kav&lang=en&ver=2012&trial=y&pn=Downloads+%7C+Free+Trials+%7C+Home+User+%7C+-+Thanks

Facebook: Creating your first APP in PHP

So you finally decided you want to create a Facebook app to make your million dollar idea pay off a million dollars! Great!   Cutting to the chase:   1. Install the Developers App so you can get started creating apps on Facebook. https://developers.facebook.com/ and click Allow 2. Create and… Continue reading

Code:: css-form

I just started a Google Code hosted project since I'm always in need of pretty forms for my HTML things. Let me know if you want/can contribute to it. It's currently licensed under GPL 2.0 Here's the address: http://code.google.com/p/css-form     Why: I want to keep my css/javascript/html 5 knowledge current

LAMP: Installing PECL HTTP

    Enable the pecl command: # apt-get install libmagic-dev Install curl support # apt-get install libcurl3   # pecl install pecl_http   pecl downloads and compiles. Follow the prompts and if any development library is not available, just use apt-get to install it. After pecl is done, just add… Continue reading

Brighter LAMP: phpmyadmin installation

Install mcrypy for phpmyadmin dependencies:   # apt-get install php5-mcrypt   Now you need to restart apache for the changes to take effect   # /etc/init.d/apache2 restart   Now, on to the installation: # apt-get install phpmyadmin   Choose Apache2 when you're prompted     Answer yes to Configure database… Continue reading

Setting up a Debian box for development: making a LAMP: php5

Now P for PHP 5:   # apt-get install php5 php-pear php5-suhosin   # nano /etc/php5/apache2/php.ini   max_execution_time = 30 memory_limit = 64M error_reporting = E_COMPILE_ERROR|E_RECOVERABLE_ERROR|E_ERROR|E_CORE_ERROR display_errors = Off log_errors = On error_log = /var/log/php.log register_globals = Off   Add mysql support. # apt-get install php5-mysql      

Setting up a Debian box for development: making a LAMP: mysql

Let's make a lamp   First M for Mysql: # apt-get install mysql-server The script will ask you to define the password for the root mysql user: Secure your mysql installation: # mysql_secure_installation   NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL       SERVERS IN PRODUCTION… Continue reading

Setting up a Debian box for development: making a LAMP: apache2

Add a user for the web stuff # adduser httpd Choose a simple (but secure) password. # apt-get install apache2 Reading package lists… Done Building dependency tree Reading state information… Done The following extra packages will be installed:   apache2-mpm-worker apache2-utils apache2.2-bin apache2.2-common libapr1 libaprutil1 libaprutil1-dbd-sqlite3   libaprutil1-ldap Suggested packages:… Continue reading

Setting up a Debian box for development: linux installation

This will be a work in progress series of posts to help people get into the amazing world of developing applications on the web. Will also give me opportunity to fine tune my knowledge.   This will be the L in LAMP, here we go:   1. Download a Debian… Continue reading