Joomla Hosting BLOG

Blog about Joomla, Technologies and Hosting Service

Joomla Hosting :: How to Remove mootools-core.js and caption.js from Joomla

clock February 9, 2015 07:02 by author ben

Today, we will explain to you How to Remove mootools-core.js and caption.js from Joomla. When I form a site I need to evacuate any unneeded outer JavaScript records in the html to help enhance the execution of the site.
So when I make a fundamental substance page utilizing an article design with no modules I am astonished to see these 3 lines

<code>

<script src="/media/system/js/core.js" type="text/javascript"></script>
<script src="/media/system/js/mootools-core.js" type="text/javascript"></script>
<script src="/media/system/js/caption.js" type="text/javascript"></script>

</code>



This happens on both joomla 1.5 and 1.6 When I looked around the web for an answer I continue discovering the response to be utilize standard statement on the last yield to evacuate it. While this will evacuate it, I needed to comprehend why this is included. It ought to in principle just be included when it is required. On the off chance that I include a module that does need mootools then I would prefer not to be uprooting the script document.

It will break the module. Not being a center hack is likely the main fortunate thing about this system. Since Joomla will just add records that are advised to be incorporated, so I chose to work out why they were being advised to be incorporated when nothing on the page needs them.

The Reason

Delving into why, this is the thing that I found: In the com_content part it is calling

<code>

JHtml::_('behavior.caption');

</code>


This one line is bringing on those 3 JavaScript documents to be added to the page It is either a disregarded bug, or evacuating it causes different bugs to be noticeable.

Instructions to alter

You should do nothing more than remark out a line in a center segment com_content. <b>This is a center hack</b> any redesign will return this change and you will need to physically overhaul it. alright on to the fix.

In the file: “/components/com_content/controller.php” find: “public function display($cachable = false, $urlparams = false)”   we just comment out:

<code>

JHtml::_('behavior.caption');

</code>


so it will become

<code>

//JHtml::_('behavior.caption');

</code>


Thats it!

Best Joomla Hosting Recommendation

ASPHostPortal.com provides our customers with Plesk Panel, one of the most popular and stable control panels for Windows hosting, as free. You could also see the latest .NET framework, a crazy amount of functionality as well as Large disk space, bandwidth, MSSQL databases and more. All those give people the convenience to build up a powerful site in Windows server. We offers Joomla hosting starts from $1/month only. We also guarantees 30 days money back and guarantee 99.9% uptime. If you need a reliable affordable Joomla Hosting, we should be your best choice.



Joomla Hosting - ASPHostPortal.com :: How to Remove index.php from existing Joomla! SEF URL's

clock February 6, 2015 07:06 by author ben

So you set up your Joomla! site, made it live, and a couple of weeks/months/years after the fact understood that you'd neglected to empower the Htaccess document for SEF Url's. The deciding result being that instead of having a decent Search Engine (and client) cordial URL like/classification/Blogs/post/, you rather have/index.php/class/Blogs/post/.

You could simply empower the Htaccess record, yet all the old URL's will give back a 404. Not extraordinary if your site has as of now been listed via web search tools, even less incredible on the off chance that you've got bunches of inbound connections on different locales.

It's really amazingly easy to resolution, and in this post I'll be demonstrating to you the two simple steps you have to take to arrange your site to divert the old/index.php/* Urls to the decent SEF ones you need.

The primary step is basic, we have to empower the Htaccess document (accepting you haven't as of now). In the foundation of your Joomla! site is a record called htaccess.txt, rename it to .htaccess

Second step: We have to add a mod_rewrite standard to catch the old-style joins. Open .htaccess in a content manager and discover the line "Rewriteengine On". Instantly underneath include the accompanying (lines with a hash are remarks, you can skirt these if necessary)

# Make sure the requested URL isn't a file or directory
# Why you'd create a directory called index.php, but best to be sure
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f

# Use a reg-Ex to find URL's where index.php is followed by something.
# If so, create a redirect to whatever followed the slash
RewriteRule ^index.php/(.*)$ /$1 [R=301]

Remember to spare the record!

Presently in the event that you visit http://yoursite/index.php/classification/Blogs/post/ you ought to be diverted to http//yoursite/class/Blogs/post/. Since you're sending a 301 (Permanently moved), the internet searchers ought to upgrade their files also.

It's something individuals experience a ton, yet as should be obvious its unfathomably simple to determination.

Best Recommended Joomla Hosting

ASPHostPortal.com
ASPHostPortal.com is the leading provider of Windows hosting and affordable Joomla Hosting. Joomla 3.4 Hosting from ASPHostPortal.com provides a safe, reliable and performance-driven foundation for your Joomla website. Joomla is the perfect Content Management System for managing and developing your website with one of ASPHostPortal’s Hosting plans. ASPHostPortal has ability to support the latest Microsoft and ASP.NET technology, such as: WebMatrix, WebDeploy, Visual Studio 2015, .NET 5/ASP.NET 4.5.2, ASP.NET MVC 6.0/5.2, Silverlight 6 and Visual Studio Lightswitch, ASPHostPortal guarantees the highest quality product, top security, and unshakeable reliability, carefully chose high-quality servers, networking, and infrastructure equipment to ensure the utmost reliability. 



Joomla Hosting - ASPHostPortal.com :: Utilizing the Page Class Suffix as a part of Template Code

clock February 2, 2015 07:52 by author ben

The Page Class Suffix is a parameter in Joomla! content Menu Items. It is situated in the Menu Item: [edit] screen under the "Parameters (Advanced)" segment. This will result in Joomla! to either include another CSS class or alter the current CSS class for components in this particular Menu Item format.

At the point when Joomla! produces a page, it naturally makes predefined CSS classes to permit styling of the page. There is no general standard, how it is utilized, this is a choice made by the creator of the dynamic layout. Case in point, a page may have the component

<div class="componentheading">

Fundamentally, by utilizing the Page Class Suffix you can do one of taking after traps:

Make another class while safeguarding the first one

to do this, enter the parameter with a main space. For instance, entering a space in addition to "myclass" will make another CSS class called "myclass" and it will be embedded as a class for components in the page referenced by that Menu Item. For this situation the sample above will be changed to

<div class="componentheading myclass">

Change the name of a current class

The trap is comparative, yet rather entering a space before "myclass" you can include for instance an underscore "_" or whatever other character permitted by the CSS naming benchmarks. For this situation the yield will look like:

<div class="componentheading_myclass">

Utilizing the above deceive you clearly can include page particular styling. By and large, it is prescribed to utilize a main space to make another class. Along  these  lines, CSS styling for this segment that uses the standard class names will keep on meeting expectations. You can utilize the new class name to add any wanted styling to the segment without expecting to re-make the majority of the current CSS code. Note that, in the event that you make another class name, make beyond any doubt it has a novel name and doesn't clash with any current class names.

The huge inquiry is

Step by step instructions to embed the required code in layout?

There are two steps obliged: most importantly you have to make sense of the addition for the page, then you have to embed it in the required spot in your format.

Load the addition

For this you have to embed some additional code in the layout's <head> area or some place else in the format - clearly before the spot you need to utilize the Page Class Suffix:

<?php
$itemid = Jrequest::getvar('itemid');
$menu = &jsite::getmenu();
$active = $menu->getitem($itemid);
$params = $menu->getparams( $active->id );
$pageclass = $params->get( "pageclass_sfx" );
?>

Embed the suffix

The following step is to utilize the page class addition some place in the layout.

In the Body Tag

The more regular strategy would be to apply the page class addition as an id or class to the <body> tag. Find the <body> tag (underneath the </head> label) and supplant it with this:

<body id="<?php reverberation $pageclass ? htmlspecialchars($pageclass) : 'default'; ?>">

To Load a Page-Specific Stylesheet

The second technique would be to load a template novel to the page being referred to. As opposed to adjusting the <body> label, look for the template connect inside the <head></head> labels and include the accompanying line specifically underneath it:

<link rel="stylesheet" href="/formats/<?php reverberation $this->template ?>/css/<?php reverberation htmlspecialchars($pageclass) ?>.css" type="text/css"/>

The third technique is to change ANY standard page component, as above

How about we say's I need to change how the segment heading - a standard Joomla page component looks like. For that most likely I have to search for it in the format overrides - the "html" subdirectory of my layout - to spot the events of

<div class="componentheading">

furthermore to supplant them with

<div class="componentheading<?php reverberation htmlspecialchars($pageclass) ?>">

Obviously more approaches to utilize the Page Class postfix can be envisioned - and executed. I trust I succeeded to unleash your creative energy!

Best Joomla Hosting Recommendation

ASPHostPortal.com provides our customers with Plesk Panel, one of the most popular and stable control panels for Windows hosting, as free. You could also see the latest .NET framework, a crazy amount of functionality as well as Large disk space, bandwidth, MSSQL databases and more. All those give people the convenience to build up a powerful site in Windows server. We offers Joomla hosting starts from $1/month only. We also guarantees 30 days money back and guarantee 99.9% uptime. If you need a reliable affordable Joomla Hosting, we should be your best choice.



Joomla Hosting - ASPHostPortal :: How To Enable Joomla Caching

clock January 28, 2015 06:04 by author ben

This article will explains about how to enable joomla caching.

Enable Joomla Caching

If cache is not enabled, every time your visitors load one of your pages, Joomla has to do few things - fetch the content from its database, load all the plugins, components and modules, you have installed, load your template file and combine all that into a single page. Needless to say this process takes time. This is where the internal Joomla caching system comes to help. When you enable the cache, the first time someone loads your page, the result from the above mentioned actions is stored. Then, all the following visitors will directly get the stored version of that page as if it was a simple, plain HTML file which is much, much lighter and loads faster. This is why caching is one of the most important things to enable in order to have a fast Joomla site.
To enable the Joomla caching, first go to System -> Global Configuration.

Next, you need to click on the System tab to get to the caching settings.

On the right part of this page you will find the Cache Settings. Find the Cache label and click on the drop-down next to it. From the list, please select the ON - Conservative caching option. The other available option - Progressive Caching works a bit different - it stores cached version of your site per each one of your visitors. It is useful in some particular cases and we don't recommend you to use it unless you're absolutely sure you need such caching enabled.

Once you set the caching to Conservative Caching, click on the green Save button at top of your page.

There is one final step that you need to make before the Joomla caching system actually starts working - to enable the System - Cache core Joomla 3 plugin. To do this go to Extensions -> Plugin Manager.

Here you will see a big list of all the plugins, currently installed in your Joomla application. The easiest way to locate the caching plugin is to use the search field. Just type in cache and press the magnifying glass button next to the search field.

Once you do that, you will see the System - Cache plugin and a red cross button next to it indicating that the plugin is disabled. To change its status to enabled press on the red button.

Finally, the status button next to the caching plugin will turn green and you'll see a message, indicating that the plugin has been enabled successfully.
That's it! Your Joomla caching system is now enabled and functional!

 

Best Recommended Joomla Hosting

ASPHostPortal.com

ASPHostPortal.com is the leading provider of Windows hosting and affordable Joomla Hosting. Joomla 3.4 Hosting from ASPHostPortal.com provides a safe, reliable and performance-driven foundation for your Joomla website. Joomla is the perfect Content Management System for managing and developing your website with one of ASPHostPortal’s Hosting plans. ASPHostPortal has ability to support the latest Microsoft and ASP.NET technology, such as: WebMatrix, WebDeploy, Visual Studio 2015, .NET 5/ASP.NET 4.5.2, ASP.NET MVC 6.0/5.2, Silverlight 6 and Visual Studio Lightswitch, ASPHostPortal guarantees the highest quality product, top security, and unshakeable reliability, carefully chose high-quality servers, networking, and infrastructure equipment to ensure the utmost reliability. 



Joomla Hosting - ASPHostPortal.com :: How to Resolve “Page Not Found” Errors on Joomla Sites

clock January 26, 2015 07:56 by author ben

When you advise Joomla to utilize SEF (static) Urls, a few clients may encounter 404 blunders ("page not found") when they click menu things on your site. On the off chance that the SEF Urls setting in Joomla breaks your menu things, making Urls that can't be discovered, regardless you have trust.

In case you're utilizing the Apache web server, you can utilize the mod_rewrite module to educate Joomla to modify Urls in SEF adaptations. Additionally, take a glance at a famous expansion called sh404sef. Considered by numerous to be one of the best SEF apparatuses accessible, sh404sef is both JED Editor's pick and in addition a settled download most loved among genuine Joomla clients.

You just need to stress over undertaking the accompanying steps if the SEF URL choice in the Global Configuration page breaks the Urls on your site. In the event that the SEO Friendly Urls alternative is situated to Yes in the Global Configuration page SEO sheet and you discover your Joomla site is working as it ought to, there's no compelling reason to dive into this.

Check for mod_rewrite

To begin with, figure out whether your Apache establishment incorporates mod_rewrite. Restricted is to check with the tech staff of your Internet facilitating supplier, yet in the event that your facilitating supplier's tech staff is anything like mine, they won't have a sign. You can check for the module yourself, in any case.

On the off chance that end up hitting a block divider each time you set out for some searching for technical support, consider searching for a more Joomla-accommodating facilitating organization. Nowadays, there are a considerable measure of them out there, and they would most likely be excited to have your business.

On the off chance that mod_rewrite is being stacked, you can see that in Joomla. Click on the Site catch, found in the upper left-hand corner of any back-end page. Starting from the drop menu, select System Information. After the System Information page burdens, select the PHP data tab. The complete whole of your Joomla site's PHP data is presently readily available.

Design Joomla to utilize mod_rewrite

At the point when mod_rewrite is accessible, you can design Joomla to utilize it by renaming a record in Joomla's root registry. Take after these steps:

  • Look in the registry where you introduced Joomla for a record named htaccess.txt.
  • Rename this document .htaccess.
  • Restart Apache.
  • At the point when Apache restarts, your new .htaccess document produces results.
  • Pick Site →global Configuration in any back-end page to open the Global Configuration page.
  • In the SEO Settings sheet, select the Yes radio catch in the Use Apache mod_rewrite segment.

Congrats! SEF Urls ought to work for you now

TIPS : Numerous hosts don't oblige you to restart Apache in the wake of rolling out improvements to your .htaccess document. Then again, a few hosts might as of now have a .htaccess record which Joomla needs to be added to. On the off chance that you experience any troubles in arranging your site to utilize mod_rewrite, check in with your facilitating supplier's technical support for aid.

NOTES : SEF settings are all that much indigent upon how your facilitating supplier is situated up. Tragically, not all SEF settings chip away at all facilitating suppliers. On the off chance that you have issues with your SEF settings, you will need to weigh in with your facilitating supplier's help administrations for aid. As dependably, you can likewise depend upon the a huge number of clients at the Joomla.org help gatherings to furnish you with tips to get you up and running.

Best Joomla Hosting Recommendation

ASPHostPortal.com provides our customers with Plesk Panel, one of the most popular and stable control panels for Windows hosting, as free. You could also see the latest .NET framework, a crazy amount of functionality as well as Large disk space, bandwidth, MSSQL databases and more. All those give people the convenience to build up a powerful site in Windows server. We offers Joomla hosting starts from $1/month only. We also guarantees 30 days money back and guarantee 99.9% uptime. If you need a reliable affordable Joomla Hosting, we should be your best choice.



Joomla 3.4 Hosting - ASPHostPortal :: How to fix Unable to Connect to LDAP Server in Joomla's Login site

clock January 12, 2015 06:17 by author ben

Today, we will explain to you How to fix Unable to Connect to LDAP Server  in Joomla's Login site. Here's a fast answer for help Joomla heads or clients who can't login to the administrator range and get the message "Not able to interface with the LDAP Server". LDAP remains for Light Directory Access Protocol. Joomla utilizes a LDAP library to help with confirmation when logging in.

The issue is more than likely because of the secret word being adulterated in the database. The watchword won't work so Joomla can't validate it.

There may times when Joomla's LDAP documents may be adulterated and would need to be supplanted with clean forms, however the techniques portrayed underneath normally alter the issue. We should attempt those first.

You have two choices to attempt to alter this issue.

1. Reset the secret key in the Joomla back-end by altering the client's settings in Joomla's User Manager, or

2. Reset the secret key in your database, specifically.

I needed to utilize the recent strategy not more than a day or two ago on the grounds that I lacked the capacity click the Save & Close symbol in the User Manager in the wake of entering the new watchword.

Resetting the watchword in the database is the same methodology portrayed in a more established article titled "Bolted Out?: Resetting the Joomla Admin Password" with the exception of that as opposed to utilizing the Md5 hash for what used to be the default Joomla secret key, "administrator", you would  make a Md5 hash for your fancied secret key and utilize that.

To make the Md5 hash, look on the web for "md5 hash" and pick one of the free online Md5 Hash generators. I utilize Miracle Salad's Md5 Hash Generator.

When you've got your Md5 hash made, select and duplicate it and spare it in a content record.

At that point open up the Users table in your database supervisor device, discover and select the record for the client having the issue, and glue the hash into the Password field. Click the Go catch at the base to spare it, and go test it by attempting to login to Joomla.

Assuredly it worked for you. If not, I'd attempt it a second time to verify you duplicated the hash effectively. On the off chance that it still doesn't work, then reinforcement your site documents and transfer a clean form of the Joomla center records, overwriting the current records the whole time.



Joomla Hosting - ASPHostPortal :: What's New in Joomla 2015

clock January 7, 2015 06:04 by author ben

Web Joomla Design Trends in 2015

What Joomla web design trends do you think in 2015? Will it be a focus on more simplicity and smaller screen sizes? So let’s have a look at the Joomla Web Design Trends for 2015:

1. EVOLUTION OF FLAT DESIGN

For those of you who haven’t heard of the term, “flat design” is the term given to the style of design in which elements lose any type of stylistic characters that make them appear as though they lift off the page.
2014 became the Flat Design era, so what about 2015? Will it disappear or it will be improved?
2015 is the year we can call: “The evolution of Flat Design”. Goodbye outdated textures, so long to awkward shadows, adios bubbles and gradients. 2015 is all about beautiful, minimal flat design. As more and more hand held devices are being adopted, designers are keen on constructing design elements that appear smoothly on flat screens. Though flat design has been a favorite for a while, we’re predicting a huge growth in dazzling and painless flat user interfaces. However, flat design in its most basic form is here to stay for a while.

2. LESS TEXT, RICHER CONTENT EXPERIENCES

The websites made with Joomla seem to use less text. Instead of information in a paragraph or huge block of text, the focus has turned more into creative, visual storytelling. Text has been dramatically cut down to the bare necessities, while imagery such as icons, info graphics and large images, are employed to communicate important information. For example: you can see on some portfolio or e-commerce websites that they have almost no visible text, and instead rely on images and icons to convey information to the users.
Generally, a website with less text will appeal to users but you also need some text so the user can read information about what are the website is doing. So that is the reason the trend is towards richer content experiences. Text combined with videos, pictures and interactive functionality is integrated to tell a story that will hold the attention of users.

3. RESPONSIVE, AS ALWAYS

The year 2015 finally see the shift to where more individuals are browsing on mobiles rather than on traditional computers. With the numbers increasing monthly, mobile users will soon be in the majority, so having a website that can be easily viewed on an Android device or iPhone or any other mobile device will be vital. A responsive design will allow your website to detect the screen size of the customer’s device and then scale to the proper fit to give them the best user experience possible.
While many companies were still opting for a dedicated mobile website along with a regular web front, we’re predicting an almost exclusive take over of timesaving designs that are both impressive and mobile-responsive. The trend has a tremendous amount of marketing potential and web designers are scrambling to hone their skills in the tech.

4. THE OUTBREAK OF TYPOGRAPHY ART

This year will be the outbreak of typographic art. You can say goodbye to boring old fonts, such as Times New Roman or Arial. Next year, typography gets serious, and is now on the fast track towards the mainstream. High quality fonts are now available at affordable prices, which spare the small business owner from paying through the nose for complete font sets for their marketing materials. As web fonts are on the rise, designers are favoring bigger font sizes than ever, and mix and match is proving to be very popular. In addition, responsive typography should become a bigger part of responsive web design. With an increased emphasis on content, rich typography will continue to be a dominating design element into 2015.

5. HTML5 VIDEOS

HTML5 markup language will stay a core technology for structuring and presenting content for the web. HTML5 sites will be long and narrative with a strong focus on storytelling, similar to online magazines. Alternatively, check out a few of these rather creative agency websites, which blend dollops of HTML5 with sprinklings of CSS3 and jQuery.
There would also be videos, not merely promotional ones but HTML5 videos, which would run in the background of the web pages. There are many methods by which videos can be embedded in HTML pages and a number of brands have already included this element in their web design. As there are several types of websites coming up with innovative design methods, you would definitely prefer a website which is composed of properly adjusted images with proper content. It is essential that the website you are visiting should not have design elements arranged in an unconventional way..
Thank you so much and hope the article is helpful for you.



Joomla 3.4 Hosting - ASPHostPortal.com :: Repair Database function failed 1226 error

clock January 5, 2015 06:34 by author ben

Introduction

At some point back, one of my site customers kept in touch with me griping about his site being down. I immediately checked and discovered the site down with the accompanying blunder. It was a Joomla site.

DB function failed with 1226 error

User ‘your_user_name_here’ has exceeded the ‘max_questions’ resource (current value: 50000) SQL=SELECT session_id FROM mos_session WHERE session_id=MD5(‘1aa637c8e7d13c9be419d455cd6db64c’) SQL =SELECT session_id FROM mos_session WHERE session_id=MD5(‘1aa637c8e7d13c9be419d455cd6db64c’)

After a watchful investigation, I couldn't find the root or the reason for the issue yet in the wake of doing a bit of an examination I discovered the answer for the issue. In the event that your Web Hosting Company gives access to setup records to PHP and Mysql then you can build the "max_questions" esteem. Anyhow in the event that you are on a shared hosting (like a great many people) and don't have admittance to those records, here is a brisk fix:

1. Go to your site's control panel (e.g., Cpanel, Directadmin, vdeck, and so forth.) and go to the Database Section

2. Make 2 to 5 database clients (any username) with the same secret key as your database client. Illustration:

  • In the event that your unique DB name for Joomla is mysite_joomla also DB client for Joomla is mysite_user
  • Include the accompanying Users

- Username1: mysite_user1  Password: secret word

- Username2: mysite_user2  Password: secret word

- Username3:  mysite_user3  Password: secret word

3. Presently Assign them to the database where your Joomla site is. Case:

  • Dole out mysite_user1 to mysite_joomla and afterward mysite_user2 et cetera

4. Remember to provide for them the same database benefits as your first Joomla DB client (hero1).

5. Presently download your configuration.php from your web server utilizing any FTP customer programming (like Filezilla) and open it in any HTML/PHP proofreader to alter it.

6. Seek the accompanying Line of Code in the document

$mosconfig_user = 'mysite_user';

7. Remark out the line by including/ before it and include the accompanying lines beneath it:

$mosconfig_users = array("mysite_user", "mysite_user1″, "mysite_user2″);

$mosconfig_user = $mosconfig_users[array_rand($mosconfig_users)];

8. Presently Save the progressions and transfer the record once more to your server.

Your site ought to be up and running!! On the off chance that you confront any issue settling this error, leave a remark underneath and I will be glad to offer assista.



ASPHostPortal :: How To Setting SMTP for Joomla

clock December 18, 2014 08:47 by author ben

SMTP settings for Joomla

Configuring an SMTP server for Joomla and start sending out emails is extremely easy. You just need to enter the right SMTP settings and your outgoing server will be configured.
Remember however that if you use a normal SMTP server on Joomla – like the ones associated to Gmail or Hotmail – you will be always exposed to deliverability issues, especially if you're sending mass emails. Only a professional SMTP service will guarantee a full delivery rate, so if you plan to set up a newsletter campaign you should consider this option seriously.

Now here's how to configure an SMTP server on Joomla:

1. Enter your Joomla dashboard.
2. Click on "Site", "Global configuration".
3. Choose the server "Server" tab and find the "Mail settings" section:

4. Fill the fields with the following information:

•    Mailer: SMTP Server
•    Mail from: your email account (the one from which you want to send emails)
•    From Name: your name or company name
•    Sendmail Path: /usr/bin/sendmail
•    SMTP Authentication: select Yes if you want to send it authenticated, No if you don't
•    SMTP Security: select the type of security (SSL or none)
•    SMTP Port: 25 or 465 (if you want to know more check our article about SMTP ports)
•    SMTP Username: your email address on the server's domain
•    SMTP Password: your password
•    SMTP Host: your SMTP hostname. If you don't know it, have a look at our handy list of the major SMTP host settings

That's it, you're done.




Joomla Hosting - ASPHostPortal.com :: Suggestions To Get A Much Better Joomla Website Performance

clock December 17, 2014 06:35 by author ben

JoomlaHosting.ASPHostPortal.com - Within the connected globe, it’s the undeniable reality that speed plays a part of value inside the success of one's site. No one accepts low speed. When you have a site with poor overall performance, the prospective clients will leave you, even the search engine will leave you, as well as your online company is doomed! That is why improving your website speed should become a single from the very first priorities. In case your website is Joomla-based, then it is lucky for you personally that it’s not that tough to boost the efficiency. There’re some optimizations you are able to do, which will be introduced within this post as the suggestions, to make your web site load in less than a second!


Just before we commence, the very first thing you have to do is to verify how fast currently your site is. There’re some free of charge online tools obtainable that can assist you to determine these parameters:

  • Google Pagespeed Insights
  • Webpagetest
  • GT Metrix


Now once you have the result, let’s begin carrying out some optimizations. Bear in mind to backup your database before carrying out every important step.

1. Pick a good host

It’s obvious that choosing the proper host for the web site is vital. You ought to not waste funds on incredibly premium hosting service pack with sophisticated functions that your website will hardly ever use, but on the other hands, you need to also not pay your funds for low top quality ones. A poor host will spoil your efforts, producing your web site slow, regardless of how well-optimized your website is. Remember to verify the critiques from the neighborhood just before producing decision. The best way is selecting a service package from a highly-rated hosting provider.


2. G-Zip: compress to improve site overall performance

Picture that all of your pages will be compressed inside a zip file, getting sent to the browser on your Pc or mobile and unpacked there. It's going to save you a lot of bandwidth. That’s exactly what G-Zip will do if it is turned on. To enable this function, in Admin Panel, go to Worldwide Configuration/Server and turn on G-zip



Except for the ancient versions of Internet Explorer, G-Zip is supported by all present popular browsers, which includes Chrome, Safari, Firefox, IE7+, and Opera. It is absolutely safe to turn on.

In case you discover that it didn’t work, it’s very possible that your host will not assistance mod_gzip from Joomla, or has it switched off.

3. Eliminate unnecessary extensions

Regardless of the truth that extensions is among the greatest strengths in the Joomla atmosphere, you should take a careful consideration when choosing which extension to install. Some extensions can seriously slow down your web site performance. Some main problems makers may be listed as below:

  • Large image sliders. Large images, especially full-width ones, frequently take a lot of time for you to be load. It's going to reduced the entire web site performance also as user encounter.
  • Social media scripts, which includes the counters for the amount of like or tweet. They need extra javascript, and continuously connect the remote network, which can terribly slow down your complete website. Nonetheless, within the social era, these social scripts have become “must-have” for any site, so what you can do is always to allow theme only on certain web page. As an example, you'll be able to load-off them to only get in touch with page, or “about us” web page. Only those web page will probably be affected.
  • Some scripts like Google Analytics, or Google Webfonts.


4. Reduce the image size

Amongst all the website’s sorts of contents, images usually tends to make up from the largest proportion of storage. That is why they have to be optimized in order to increase the website’s speed. There’re two items you need to contemplate when you have intention to make use of photos in your web site.

Firstly, bear in mind to utilize image with right sizes. Clearly, in case your image is big, it will take a lot of time to be loaded.

Secondly, you are able to often reduce the size in the pictures drastically making use of accessible tools with some easy steps. Listed below are some tools that might help:

  • Photoshop (obviously). You'll be able to save the image by using “Save for web and devices”
  • TinyPNG
  • Smush


That is all for the first part about tricks to boost your Joomla web site efficiency. We hope you discover it useful as you can effortlessly apply all these tips to your personal web site right following reading this post. Do not forget to verify our web site frequently as the other excellent posts about Joomla ideas and tricks will probably be released soon.

 



About ASPHostPortal.com

We’re a company that works differently to most. Value is what we output and help our customers achieve, not how much money we put in the bank. It’s not because we are altruistic. It’s based on an even simpler principle. "Do good things, and good things will come to you".

Success for us is something that is continually experienced, not something that is reached. For us it is all about the experience – more than the journey. Life is a continual experience. We see the Internet as being an incredible amplifier to the experience of life for all of us. It can help humanity come together to explode in knowledge exploration and discussion. It is continual enlightenment of new ideas, experiences, and passions

 photo ahp banner aspnet-01_zps87l92lcl.png

Corporate Address (Location)

ASPHostPortal
170 W 56th Street, Suite 121
New York, NY 10019
United States

Sign in