Technology related solutions, tips, tricks, and other interesting topics
The favicon used for a Joomla 1.5 web page is located in the directory for the template which the web page is currently using. For example, if the website template you are using is named “foo” then the favicon.ico file will be located at “/templates/foo/favicon.ico”. Simply replace that favicon.ico file with your custom favicon.ico file [...]
Google Code University offers free training for computer programming. The training consists of a website which contains training materials such as slide shows, videos, and problem solving sets. Here is an excerpt from the Google training website which describes the training offered: This website provides tutorials and sample course content so CS students and educators [...]
In: Web Development
10 Jan 2008Sometimes while debugging a PHP application it is handy to display request and post variables. Here is the code that will do that: foreach($_POST as $var=>$val) { echo “$var=$val”; } Replace POST with SESSION and it’ll work for the session variables. You can do the same with GET, but probably don’t need it.
In: Web Development
6 Jan 2008I normally use Joomla for website development so I am still in the process of learning WordPress. “Cheat sheets” always help me remember those little important details you come across while learning a new topic. I found a couple of PDF help sheets for WordPress that look like they will be very handy to keep [...]
This blog is about technology related topics. It will primarily contain problems and solutions to IT problems that I encounter on a day-to-day basis. In addition interesting things I come across either on or off the internet will be posted here as well. I will also include step-by-step tutorials to common tasks people may need to do with their computers.