Monthly Archive: March 2010

Mar
31

Installing new font in Mac OS X and Window

Font can be downloaded from http://www.1001freefonts.com/medieval-fonts.php (NOTE: Commercial use need to have license) Mac OS X: Download the font for Mac OS X Double click on the downloaded font (.ttf extension), “Font Book” will be opened and click on “Install Font” Window: Download the font for Window Go to “Control Panel” and click on “Fonts”. …

Continue reading »

Permanent link to this article: http://lindaocta.com/?p=303

Mar
29

Install Apache2, Php5 and MySql on Ubuntu 9.10

Step 1. List of libraries needed for Apache2, Php5 and MySql for Ubuntu: apt-get update apt-get install  apache2 libapache2-mod-php5 mysql-server libapache2-mod-auth-mysql php5-mysql php5 Step 2. Turn on php module to work with Apache: a2enmod php5 Step 3. If you have .phtml or .pl file, remember to add to the follwing line to apache configuration file …

Continue reading »

Permanent link to this article: http://lindaocta.com/?p=290

Mar
28

Increase file upload for php in Apache

When working with moodle, I always encounter file upload size problem (normally 2M). To increase file upload size, edit /etc/php5/apache2/php.ini file (in Ubuntu 9.10) for PHP 5 and Apache 2 by changing the upload maximum filesize to the size you want: upload_max_filesize=30M Save the file and restart apache: sudo /etc/init.d/apache2 restart

Permanent link to this article: http://lindaocta.com/?p=298

Mar
16

iFolder Client on Ubuntu 9.10

Installing ifolder client in Ubuntu 9.10: Step 1. Add source list to aptitude by: sudo add-apt-repository ppa:marceloshima/ppa or manually add the following lines to /etc/apt/sources.list: deb http://ppa.launchpad.net/marceloshima/ppa/ubuntu karmic main deb-src http://ppa.launchpad.net/marceloshima/ppa/ubuntu karmic main Step 2. Update aptitude to get the latest list of software: sudo apt-get update Step 3. Install ifolder3 sudo apt-get install ifolder3 …

Continue reading »

Permanent link to this article: http://lindaocta.com/?p=293