Joomla tags

a real free joomla tag system

  • Increase font size
  • Default font size
  • Decrease font size
Joomla Tutorial, useful Tips and tricks

Best Joomla Hosts & Coupon Codes

Best Joomla Hosts

Joomla is one of the best content management systems that you can use to manage your website. While there are many hosts that offer Joomla, there are relatively few that are optimized for the best Joomla hosting. If you want your website to run its best, then you need to know what to look for in your host. This article will explain what you should look for in a Joomla host, and it will also review three of the best Joomla hosts.

Things to Look For

There are many things you should look for before deciding on your Joomla host. The basic things that you should check are the uptime, server speed, the control panel and the host’s customer service. You should then check to see what software the host supports. Joomla websites run best if the host supports the latest versions of PHP and MySQL. The host should also have FTP access and log files.

While a program that can quickly install scripts like Joomla is useful, it isn’t necessary if you know how to manually install the script.

1. BlueHost

BlueHost is one of the best Web hosts around, and you get everything you need for a great Joomla website. BlueHost offers exceptional customer service, the latest versions of both PHP and MySQL, log files, FTP access and there is a program that allows you to quickly install Joomla. You also get the cPanel software to manage your website.

BlueHost also offers amazing uptime. Most hosts offer 99.9 percent uptime, but BlueHost has 99.99 percent. That may not seem like a big increase, but it ensures that your website will always be up and running. It’s best to go with a host that has superb uptime.

BlueHost has some other features that you may like. You can host an unlimited number of domains, your first domain name is free for one year and you get an unlimited amount of memory and bandwidth.

You can visit the BlueHost website here – http://www.bluehost.com

For Bluehost coupon codes visit - http://www.wpcoupon.net/bluehost-coupon-codes

2. Hostmonster

Hostmoster is similar to BlueHost in many ways. You get great customer service, and Hostmonster also has the most current versions of MySQL and PHP. Log files and FTP access are offered, and you can easily install Joomla with their automatic installer. Hostmonster also uses the same cPanel management software.

Hostmonster guarantees 99.9 percent uptime, but various tests have shown that Hostmonster exceeds this guarantee by having 99.99 percent uptime for over 2,000 days.

The main difference between Hostmonster and BlueHost is the price. You get almost all of the same benefits that BlueHost offers, but you pay slightly less per month with Hostmonster. At the same time, you should compare the two to see which one you personally like best.

You can visit the Hostmonster website here – http://www.hostmonster.com

You can find a nice Hostmonster coupon code here - http://www.wpcoupon.net/hostmonster-coupon-codes

3. Host Gator

Host Gator is another premium host that gives you everything you need for your Joomla website. You get the basic elements like PHP, MySQL, FTP and log files. Host Gator also uses cPanel, and there is an installer program so that you can easily install Joomla. Host Gator’s uptime is similar to Hostmonster because you get a guaranteed 99.9 percent uptime, but various tests have shown that the uptime is closer to 99.99 percent.

Host Gator is different from BlueHost and Hostmonster. There are three packages that you can choose from. Each one offers a different amount of computer resources and features. If you just want to host one website, then you can get cheap hosting with the Hatchling plan. If you want extra benefits and great ecommerce features, then select either the Baby or Business package.

If you want to do more with your website than just host content, then check Host Gator’s additional features.

You can visit the HostGator website here – http://www.hostgator.com

Find Hostmonster coupon codes here – http://www.wpcoupon.net/host-gator-coupon-codes

Conclusion

Many Web hosts allow you to easily install Joomla, but few hosts give you all the features you need to successfully run a Joomla website. If you are looking for the best host, then try one of the three above. They offer you everything you need, and their fees are very reasonable.

 

remove svn folders under linux

A simple and easy way to remove all svn folders and files from your hosting server:

find ./ -name ".svn" | xargs rm -Rf
 

4 plugins can boost your joomla site

The following plugins can boost your joomla site's performance greatly.

  1. Google Ajax Library

    Plugin Google Ajax Library can host Mootools(70K),Prototype,JQuery,YUI libraries, which can save bandwidth and speed up your site's response.

    Tips:This plugin is suitable for all joomla site.

  2. CssJsCompress

    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. These optimizations may reduce server load, bandwidth requirements, and page loading times.

    Tips:This plugin is suitable for most joomla site.

  3. Phil Taylor's SPEED UP your Joomla Admin Console

    Plugin Phil Taylor's SPEED UP your Joomla Admin Console can use Google Gears to speed up your Joomla administration.

    Tips:This plugin can only speed up your administration, can't speed up your front side.

  4. Content static

    Plugin Content Static can convert your joomla site into html static files, which saves the need for costly SQL resources to load pages from a database.

    Tips:This plugin can boost your site mostly, however it doesn't work with vote,reviews etc.

If you use all of the plugins, please notice the order of them. They should have the following orders: Google Ajax Library < CssJsCompress < Phil Taylor's SPEED UP your Joomla Admin Console < Content Static(From low to high).

 

Tags:
 

How to improve your site's YSlow grade

Here are some tips to improve your site's YSlow grade:

  • Turn off Etag.

    Just add the following code to your .htaccess file:

    FileETag None
    
  • Add an Expires header to your web component.

    To add an expires header to images, stylesheets, scripts, Flash, just add the following code to your .htaccess file:

    <IfModule mod_expires.c>
    ExpiresActive On
    ExpiresDefault A600
    ExpiresByType image/x-icon A2592000
    ExpiresByType application/x-javascript A604800
    ExpiresByType text/css A604800
    ExpiresByType image/gif A2592000
    ExpiresByType image/png A2592000
    ExpiresByType image/jpeg A2592000
    ExpiresByType text/plain A86400
    ExpiresByType application/x-shockwave-flash A2592000
    ExpiresByType video/x-flv A2592000
    ExpiresByType application/pdf A2592000
    ExpiresByType text/html A600
    </IfModule>
    
    # The following list can help you to convert common time intervals into seconds:
    # 300 = 5 minutes
    # 2700 = 45 minutes
    # 3600 = 1 hour
    # 54000 = 15 hours
    # 86400 = 1 day
    # 518400 = 6 days
    # 604800 = 1 week
    # 1814400 = 3 weeks
    # 2419200 = 1 month
    # 26611200 = 11 months
    # 29030400 = 1 year = never expires
    This need apache has installed mod_expires.
  • Make fewer HTTP requests

    You can use Joomla Plugin: CssJsCompress to aggregate all JavaScript and CSS files into one file, and use inline image combine all CSS images into a single image file.

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:
 
  • «
  •  Start 
  •  Prev 
  •  1 
  •  2 
  •  Next 
  •  End 
  • »


Page 1 of 2