Joomla with Bangla font

If you want to use bangla font with joomla then you have to edit the template’s css file.
You will get the template.css file under your template folder and edit it with following code.

Put this in the begining:

Code:
@font-face{
font-family:SolaimanLipi;
font-style:normal;
font-weight:normal;
src:url(solaima0.eot);
}

Then, use SolaimanLipi as usual in your css tags.

How to easily mirror an entire web site locally

It’s very easy to mirror an entire web site on your local machine thanks to the terminal command wget, here’s how to do it: Launch the Terminal and type the following command, replacing google.com (a tiny website) with the URL you desire to mirror locally. wget -m http://www.google.com/ This will download the entire site on your local drive in a directory named the websites URL… note that this isn’t a particularly effective way to truly backup a website and it’s functionality, it’s simply mirroring it locally.