Joomla Hosting BLOG

Blog about Joomla, Technologies and Hosting Service

ASPHostPortal.com Announces Excellent Drupal 7.34 Hosting Solution

clock April 13, 2015 13:02 by author ben

ASPHostPortal.com was established with the goal to provide high quality hosting services for everyone. They believe that providing high quality services should come at an affordable price. For this reason we have provided exceptional plans, at the lowest and free price, for the best services possible, on their fastest nodes ever. Today, they launch Drupal 7.34 hosting with high speed, full features, and FREE.

Drupal is an open source content management platform powering millions of websites and applications. It’s built, used, and supported by an active and diverse community of people around the world. With Drupal, marketers and web developers can create and manage great web, mobile and social experiences. And they can improve and adapt quickly thanks to ongoing innovation and ideas from the Drupal community.

Drupal now presents their new version (Drupal 7.34). Drupal 7.34 was released in response to the discovery of security vulnerabilities. ASPHostPortal offers a powerful Windows hosting platform which allows for easy to manage websites, FTP, email, and etc. Our hosting is housed in a state of the art data centre which gives a totally secure data protection and Super-Quick Network Access. With a knowledgeable support team available 24 hours a day, 7 days a week, you can rest assured that your Websites and Data are Secure and Available for your management anytime. To learn more about Drupal 7.34 Hosting, please visit http://asphostportal.com/Drupal-Hosting

About ASPHostPortal.com :
ASPHostPortal.com is The Best, Cheap and Recommended ASP.NET Hosting. ASPHostPortal.com has ability to support the latest Microsoft and ASP.NET technology, such as: 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 include shared hosting, reseller hosting, and sharepoint hosting, with speciality in ASP.NET, SQL Server, and architecting highly scalable solutions. ASPHostPortal.com strives to supply probably the most technologically advanced hosting solutions available to all consumers the world over. Protection, trustworthiness, and performance are on the core of hosting operations to make certain every website and software hosted is so secured and performs at the best possible level.



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 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.



Joomla 3.4 Hosting - ASPHostPortal.com :: How To Install tems using the tmp folder in Joomla 3.4

clock December 4, 2014 05:51 by author ben

How to install items using the tmp folder in Joomla 3.4

A question that frequently crops up on our ticket and forum systems is “why won't the T3 plug-in install correctly via the joomla installer?” - this problem is frequently due to the hosting file upload limit being set too low. One solution is to upload an extension via the tmp folder. This tutorial looks at how you can utilise this method to install Joomla extensions.

The Uploading Process

  • Download the extension archive to the hard drive. The T3 plug-in is being used in this example.
  • Extract the archive into a folder – in this case the Zip file has been extracted to a folder called t3.
  • Using FTP upload the folder and its contents to the tmp folder, which is found in the root of the Joomla site as shown here.

Joomla Admin

  • Navigate to the Joomla installer via extensions > Extension Manager.
  • Click the text “Install from Directory” in the second tab.
  • In the “install Directory” input box type the folder name - in this example I have typed t3.
  • Hit install.
  • Extension should now successfully install.

Alternative Solution

An alternative is to increase the hosting account upload limit (although this may not be possible with some hosts).



Joomla 3.4 Hosting - ASPHostPortal :: The Best Way to Pace Up Joomla 3.4 and Template

clock October 16, 2014 06:56 by author ben

You have Joomla 3.4 that is fairly quick CMS itself, but have you ever at any time puzzled why your website masses so slowly. What aspects have a decisive influence on these delays. Recognize that pace has become a major problem with regards to Seo. By rushing up Joomla, you may also supply a better experience to your clients, boost your professional apearance. Listed here are my reflections and ideas.


Lots of us we reside inside a planet in which, most of the time, much more is best. We ourselves or customers inquire us to include much more photos, banners, social icons, or more different modules that are overload our Joomla template. The problem with continuously attempting to improve content is it isn't going to often generate the most effective results. Incorporating a huge number of components does not imply you happen to be getting something significant completed. It isn't going to function this way. In next hand, this means that Much less could be Powerful.

By picking the crucial, we develop fantastic influence with minimal sources. When you first set a restrict on one thing (numer of modules, plugins, photos and so forth.), it will be considered a pretty arbitrary quantity, as it will consider a while to see what operates to your venture. Check and disable any Joomla extensions which you never use any more. Probably if returing consumers will see web site once again they are going to be suprised that some factors gones but they will be a lot more centered on these which you remaining. Consider your initial week with that restrict being an experiment. If it doesn't perform for you, then adjust it a bit. Then evaluate your present utilization levels and select a reduced restrict depending on everything you believe could be ideal.

How fast is you wheel chair?

Clearly, we wish our Joomla to provide articles (subpages) as fast as you can. Choose a hosting organization that owns servers in the region where your consumers are, and never always the best types inside the marketplace. Your internet host could become a buddy (assisting hand) or your worst nightmare. Of course you will find reliable hosting providers which provide a optimized servers constructed specifically for the open source CMS. By fine-tuning the two MySQL and Apache, WordPress & Joomla websites hosted on those platform perform noticeably faster than other web hosting providers. For example check provide presented by SiteGround internet hosting for Joomla and Wordpress sites.

How heavy is your site "baby"?

Wonder how big your webs site is now? Measuring the size and speed of the Joomla 3.4 website is always very important step. You can do this by using many different tools such as: Pingdom , PageSpeed Insights, webPageTest or the Page Speed add-on for Firebug, or the YSlow Chrome plugin. Test results will provide rich diagnostic information including resource loading waterfall charts, Page Speed optimization checks and suggestions for improvements.

Optimization settings

  • Turn on GZip Compression. On the Top Menu select System -> Global Configuration and click on Server (tab) -> GZIP Page Compression and set the option to ‘Yes’.
  • If you have a large number of images on your site, this setting can drastically impact the load times of your site. For example if you are using K2 component, you can set lower quality of generated images. K2 -> Parameters -> Images. By default there is 100%, but in most cases you can set 80% without harm. And soon all your images will be on the diet. Of course, you should test the settings and use the lowest acceptable value.
  • Enable Cache system - this will increase the load speed of the pages a lot. You set up the cache type in the Joomla Global Configuration -> System.
  • In template settings you will find also some settings which help you improve speed.

.htaccess Configuration Suggestions

Inside the adhering to subsection, we will tweak the server configuration in order to enhance its efficiency. Notice, PHP 5.5 is way more quickly than PHP 5.3.10+. The Apache could be configured through the .htaccess documents, some examples can cause issues on some servers so you're able to ask internet hosting assistance if you're able to use individuals tips.

<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/html text/plain text/xml
text/css text/javascript
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4.0[678] no-gzip
BrowserMatch bMSIE !no-gzip !gzip-only-text/html SetEnvIfNoCase
Request_URI .(?:gif|jpe?g|png)$ no-gzip dont-vary Header append
Vary User-Agent env=!dont-vary

## EXPIRES CACHING ##
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access plus 1 week"
ExpiresByType image/jpeg "access plus 1 week"
ExpiresByType image/gif "access plus 1 week"
ExpiresByType image/png "access plus 1 week"
ExpiresByType text/css "access plus 1 week"
ExpiresByType application/pdf "access plus 1 week"
ExpiresByType text/x-javascript "access plus 1 week"
ExpiresByType application/x-shockwave-flash "access plus 1 week"
ExpiresByType image/x-icon "access plus 1 week"
ExpiresDefault "access plus 1 week"
</IfModule>

Also The enhance table alternative can enhance the performances within a feeling that we will economize I/O procedure although retrieving info from our database. You'll be able to get it done manually from PHPMyAdmin or using a Improve Your Tables plugin - that when per day optimizes your database's tables so as to preserve your website working at its peek performance by eliminating the MySQL database overhead.



Joomla 3.2 Hosting :: Top Five Joomla Security Issues

clock April 10, 2014 09:36 by author ben

Here we've listed the ten most likely ways your Joomla website will get hacked. How many of them could catch you out?

 

1. Weak Joomla Administrator Password
Firstly rename the administrator account username from admin to something memorable. I know in the modern world we have so many passwords to remember, I use three words and swap out some letters for numbers, on different sites and services I swap the order of the words, there are only three possible passwords I can use and if I don't know them, they are going to be difficult for other people / hackers to guess. Software enables hackers to run millions of guesses a second, you can configure servers to block 'brute force password attempts', for the main just setting a strong password is enough but remember to change your username from 'admin'.

2. No Security Measures For A Joomla Website
Database prefix, super admin id, upload limits, hot linking, blocking terms in URLs, block all SQL injections, etc, etc.Some of these are basic, some are complicated and should be done by a Joomla professional. From my point of view if your are a serious business and you've not implemented these and other Joomla security measures, you are begging to be hacked and made a fool of. Your website is your online shop window, defacement, spam emails in your name, outbound links to porn sites, user information taken and used, etc.
Falling prey to hackers damages your businesses reputation and costs far more than the costs of cleanup - which in turn cost far more than the cost of prevention. I'm not scaremongering I see it every day, and funnily enough it's never ourselves.

Keeping on top of your website will save you money should something go wrong, a recent large hacking incident set someone back over £2,600 for the de-hack and a further £480 to seal other weaknesses. They needed to retrieve their user's information no matter what, and keep an online presence throughout. With our expert Joomla security measures none of this would have happened. A £350 Joomla security audit would have shown all the potential issues and pointed out how to fix and seal the cracks. A further £360 would have paid for us to do the necessary follow-up work - this would have prevented the hack and also fixed other weaknesses that the site audit highlighted.

3. Joomla Website Re-hacked - Missed Hacker Files
About 20% of our de-hacking jobs come from other developers or site owners who have cleaned out a hacking incident and very quickly been re-hacked. De-hacking a Joomla website is a skill, you can overlay a clean set of files to your current files but what about new files that have been added.

We've created our own script that we add to a client's site, we then search for anything that is not a part of the core Joomla files, we then investigate what these files are, some will be legit and others might be hacker files.
One thing is for sure, our clients never get re-hacked from the same incident.

4. Joomla And Server Login Details Taken From Infected Computers
Malware, Spyware and other computer infections once accounted for a significant proportion of website hacks. People's awareness of viruses and better quality antivirus has reduce this form of hacking, however it does still happen and we have seen incidents of this recently.

Run regular full system scans against all machines that are used to access your website, be careful / vigilant when browsing the Internet and opening emails. Don't risk your businesses reputation, keep your computers clean and free from infections with the added benefit of helping to keep your website clean.

If you are concerned about your website's security or believe you might have already fallen foul to hackers, do not hesitate to get in touch.

5. Cheap Joomla Hosting
Why would you go for the cheapest hosting provider you can find?

Cheap or low cost hosting providers use shared servers that can host up to 1,000 websites. Shared hosting by itself is not bad, but if you pay the minimum for your hosting you know it will not be configured for optimal speed or security.

Cheap hosting is sold as a lead generator

When something goes wrong - and it will - the hosting company will do nothing to help and will do everything to up-sell you to a more expensive package that they claim is more secure - which isn't, it is on the same server but you pay more for nothing extra. For optimum security, smaller hosting providers like ourselves offer the best Joomla hosting packages.

ASPHostPortal.com is a popular online Joomla 3.2 hosting service provider catering to those people who face such issues. The company has managed to build a strong client base in a very short period of time. It is known for offering ultra-fast, fully-managed and secured services in the competitive market.
“We have hosted large numbers of websites and blogs until now. Our clients come from diverse backgrounds from all sectors of the economy. We offer free trial for our new customers so they get an idea of the kind of service they will receive,” - Dean Thomas
, Manager at ASPHostPortal.com.
ASPHostPortal.com has been offering fully managed backups, updates, and security all round the year without any sorts of interruptions to make sure that the web traffic of their clients’ websites and blogs is not lost. The company is also seen offering maximum security for its clients’ blogs and websites.

 



Free ASP.NET hosting - ASPHostPortal.com :: ASPHostPortal.com Proudly Announces Free Trial Windows ASP.NET Hosting

clock October 3, 2013 10:58 by author ben

ASPHostPortal.com is a premier Windows and ASP.NET Web hosting company that specializes in Windows and ASP.NET-based hosting. We proudly announces 7 Day Free Trial Windows and ASP.NET Hosting to all new customers. The intention of this FREE TRIAL service is to give our customers a "feel and touch" of our system. This free trial is offered for the next 7 days and at anytime, our customers can always cancel the service.


The 7 Day Free Trial is available with the following features:

- Unlimited Domains
- 5 GB Disk Space
- 60 GB of Bandwidth
- 2 MS SQL Database
- Unlimited Email Account
- Support ASP.NET 4.5
- Support MVC 4.0
- Support SQL Server 2012
- Free Installations of ASP.NET And PHP Applications

ASPHostPortal.com believes that all customers should be given a free trial before buying into a service and with such approach, customers are confident that the product / service that they choose is not faulty or wrong. Even we provide free trial service for 7 days, we always provide superior 24/7 customer service, 99,9% uptime guarantee on our world class data center. On this free trial service, our customer still can choose from our three different data centre locations, namely Singapore, United States and Amsterdam (The Netherlands)

Anyone is welcome to come and try us before they decide whether or not they want to buy. If the service does not meet your expectations, our customer can simply cancel before the end of the free trial period.

For all the details of packages available visit ASPHostPortal.com

About ASPHostPortal.com:

ASPHostPortal.com is a hosting company that best support in Windows and ASP.NET-based hosting. Services include shared hosting, reseller hosting, and sharepoint hosting, with specialty in ASP.NET, SQL Server, and architecting highly scalable solutions. As a leading small to mid-sized business web hosting provider, ASPHostPortal strive to offer the most technologically advanced hosting solutions available to all customers across the world. Security, reliability, and performance are at the core of hosting operations to ensure each site and/or application hosted is highly secured and performs at optimum 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