To find the module positions in Joomla! you can, if logged in as admin, navigate to your site URL and add “?tp=1” to the end of it.
e.g. http://www.yoursite.com?tp=1
(Hats off to Mr. Steve Groombridge for this tip)
UPDATE
Oracle Finalises deal to acquire Sun
An announcement on their website (http://www.oracle.com/us/sun/index.htm ) states:
“we plan to engineer and deliver open and integrated systems—from applications to disk—where all the pieces fit and work together out of the box.”
(Note the use of small “o” in “Open”)
Help keep the Internet free
“A big part of the Internet is built on LAMP (Linux, Apache, MySQL and PHP/Perl/Python). Now Oracle is trying to buy Sun, which owns MySQL. Read more…
I was recently asked a question about port numbers on web servers. This answer will apply to any DMZ host, whether http, ftp, telnet or ssh.
The question as phrased was:
If you decided to use a different port for your web server (say port 8080), how would a user make requests to your web server?
Read more…
When using the “body background” HTML tag, you might find that smaller images tile (repeat) across the whole page.
You can use this css to prevent this.
<style type=”text/css”>
body
{
background:url(‘your-photo.gif’) no-repeat;
}
</style>