Joomla Hosting BLOG

Blog about Joomla, Technologies and Hosting Service

Joomla Hosting - ASPHostPortal.com :: Joomla Error Reporting : Explained

clock April 6, 2016 21:03 by author Armend

1. Overview

Error Reporting is a useful Joomla function to troubleshoot PHP errors on your Joomla site. This function provides some clues about what and where the PHP problems are.

2. When to turn it on?

Got blank/ white screen in your Joomla site frontend? Well, that calls for turning on the error reporting feature. You may also want to disable the URL rewriting (htaccess method) using Apache mod_rewrite under the SEO settings for differential diagnosis of the issue as url rewriting with htaccess file in non-supported server (mod_rewrite not active) also renders blank pages.

 

3. How to proceed

In your Admin Panel, navigate through Global Configuration >> Server tab >> Error Reporting.
There are several options for you to choose, namely:

  • System Default : Joomla will inherit error reporting defaults set in the server (usually in php.ini file).
  • None : Choose this option to switch off the Error Reporting so that no notification will be shown. However, when any 3rd party extension overrides Joomla error reporting with their own settings, notifications may still appear.
  • Simple : Overrides server settings to give a basic report with warnings only about the fatal errors.
  • Maximum (Recommended) : Overrides server settings to gives full report with all the errors, warnings, notices, deprecated functions call, strict standards on the website.

Tip : You can enable the Error Reporting with the configuration.php file. Edit the file and add one of the following numeric values for $error_reporting, which equals to the PHP’s error constants:

-1 = 0 : No error reporting.
30711 = E_ALL & ~(E_NOTICE|E_WARNING) : All errors reporting. No warnings or notices.
30711 = E_ALL & ~E_NOTICE : All errors and warnings reporting. No notices.
30719 = E_ALL : All errors, warnings and notices reporting.
32767 = E_ALL | E_STRICT : All errors, warnings, notices and strict standards reporting.

4. Recommendations

For developers error reporting gives them a headstart and they know what they have to fix and where. For regular users, it helps to provide more details to the developer instead of saying "I got blank / white page".
Error reporting should be disabled on an live site as the error reports would be visible to your users and information about your website may be revealed including the absolute path of your website.
Turn it on only when something goes wrong such as a blank page and/or you are debugging your Joomla website. Once the bugs are fixed, change the error reporting settings back to “None”. This is highly recommended for any Joomla website in term of security.

5. Live example

Let's see how an error would be reported when your Joomla Error Reporting is ON.

  • Open your_site_root/components/com_content/content.php and remove “;” from line no. 11.
  • Check your front-end. As your Error Reporting is set as "None", it must be just a blank page.
  • Now proceed to turn the Error Reporting to "Maximum" and you can see the exact error.

6. Joomla extension for Error Reporting

You may find some more useful Joomla extensions for error reporting in our Joomla! Extension Directory. Easy Error Reporting would be a handy choice as you can enable the error reports for specific user groups only.

7. Further reading

  • Sever Settings Group - Joomla! Docs
  • error_reporting - PHP.net
  • How to turn your error reporting to Maximum - OSTraining

 

 



Joomla Hosting - ASPHostPortal.com | Easy Way to Improve The Security of Your Joomla Template

clock April 6, 2016 20:51 by author ben

Easy Way to Improve The Security of Your Joomla Template

Joomla is a Content Management System that helps you to integrate the content and the modules to develop the most interactive and impressive web pages for your website. Joomla is an open source software application with an easy to use interface and high extensibility. Joomla is used vastly by many corporate portals and websites, government applications, online newspapers and magazines, small-scale business websites, and many other personal web pages. You can install and set up the Joomla application easily within a few clicks. Some of the core features of Joomla are detailed below:

  • Powerful caching option facilitates a speedy page load.
  • A handy help system is integrated within Joomla for assistance.
  • Incorporating templates into your web site as a whole or for individual web pages is made easy.
  • Structure independent menu hierarchies irrespective of the content structures.
  • Organize you content in a better way.
  • Manage users with the help of the nine user groups provided with various levels of permissions.
  • Provision of many international language support and UTF-8 coding.

The template is one of the most important aspects of your Joomla website.

It is used on every pageload and affects the look, feel, layout, pageload time and nearly every other aspect of the website experience.

Not surprisingly then, the template is also a prime target for intruders who look to gain access to your webserver or deface your site with spam or graffiti.

To help prevent this, use the following tips to improve your Joomla security policies specifically for your website template.

Fix file permissions on your web server

Like any computer system, the files on your web server all have permissions that control who can access them.

For web servers, these permissions are broken down into three categories:

  • Read privileges — who can read a file
  • Write privileges — who can edit a file
  • Execute privileges — who can execute system commands
  • The safest permissions for the files on your web server — including the files in your template — is for the public to have read-only access. Changes to these files should only be possible by the owner (i.e. the apache root user) of the file.

While a system administrator can easily modify permissions, we recommend that you use the excellent Admin Tools extension to properly set file permissions right from the Joomla backend.

Lock down the main template file

For all Joomla templates, the index.php file is the main file that loads all of the assets like CSS and JavaScript, and mixes the site layout with the content from the database.

Since this file is heavily targeted by intruders, it can be helpful to strictly control the permissions such that even the owner (again, the Apache root user, for example) of the file can not make changes.

In fact, if you use the template editor in the Joomla backend, the index.php file is made read-only for everyone once the file is saved.

Again, we think using Admin Tools to do this makes the most sense.

Prevent file listing (HTACCESS)

Letting visitors know what files you have in your Joomla template folder is never a good idea.

You can check if your template currently displays these files by typing the name of your template folder into your browser (eg. domain.com/templates/) and seeing if you get a Forbidden warning.

If you see a list of your installed template folders, your site is not as safe as it could be.

To solve the problem, you’ll need to use FTP to edit the HTACCESS file in the root of your website so that is contains the following line:

Options -Indexes

Restrict template edit permissions

Joomla has a powerful template editor that allows users to modify all the components of the template, including the main index.php file.

Thus, anyone who gets backend access to your site can hack your template with ease.

In addition to having unique usernames and strong passwords, you can limit the impact of these types of intrusions by limiting which user groups are allowed to edit templates.

For example, we recommend that users in the Manager usergroup not be able to edit the template.

To configure this in the Joomla backend, select Templates from the Extensions menu.

In the Options at the top-right, locate the Permissions tab and disable the following items for Managers and other groups with backend access who do not need to edit the template:

  • Edit
  • Edit State
  • Configure ACL & Options
  • Configure Options Only

Review users regularly for Super User access

Between your website developers, temporary contractors, and the staff/clients who regularly access the backend of a Joomla site, it’s easy to collect unnecessary Super Users.

Regularly monitor the Super Users and Administrators in the backend User Manager to ensure that every user is needed.

Is you are unsure of someone’s status, check the Last Visit Date in the User Manager to see when the user last logged in.

Keep template up to date

Like most popular content management systems, there are thousands of templates available for Joomla. And it’s very likely that most Joomla websites use one one of these templates either directly or as a modified version.

However, the vast majority of Joomla templates do not use the Joomla update system to help alert you when template updates are released.

Thus, we recommend that template users subscribe to any notification system provided by the template vendor.

An alternative and more comprehensive solution is to monitor the relevant changelog page on the vendor’s website for each of the templates installed on your Joomla website(s).

For example, the changelog page for the Callisto template from RocketTheme shows 6 updates in 6 months.

There are a number of free ways to monitor changes to a changelog webpage including plugins for Chrome and Firefox, and the online tool Versionista.

RocketTheme also maintains an RSS feed of updates for their templates if an RSS reader is still part of your daily routine.

Only use templates from trusted vendors (never from Warez sites).

Like most popular software, Joomla templates can often be found on Warez sites.

Often, these templates are modified to contain malware and other dangerous scripts.

If you are serious about security, it is critical to always download templates from the vendor’s official website.

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 $5/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 | SEO Tips fo Your Joomla Website

clock March 30, 2016 23:12 by author ben

SEO Tips fo Your Joomla Website

Joomla is one of the most popular free content management systems (CMS) in the world that allows you to easily create and manage a dynamic website. It has an intuitive management interface to control all the features and functionality this powerful CMS possesses. Furthermore, there are hundreds of free extensions written for Joomla that allows users to extend its functionality and customize it to their own objectives. Joomla Content Management System is supported by a large and friendly community where newbies could really rely on assistance from more experienced members. Joomla counted more than 30 million downloads in 2012 and is growing.

Search Engine Optimization (SEO) is the process of making constant improvements on your website to gain better rankings in the search engine results page (SERP). SEO includes different kinds of techniques and strategies you could use to optimize your website in order to increase website traffic. Traffic from search engines, also known as organic, is valuable because visitors are actively looking for something you offer and tend to convert more often, whatever your goals may be.

Outranking your competitors can be a challenging work and that’s where search engine optimization kicks in. If you make it easy for Google and other search engines to read and understand your content, they can rank you higher in their search results. Before we explain in depth how to optimize your website to stand out, you need to know how search engines work.

If you own a Joomla website, this article is very useful for you to recommend some hot tips to optimize it. Using these tips not only improves SEO for your site but also brings the natural interaction or conversion rate. Here are 9 hot TIPS for Joomla SEO 2016 introduced.

Using a good Joomla hosting server for your website

Firstly, all you need is a fast reliable server because it will improve your site speed which is an important key to friendly with Google. SiteGround do a fantastic job of hosting Joomla websites as a recommendation. Remember that Google does not like the website which is not fast.

Keyword, Key-phrase, and Topic Research, choose the right keywords

Any optimization of content for SEO, the first thing we do is keyword research, whether you are doing SEO for Joomla or for any other website. What we will focus strictly on specific keywords is not necessary - you can and actually should use phrases and synonyms of your target keywords - because search engines will be able to extract the content out of the article much better. You can use hints from Google itself by looking at the suggestions at the bottom of a search page.
And one important thing that it's always difficult to find the right keywords to target. How can we suggest some relevant words which will recommend the keywords? Or how we find our good long tail keywords. It helps us to save lots of time. And it helps us bring plenty of great traffic.

Enable Search Engine Friendly URL

SEF component is highly recommended because of its powerful features which are typically significant offers SEO advantages over the core component. One of popular Joomla SEO plug-in is sh404SEF. Besides creating SEF URLs, it allows you to monitor which requests are generating 404 errors, such that you can ensure you any broken areas of your site are immediately fixed. These are especially useful after migrating a new website. You can also choose to redirect old URLs to the new URLs. In addition, Meta descriptions are also supported by sh404SEF, and it has great support for other popular Joomla components such as Kunena forum and others popular components.

Create Internal Links to pass Page Rank

Another easy to do aspect of Joomla SEO, which is many times overlooked is the practice to create internal links. Remember that at the very bottom of your page, you should have a listing of all the articles which you want to pass Page Rank to.

Improve your meta descriptions

Joomla SEO gets a huge positive effect if you implement careful title and meta description.
Also, remember to create a description for your site which is optimized for search engines. The Joomla SEO settings can be found here under System > Global Configuration > Site Meta Description and Site Meta Keywords. It also goes without saying, that your site Joomla Robots section should be set to Index, Follow so that search engines indexing can occur.

Specify the image dimensions

Image size is one of the important points of loading speed, it is also the reason why you need to reduce or make lighter your images because it's the way help you to optimize your site.
Lighter images:
A couple of online services to make our images lighter and keep the quality are:
• www.jpegmini.com - for JPG files
• www.tinypng.com - for PNG files

Use good names and ALT tags for your images

In addition, using good names and ALT tags for images that will make your site more friendly with SEO and highly ranked by Google or any Optimized tool.

Work friendly on mobile

If your site it mobile-friendly, it will be favored in search engine results to sites which are not mobile-friendly. By default means that if your site is not mobile-friendly, your site is getting a very strong negative ranking signal. So you should make sure you've made the necessary changes to make it responsive and mobile friendly.

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 $5/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 :: 11 Tips Seo your Joomla site with Super Easy Steps

clock March 16, 2016 19:54 by author Armend

SEO Your Joomla! Website in 11 Super Easy Steps

So you've chosen Joomla! as your CMS of choice. You've bought, or designed and developed a beautiful template and added all your creatively crafted content to your new Joomla! website and you are now ready to start open your website up to that hungry horde of customers hurling their credit cards at you.

One problem: If you've started with a base Joomla! installation, odds are that those thousands of people itching to get their hands on your products probably aren't even going to be able to find your website in the first place. In contrast to Wordpress (which is what you could consider Joomla!'s primary competitor) Joomla! Is simply not quite as search engine friendly right out the box. In fact, I have found that you actually need to go through a number of steps (11, to be precise) in order to get a Joomla! website into a position where it really performs satisfactorily when it comes to on-site SEO factors.

 

Having developed a number of Joomla! websites over the years, I would like to share with you the exact guidelines that I give to the junior web designers at Red Giant Design Studio to make sure that our websites compete admirably in the rankings.
Without further ado, let's get stuck into the meat of this tutorial.

1. Make Sure You're on the Right Type of Server

This is the first step for a reason. It's important.
I'm going to go out on a limb and say that if you are using an IIS (Windows) server to host your Joomla! website, you are going to get so frustrated that your Mac may end up at the bottom of a swimming pool. (This may or may not have happened)

The reason I say this is that URL rewriting just never seems to gel well with any rewrite module that IIS can use. Rewrite modules are also a nightmare to get set up if you are using a shared hosting account. I've also, on occasion, had issues with the installation and configuration of Joomla! on an IIS server.
For practicality and succinctness's sake, I would simply recommend that you save yourself endless headaches and get your Joomla! site set up on an Apache server with mod_rewrite installed. Your nerves and the SEO components you're going to install will thank you.

2. Rename htaccess.txt to .htaccess

Because you are going to want to enable URL rewriting to make those URLs a whole lot more attractive than they start out, you are going to need to rename the htaccess.txt file to .htaccess - which is the version used by Joomla! and mod_rewrite.

3. Enable SEF URLs and URL Rewriting

In your Joomla! Global Configuration, set the "Search Engine Friendly URLs" and "Use URL Rewriting" options to "Yes".
Joomla! SEF Settings
Search Engine Friendly URLs is the setting that removes all the dynamically generated gobbledygook from your URL and replaces it with the alias of the menu item that you're using on the page.
URL Rewriting is the setting that removes the /index.php/ from the URL. For this to be enabled must have mod_rewrite enabled and must have a .htaccess file.
The balance of the settings are really left more up to your discretion. I tend to prefer leaving the other three off. You may like to turn on the option to include your Site Name in your page titles, particularly if the site has a lot of content. Personally, I like to micro-manage everything and craft each title separately in most instances.

4. Remove "/images/" from your Robots.txt file

This is something about Joomla! that has always left me bewildered. In the automatically generated robots.txt file that is created on installation, Joomla! includes a disallow rule for the images directory, instructing the search engines not to search or index your images folder.
As you may well know, images can generate a sizable chunk of your traffic from Google and the search engines if you have them correctly optimized.
Because all the image optimisation in the world won't help you if you are telling Google not to bother with your images directory, I highly recommend that you remove the following line from your robots.txt file:
/images/

5. Install JCE Editor

Not only is JCE Editor free, but it provides a whole bunch of really cool features which will help you put together and maintain your site.
My favourite two things about JCE are the fact that you can instruct it not to strip code that you add through the editor and the fact that it provides a great interface through which you can add images, coupled with Alt tags and image dimensions.
It's a really good component for Joomla! and I highly recommend you use it.
JCE Editor Logo

6. Use Alt Tags and Image Dimensions

This tip is really not specific to Joomla! but it is important nevertheless. The JCE editor allows you add the Alternate Text to describe your image as well as add the dimensions right within the image upload tool.
In case you weren't aware, adding image dimensions to your images allows the "space" to load before the actual image does. This should help improve your load times a bit.
 The only drawback to SEO Boss is that it may not gel well with all of your installed components, in which case you'll need to go and manually edit those through the relevant component's own interface. For everything else, however, it's great.

7. Manage Your Meta Data

Although meta keywords tags are pretty much redundant these days, your meta descriptions and title tags are still rather important.
I came across a pretty useful component quite recently, called SEO Boss. The only feature of this that I actually use is the meta tag manager, but I have found this to be extremely useful.

To edit meta data for your Joomla! website normally, you need to navigate to each menu item/article and edit the descriptions and page titles manually. With SEO Boss, you'll find a single screen that lets you edit all of your meta data directly from that interface.
The only drawback to SEO Boss is that it may not gel well with all of your installed components, in which case you'll need to go and manually edit those through the relevant component's own interface. For everything else, however, it's great.

8. Choose www. or non-www. and Redirect

Joomla!, unlike Wordpress, doesn't automatically redirect your website to either the www. or non-www. version. This obviously poses a canonical problem, which you need to correct manually via your .htaccess file.
To redirect from non-www. to www. add the following code to your .htaccess file:

RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
Alternatively, you can redirect to non-www. by adding this code instead:
RewriteEngine On
RewriteCond %{HTTP_HOST} www.yourwebsitehere.com
RewriteRule (.*) http://yourwebsitehere.com/$1 [R=301,L]

9. Be Consistent When Linking Internally

When it comes to CMS websites (especially Joomla! ones) duplicate content can become a bit of a problem. The key to combating this is to ensure that you link consistently to internal content.
By this, I mean only creating links to either the www. or non-www. version that you chose above, only linking to pages using a trailing slash or no trailing slash, or pages with a suffix (.html) or no suffix. Only link to a single version of a page, ever.
Remember, it's not duplicate content if nothing is linking to it for Google to find it.
You can't really control the way others link to you, but you can set an example. If people are linking to you incorrectly, you can add further redirect rules to 301 redirect to the correct links.

10. Speed Up Your Website!

It has to be said that Joomla! doesn't do page speed very well straight out of the box. The good news is that you can speed things up significantly by doing three main things: Leveraging browser caching, enabling Gzip compression and compressing your images.
10.1. Leverage Browser Caching
Without getting into too much detail, you want to utilize browser caching to instruct your browsers to cache certain types of content found on your site, as well as tell them how long to cache them for. My suggestion is to simply add the following code to the bottom of your .htaccess file:

ExpiresActive On
ExpiresByType text/html "access plus 1 seconds"
ExpiresByType image/gif "access plus 1 years"
ExpiresByType image/jpeg "access plus 1 months"
ExpiresByType image/png "access plus 1 months"
ExpiresByType text/css "access plus 1 months"
ExpiresByType text/javascript "access plus 1 months"
ExpiresByType application/x-javascript "access plus 1 months"
ExpiresByType image/ico "access plus 1 months"

You can, of course, tweak the code if your content needs to be held in the cache for shorter/longer periods, or if you would prefer not to cache certain types of content.

10.2. Enable Gzip

A good way to improve load times is to use Gzip to compress your code. I tend to only do this once I've got my whole site set up, but it's generally a good idea to use it.
To enable Gzip via Joomla!, simply navigate to Global Configuration > Server and switch the option for Gzip compression to "Yes".
Note: This will only work if mod_gzip is installed on your server.
Depending on your host, you may also be able to enable server size compression through your hosting control panel. I recommend enquiring from your hosting provider how you can go about this.

10.3. Optimize Your Images

Image optimization is something that every web designer should ensure happens, regardless of whether you're using Joomla! or not. It's ridiculous how many times I've come across websites loading 350kb images that can easily be cut down to 25kb. If you're not an expert when it comes to Photoshop, you can download highly optimized versions of your images using Google's Page Speed tool.
Through the above methods and other really minor tweaks, we generally manage a Google Page Speed score of 95+ and I can honestly report I find that many of our Joomla! sites actually perform better than similar Wordpress sites that we've developed.

11. Install Xmap

Xmap is quite simply the best sitemap component that I've found for Joomla! thus far.
It seamlessly generates XML and HTML sitemaps for your website and there are many plugins available for popular Joomla! components such as Virtuemart and sh404sef.
Simply navigate to Xmap and create a new sitemap. Choose the menu items you want to include, set their priorities, click "Save" and voila! You can then create a menu item for your HTML sitemap and grab the link for your XML sitemap to add to Webmaster Tools.




Joomla Hosting - ASPHostPortal.com | How to Password Protect Admin area in Joomla?

clock March 2, 2016 20:55 by author ben

How to Password Protect Admin area in Joomla?

Joomla! is an award-winning content management system (CMS), which enables you to build Web sites and powerful online applications. Many aspects, including its ease-of-use and extensibility, have made Joomla! the most popular Web site software available. Best of all, Joomla is an open source solution that is freely available to everyone.


Joomla is designed to be easy to install and set up even if you're not an advanced user. Many Web hosting services offer a single-click install, getting your new site up and running in just a few minutes.
Since Joomla is so easy to use, as a Web designer or developer, you can quickly build sites for your clients. Then, with a minimal amount of instruction, you can empower your clients to easily manage their own sites themselves.

Joomla is the most popular open source CMS currently available as evidenced by a vibrant and growing community of friendly users and talented developers. Joomla's roots go back to 2000 and, with over 200,000 community users and contributors, the future looks bright for the award-winning Joomla Project.

Many companies and organizations have requirements that go beyond what is available in the basic Joomla package. In those cases, Joomla's powerful application framework makes it easy for developers to create sophisticated add-ons that extend the power of Joomla into virtually unlimited directions.

Steps Involved

In this documentation, we can check how to enable password protected admin Joomla area

1) Login to Joomla admin panel.
2) Go to ‘Components’.
3) Click the option ‘Admin Tools’.
If you are not installed the Admin Tools, please use the following steps to install.

a) Download the stable version of Admin Tool to your system.
b) Go to Joomla admin panel >> Extensions >> Manage.
c) Browse the Admin Tool file under the section ‘Upload and Install Joomla extension’.
d) Click ‘Upload and Install’ button.

4) Find the icon ‘Password Protect Administrator’.
5) Enter the username and password.
6) Click the button ‘Password Protect’.

That is how we can enable password protected administrator in Joomla.

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 $5/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 Edit A Joomla 3 Template In Joomla Administration?

clock February 25, 2016 00:34 by author ben

How to Edit A Joomla 3 Template In Joomla Administration?

Joomla is a free and open-source content management system (CMS) for publishing web content. It is built on a model–view–controller web application framework that can be used independently of the CMS.

Joomla is one of the most popular free content management systems (CMS) in the world that allows you to easily create and manage a dynamic website. It has an intuitive management interface to control all the features and functionality this powerful CMS possesses.

Joomla's primary focus has been on usability and extensibility since its initial release in 2005. It is because of this that the project has been the recipient of numerous awards, including being a three-time recipient of the PACKT Open Source Content Management System Award.

Joomla is a completely free open source solution available to anyone and everyone with a desire to build dynamic and robust sites for a variety of purposes. Joomla has been utilized by some of the Web's most recognizable brands including Harvard, iHop, and MTV. It is capable of carrying out tasks ranging from corporate websites and blogs to social networks and e-commerce.

Joomla is backed by a large and active developer community. With thousands of unique and useful extensions and templates available, it is presently one of the largest single site building platforms available. It is this incredible community effort that makes Joomla a great choice for developers searching for a single platform with which they can receive active support from their peers.

It is important to think of Joomla not as a limited platform on which a specific type of site is built, but a robust set of tools that makes it possible to connect visitors to data in a variety of ways. Joomla's extensive set of integrated technologies empowers site managers and developers to innovate well beyond the bounds of a simple website.

Steps Involved in editing a Joomla Template in the Joomla administration. This is handy to make small changes to your template files from the Joomla administration without having to upload files from ftp.

Steps Involved

  1. Log into your Joomla 3 administration.
  2. Click Extensions and then click Template Manager.
  3. In the menu on the left click Templates.
  4. From the list of templates select the template you want to edit, and then click the Template Details and Files link.
  5. Select the file you want to edit from the list of template files and folders shown on the left.
  6. Edit the file as required and then save and close the file.

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 $5/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 | Easy Way To Speed Up Your Joomla Performance

clock February 17, 2016 20:54 by author ben

Easy Way To Speed Up Your Joomla Performance

SEO or Search Engine Optimisation is the name given to activity that attempts to improve search engine rankings. Search Engine Optimisation or SEO is the simple activity of ensuring a website can be found in search engines for words and phrases relevant to what the site is offering. In many respects it's simply quality control for websites. Having said that, if there was ever an industry that was little understood by outsiders it's SEO.

Joomla is a free and open-source content management system (CMS) for publishing web content. It is built on a model–view–controller web application framework that can be used independently of the CMS. Joomla! is an award-winning content management system (CMS), which enables you to build Web sites and powerful online applications. Many aspects, including its ease-of-use and extensibility, have made Joomla! the most popular Web site software available. Best of all, Joomla is an open source solution that is freely available to everyone.

Speed Up Your Joomla Performance

Want to increase the speed of your Joomla website? just start with a speed test. Speed is the most important factor directly influencing the performance of a website. Tools like Pingdom and PageSpeed Insight can test the speed of a website and give valuable suggestions to improve its performance. If the requested web page is taking too much time to load, user-friendly interface, high quality content, conversion rate optimization, and other techniques are not going to help you.

Update Joomla Core

To update Joomla to the newest version you can either click on “Update now!” notification which should show up on your dashboard, or you can manually update by navigating to “Components” → “Joomla! Update.” Remember to back up your website, especially on major release updates.

Update Joomla Extensions

To update your Joomla extensions navigate to “Extensions” → “Manage” → “Update.”

Content Delivery Network

Implementing a Content Delivery Network (CDN) with Joomla is an easy way to instantly see decreased load times. By doing this, you will ensure you are serving your assets (product images, javascript, CSS) from multiple locations around the globe so they are delivered faster to your visitors.

Caching

Joomla has an inbuilt caching system. This cache is provided to improve Joomla website performance. Whenever a user request a web page, Joomla has to perform some necessary actions to respond. Joomla has to retrieve images, text, videos and other content from the database. There are plugins, templates and other files associated with the requested web page. These all need to be loaded before the server could send the response. This ultimately results in increased page load time. However, when the cache is enabled, these actions are performed when a web page is loaded first time. Content and all necessary files are stored in the Joomla cache. Now, for all following requests, no data will be fetched from the database.

Image Optimization

As we mentioned in a previous post on lossless image compression, on average 56 percent of a website’s page weight is made up of images. So optimizing images can drastically decrease your page load times. Unfortunately in Joomla there is no built-in option for image compression. So we recommend either compressing and resizing them beforehand in a tool like PhotoShop (using the “Save for Web” feature) or an online tool.

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 $5/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 :: What's New In Joomla 3.4.8?

clock January 6, 2016 19:24 by author ben

What's New In Joomla 3.4.8?

Joomla has just released version 3.4.8 of its open-source content management system (CMS) in an effort to lock down two new vulnerabilities, one of which could grant attackers full control of an affected website. As noted by SecurityWeek, the severity of these flaws didn’t go unnoticed: Symantec tracked an average of 16,000 hits per day attempting to exploit the issue. Here’s a rundown of what’s at risk with an unpatched Joomla install.

Joomla 3.4.8 fixes some issues found in the 3.4.7 release on Monday to do with browser sessions. All reported bugs from the 3.4.7 update have been fixed in this release:

  • Users were unable to edit or create items after the 3.4.7 update
  • Fatal error about connection->stat() not existing on external database connections
  • After session timeout users could still navigate the backend but without being able to create/edit items or use pagination/filters

Joomla Security Risks

For almost a decade, a critical remote command execution vulnerability has existed in Joomla; versions 1.5 through 3.4.5 are affected by CVE-2015-8562. According to Ars Technica, while Joomla security teams patched the vulnerability within two days, the bug was already being exploited in the wild on IP addresses 146.0.72.83, 74.3.170.33 and 194.28.174.106. In addition, any events using either “JDatabaseDriverMysqli” or “O:” in the user agent were likely attack vectors.

So what’s the big risk here? CVE-2015-8562 leverages an issue with poor filtering when Joomla saves browser session values. As detailed by Sucuri, exploiting this flaw and combining it with the result of MySQL meeting a UTF-8 character that isn’t supported by uft8_general_ci — which causes data truncation from a specific value — it’s possible to launch an attack that could fully compromise servers. Cybercriminals then use the servers as malware hosts or sell access to them for a fee on the Dark Web.

Big Numbers

Given the relative simplicity of the flaw and the substantial impact if exploited, its no wonder attackers were eager to jump on the problem in the wild. In an effort to determine which servers are still vulnerable, cybercriminals have been swinging for the fences, sending out HTTP requests and analyzing the responses of phpinfo() and eval(chr()) functions to find likely targets. The result? Symantec clocked a high point of more than 20,000 attempts in a single day, with day-to-day averages hovering around 16,000 hits, according to SecurityWeek.

It makes sense that cybercriminals would be working overtime trying to exploit the vulnerability. While WordPress still dominates the CMS marketplace, Joomla holds a solid second place with over 550,000 Web pages using the open-source service, including Linux.com, The Hill online newspaper and Harvard University. Full access to any of these servers would let malicious actors wreak havoc; Malware distribution, DDoS attacks and stolen data are all potential outcomes.

The takeaway here? Even with Joomla security on the ball, there’s no guarantee that existing code flaws won’t crop up and cause problems for big companies. The solution? Active monitoring for starters — just because an application, CMS or cloud-based service seems secure, that’s no reason to turn a blind eye if odd behaviors start to emerge. Immediate patching is also critical. Within two days, Joomla rolled out version 3.4.6 and closed the security hole but in the time hits were already skyrocketing. Two more days and 32,000 attacks could slip through. A week? More than 110,000.

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 $5/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.



ASPHostPortal.com Proudly Announces DNS Failover Service

clock November 10, 2015 22:06 by author ben

ASPHostPortal.com is an expert web hosting organization that has been around given that 2008. As stated in their mission, their objective would be to offer quality internet hosting solutions with constant innovation and service upgrades at no extra cost to all customers. We build our servers, have our own nationwide fiber network and our own information center. Our hopes are that with our technologies, fantastic people and very first rate facilities we are going to be able to help our buyers attain wonderful success with their websites. Now, we support DNS Failover Service with premium server, high speed connection, and cheap price.

The issue of DNS uptime is often a topic that is ignored until something happens to your website. When you set up your website, you are likely focused on the look of the site and the site's content and SEO rankings. Downtime, however, is an issue that you should also take into consideration before the inevitable happens. You need to ask yourself what you can do to ensure that your site experiences minimal website downtime. You need to ask yourself whether or not your site is capable of handling surges in traffic. You need to consider how you will handle downtime due to things such as configuration errors or even natural disasters.

What you'll do if your website does go down? What will happen if your site monitor's contacts you at two in the morning, alerting you of a site outage? Notification of such an outage will do you no good if you don't have failover support in place. With the right failover support in place, your website traffic can be diverted to another IP address. When your site is back up and running, your site will be diverted back to your primary host. By ensuring proper failover support, you ensure that your customers (and your profits) aren't affected when your primary host goes down.

Aside from world class technologies, the hosting capabilities included are endless. From databases to internet site scripts, e-commerce and multimedia, ASPHostPortal.com provides a significant array of capabilities. ASPHostPortal.com can handle downtime problems with our DNS Failover services. You will not lose your customers and exactly your money. To learn more about our DNS Failover Service, please visit http://asphostportal.com/Windows-Hosting-DNS-Failover-Multiple-Data-Center

About ASPHostPortal.com :
ASPHostPortal.com is The Best, Cheap and Recommended ASP.NET & Linux Hosting. ASPHostPortal.com has ability to support the latest Microsoft, ASP.NET, and Linux technology, such as: such as: WebMatrix, Web Deploy, Visual Studio 2015, .NET 5/ASP.NET 4.5.2, ASP.NET MVC 6.0/5.2, Silverlight 6 and Visual Studio Light Switch, Latest MySql version, Latest PHPMyAdmin, Support PHP 5. x, etc. Their service include shared hosting, reseller hosting, and Sharepoint hosting, with speciality in ASP.NET, SQL Server, and Linux solutions. Protection, trustworthiness, and performance are at the core of hosting operations to make certain every website and software hosted is so secured and performs at the best possible level.



ASPHostPortal.com Proudly Announces DotNetNuke 7.4.2 Hosting

clock November 3, 2015 21:24 by author ben

ASPHostPortal.com is considered one of the best among the many web hosts and is very well-known for reliable servers and most of all exceptional customer service. It relies on the customer satisfaction and hence we offer great prices as well as quality service and most of all the reliability that customers expect in a web hosting site. To keep updated our customer’s website, today we launch DotNetNuke 7.4.2 with cheap price, best support, and high speed connection.

DotNetNuke is the undisputed leader when it comes to Web Content Management for Microsoft ASP.NET. More than 700,000 production websites worldwide use this path breaking technology to manage their websites. DotNetNuke open source Content Management Platform functions as a web application development framework also. This application offers something for everyone so on the basis of your role in the organization you can utilize its powerful utilities to achieve your web initiatives.

DotNetNuke is a brilliant combination of Content management System (CMS) and Web application development framework. This adaptable architecture allows developers to effortlessly add functionality or make changes in the look of the website through the addition of DotNetNuke applications. There are lots of websites where you can find free applications, you can use or customize these applications according to your need. That is reason DotNetNuke has become the first choice of developers.

As one of the most popular and fastest growing hosts, ASPHostPortal.com has exceptional reliability. We have a world class data center that provides top of the industry uptime and multiple functional administrative tools. We offer a top notch and reliable customer service team. Given that Customer Service can be a key differentiator when comparing web hosts, our expert support team always carefully scrutinizes this element. To learn more about our DotNetNuke 7.4.2 Hosting, please visit http://asphostportal.com/Dotnetnuke-7-4-2-Hosting

About ASPHostPortal.com :
ASPHostPortal.com is The Best, Cheap and Recommended ASP.NET & Linux Hosting. ASPHostPortal.com has ability to support the latest Microsoft, ASP.NET, and Linux technology, such as: such as: WebMatrix, Web Deploy, Visual Studio 2015, .NET 5/ASP.NET 4.5.2, ASP.NET MVC 6.0/5.2, Silverlight 6 and Visual Studio Light Switch, Latest MySql version, Latest PHPMyAdmin, Support PHP 5. x, etc. Their service include shared hosting, reseller hosting, and Sharepoint hosting, with speciality in ASP.NET, SQL Server, and Linux solutions. Protection, trustworthiness, and performance are at the core of hosting operations to make certain every website and software hosted is so secured and performs at the best possible level.



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