Joomla tags

a real free joomla tag system

  • Increase font size
  • Default font size
  • Decrease font size

Tags for Joomla

JoomlaTag is a real tag system for Joomla. We give the first test

Current features:

Front end features:

  • Show tags at the bottom of each article.
  • Tag list view

Back end features:

  • Term editable.
  • Batch tag management.

Coming features:

Front end features:

  • Most hits tags.
  • Latest tags.
  • Tag blog layout view.
  • Tag sitemap.
  • Tag pagenation.

Back end features:

  • Tag pagenation.
  • Auto extractable tag.

To make it perfect, Please give your advice and feature requests.

Tags:
 

Add or remove prefix 'www' to or from your site url via htaccess

If your site can be accessed both with and without the 'www.' prefix, you can use one of the following settings to redirect users to your preferred URL, either WITH or WITHOUT the 'www.' prefix. Choose ONLY one option:

  • To redirect all users to access the site WITH the 'www.' prefix, (http://joomlatags.org/... will be redirected to http://www.joomlatags.org/...), please add the following code to your .htaccess file:

       RewriteCond %{HTTP_HOST} ^joomlatags\.org$ [NC]
       RewriteRule ^(.*)$ http://www.joomlatags.org/$1 [L,R=301]
    
  • To redirect all users to access the site WITHOUT the 'www.' prefix, (http://www.joomlatags.org/... will be redirected to http://joomlatags.org/...) please add the following code to your .htaccess file:

       RewriteCond %{HTTP_HOST} ^www\.joomlatags\.org$ [NC]
       RewriteRule ^(.*)$ http://joomlatags.org/$1 [L,R=301]
    

please remember to change joomlatags.org to your domain name.

Tags:
 

34 Best Practices for Speeding Up Your Web Site

Best Practices for Speeding Up Your Web Site

  • Minimize HTTP Requests
  • Use a Content Delivery Network
  • Add an Expires or a Cache-Control Header
  • Gzip Components
  • Put Stylesheets at the Top
  • Put Scripts at the Bottom
  • Avoid CSS Expressions
  • Make JavaScript and CSS External
  • Reduce DNS Lookups
  • Minify JavaScript and CSS
  • Avoid Redirects
  • Remove Duplicate Scripts
  • Configure ETags
  • Make Ajax Cacheable
  • Flush the Buffer Early
  • Use GET for AJAX Requests
  • Post-load Components
  • Preload Components
  • Reduce the Number of DOM Elements
  • Split Components Across Domains
  • Minimize the Number of iframes
  • No 404s
  • Reduce Cookie Size
  • Use Cookie-free Domains for Components
  • Minimize DOM Access
  • Develop Smart Event Handlers
  • Choose <link> over @import
  • Avoid Filters
  • Optimize Images
  • Optimize CSS Sprites
  • Don't Scale Images in HTML
  • Make favicon.ico Small and Cacheable
  • Keep Components under 25K
  • Pack Components into a Multipart Document
Tags:
 

Tips and Frequently asked questions on CssJsCompress

Some tips and frequently asked questions on Joomla plugin CssJsCompress.

  • Why the plugin doesn't work after I turn on "GZIP CSS and JS"?

    Before enable "GZIP" compress, please make sure:
    Apache has installed zlib.

  • How do I know apache have installed zlib?

    On administrator control panel, Help-->System Info-->PHP Information. (or open the following url:/administrator/index.php?option=com_admin&task=sysinfo).
    If php has enable zlib, you should find zlib block.

  • Do "Optimize CSS files" and "Optimize JavaScript files" need zlib?

    No. Only you have set "GZip Javascript and Css" to "yes", you need Zlib.

  • If "Optimize CSS files" doesn't work on my site, can I only turn on "Optimize JavaScript files"?

    Yes, you can only turn on css or js optimize. At the same time, you can turn on "Optimize JavaScript files" and "GZip Javascript and Css",
    so long as you have installed zlib

  • If you include "includes/js/joomla.javascript.js" file, the plugin can't load javascript correctly.

    Please remove the first line:

    // 
  • How to use "Exclude Components" ?

    After enable CssJsCompress, all site works fine except some component.
    For example, after enable CssJsCompress, only Virtuemart doesn't work fine, thus you can add "com_virtuemart" to "Exclude Components".

  • How to use "Exclude CSS Files"?

    After you enable the CssJsCompress plugin, some module don't show correctly, then you can try to add the module introduced CSS Files to "Exclude CSS Files".

  • How to use "Exclude JavaScript Files"?

    After you enable the CssJsCompress plugin, some module JavaScripts don't work correctly, then you can try to add the module introduced JavaScripts to "Exclude JavaScript Files".

  • How to solve jquery and mootools both exist problem?

    Please fill in Custom JavaScript Order in the following orders: jquery file,jquery plugins, and all files build in jquery, mootools files. For example:

    jquery.js,easySlider1.7.js,mootools-uncompressed.js
    Please remember to change the jquery and jquery plugin to your own site's file. You also need to JQuery No Conflict to no.

     

  • How to use "JQuery File Name"?

    JQuery have conflict with Mootools. When your site have both JQuery and Mootools libraries, you need tell the plugin "JQuery File Name", so that CssJsCompress can do some special handle. Your site's JQuery library may have a name of jquery.js, jquery.min.js, jquery1.2.6.js or any other names, please input exactly the same name with your site.

  • How to use "JavaScript Custom Order"?

    JavaScript files may depend on other JavaScript Files. For example, some JavaScript files may depend on mootools and jquery, so these files should appear after mootools or jquery. Perhaps you can refer How to solve jquery and mootools both exist problem?

Tags:
 

Joomla Plugin Css and Javascript aggregate and compress

Joomla Plugin CssJsCompress can automatically optimize external resources like CSS
and JavaScript,   which can reduce both the size and number of requests made to your website.

CSS files can be aggregated and compressed into a single file,
while JavaScript files are only aggregated (but not compressed).
These optimizations may reduce server load, bandwidth requirements, and page loading times.

According to Best Practices for Speeding Up Your Web Site , to build a high performance web site, here are the most important  best practices:

  1. Minimize HTTP Requests
  2. Add an Expires or a Cache-Control Header
  3. Gzip Components

Joomla Plugin CssJsCompress can help you achieve the above practice easily.

 

 

After aggregation of css and js

After compression:

 

 

CSS File Number Css FileSize Js File Number Js File Size Total Http Requests
Before Aggregation 10 60.5K 7 97K 35
After Aggregation 1 62.7K 1 97K 20
After GZip 1 8.7K 1 26.8K 20


From the above data, we know

  1. Css and javascript aggregation can decrease the http requests dramatically for those sites built with a lot of modules(Usually a lot of css and javascript files.)
  2. GZip can compress css and javascript files a lot. The plugin only need to compress the css and javascript files once, so this can save a lot of CPU times, and give a repeat response.

Tips:

  1. Put plugin CssJsCompress just before System plugin Cache, so that it can include all other plugin's result and be cachable.
Tags:
Attachments:
Download this file (CssJsCompress3.5.zip)CssJsCompress3.5.zip
 


Page 3 of 4