|
Listed below are some quick tips to speed up you Mambo site:
1- Enable GZIP compression: login to your admin backend interface>> from “site" drop down menu click on "Global Configuration" >> Click on the server tab >> change "GZIP Page Compression" option to yes
2- Remove any unused CSS classes from your csstemplate_css.css file to reduce its size, you can use "Web Developer Toolbar" extension available for Mozilla Firefox 0.8 browsers to see the current used classes for each page, but make sure you don't remove classes for the frontend admin section.
Click on "Read more" to continue...
3- Disable your HTML editor for guest visitors by changing the following 2 lines in your template index.php file
from
<?php include ("editor/editor.php"); ?>
<?php initEditor(); ?>
to
<?php
if ($my->id) {
include ("editor/editor.php");
initEditor();
}
?>
4- Optimize all images for size, combine them, and replace graphic rollovers with CSS rollovers to speed display and minimize HTTP requests.
5- Reduce the number of objects (images, javascripts, etc...) on the page to increase your page response time.
6- Last but not least, consider using caching techniques, many techniques are now available. Do a research to find the most suitable technique for your web host environment.
|
Written by Guest on 2005-08-08 08:06:58 |
Only registered users can write comments. Please login or register. Powered by AkoComment 2.0! |