How to setup gzip compression
Tech-Today

How to setup gzip compression


Using php we can start gzip using the following code


ob_start("ob_gzhandler");


The code returns false if the browser does not support compression and the default ob_start is called.

This is one way of optimizing your website, specially those sites that load multiple images and files.




- How To Setup Your Wordpress Website In Nginx Server
Long ago I learned of the advantages of nginx over apache, just google it. Planned to migrate our sites but didn't manage to do it until last weekend. So here's what I did to do that: I'm assuming you already have a functional wordpress with...

- Web Development
WordpressConfigure Custom Wordpress PermalinkZencartHow to add a customize product admin fields in zencart by editing/adding extra codesJoomlaHow to install/setup/configure joomla to run in a xampp setup. This avoids the technical detail of manually installing...

- How To Setup Openvpn To Access To A Remote Internal Network From Home
This write up will help you setup open vpn for remote access. I'm assuming you're using a windows machine :-) 1. First download and install the OpenVPN client from: http://openvpn.net/index.php/open-source/downloads 2.) Ask for the ff files...

- Jquery Wait For All The Images To Be Loaded Before Calling An Action, Such As Image Caption
Recently I've just wanted a nice rollover caption implemented on our wedding invitation website, such on a list of wedding invitations, when you hover on one, a caption will be shown. Of course, there are some wedding invitation categories that would...

- Codeigniter: Unable To Load Model
If you are getting the above error, just take note of the "file case" specially on linux servers. $this->load->("MyModel"); $this->load->("myModel"); $this->load->("Mymodel"); Are three different things. :-)...



Tech-Today








.