How to use .htaccess
introduction to .htaccess
There’s a good reason why you won’t see .htaccess files on the web; almost every web server in the world is configured to ignore them, by default. Same goes for most operating systems. Mainly it’s the dot “.” at the start, you see?
If you don’t see, you’ll need to [...]
Archive for the ‘Uncategorized’ Category
How to use .htaccess
Posted in Uncategorized, tagged htaccess on May 8, 2008 | Leave a Comment »
SVN Setup
Posted in Uncategorized on October 20, 2007 | Leave a Comment »
Setting up a SVN 1.4 server using Apache 2.2 on Ubuntu
To setup svn 1.4 , we need to compile both apache 2.2 and svn 1.4 from source.
This how to has been tested under Ubuntu Dapper and Edgy.
sudo apt-get install build-essential libneon25-dev autoconf libtool -y –force-yes
Before starting make sure you have removed previous apache2 and [...]
php Tips
Posted in Uncategorized on August 9, 2007 | Leave a Comment »
Turn On Error Reporting Immediately
The single most important thing I tell people who use PHP is to turn error reporting to its maximum level. Why would I want to do this? Generally the error reporting is set at a level that will hide many little things like:
* declaring a variable ahead of time,
* referencing [...]