Browsing articles from "October, 2009"
Oct
9
2009

Install FontMatrix on Ubuntu 8.04 Hardy Heron

FontMatrix is a font manager available for Linux. It can be used to preview fonts installed on the System. To install FontMatrix on Ubuntu 8.04 the deb file can be downloaded from : http://www.getdeb.net/app/Fontmatrix

Oct
4
2009

PATH_INFO, ORIG_PATH_INFO, APACHE and PHP

A little while back I was trying to make a router for my application which I had grouped into classes. So a url could be like this : www.site.com/index.php/class_name/method?id=15 or www.site.com/index.php/controller/action?id=15 in the MVC style or localhost/project/index.php/class_name/method?id=15 PHP MVC frameworks like codeigniter use urls like that. Apache makes available a variable called PATH_INFO to PHP which stores the portion of the url between script and query string that is /class_name/method On Localhost index.php print_r($_SERVER) shows [...]