Archive for June, 2010

Server Maintenance Notice

June 30th, 2010  in Server 1 Comment »

Million thanks for your loyalty to HostEase.com. As a customer to HostEase, you may know that we provide our reliable hosting solution through Softlayer Data Center. In order to improve the server performance, SoftLayer is going to carry out scheduled maintenance between 05:00 AM and 09:00 AM, July 3, 2010 GMT.

They will perform maintenance on circuits which provide connectivity from BBR01.SR01.DAL01 to BBR01.EQ01.DAL01 on the public network and BBR01.SR01.DAL01 to MBR01.DAL01 on the private network.

Therefore, the following services will be modified during the maintenance:
Dallas, TX (DAL01) to Seattle, WA (SEA01) private and public network connectivity
Dallas, TX (DAL01) to Washington, DC (WDC01) private and public network connectivity
BBR01.SR01.DAL01 to BBR01.EQ01.DAL01 global backbone network connectivity (public / private)
DAR01.DAL01 and DAR02.DAL01 to BBR01.SR01.DAL01 global backbone network connectivity (public / private)

It will require 4 hours to complete the maintenance process. You are likely to see routing anomalies, packet-loss, and increased latency on both the public and private networks.

Your patience and understanding are appreciated during this time. Of course, if you have any connectivity problems after that time frame, please feel free to submit a ticket to us. We apologize for the inconvenience caused and expect for your continued patronage.

Notice to HostEase’s Customers: Server Upgrade

June 21st, 2010  in Uncategorized 273 Comments »

Dear Customer,

We would like to place our sincere thanks for your interest in our HostEase. In order to provide better services to our customers, we will be upgrading our server on Thursday, 24 June 2010, from 2:00a.m. until 5:00a.m. CDT.

It will take 3 hours to upgrade both the support and manage system. We start the upgrade from the support system which will need 1 hour. Then it is the upgrade for manage system which requires 2 hours.
The live-chat and ticket support will be unavailable while the upgrade for support system are taking place,however, you still could expect phone support.

When we are upgrading the manage system, you will not able to access the Manage Page for any management and your requirements for purchasing products will be not meet. Customers are allowed to login into your hosting control panel and manage your hosting account via the address “yourdomain.com/cpanel”.

During these upgrades process, your websites will not be affected. We do these upgrades with the purpose of adding more processing power to our support and manage systems. Thus they will help increase their speeds and efficiencies.

HostEase Technical Department
June.21, 2010

A Complete Guide to Create 301 Redirects in htaccess

June 13th, 2010  in Experience Sharing 347 Comments »

Basics about Web Page Redirect

On a website, redirect is a technique for moving visitor from one web address to another different web address. There are many different reasons that a website may need redirect.

a)The website is at a similar but distinctly different domain name
b)Two websites are merging into one page
c)There is a completely new address for the website

For example, if a company has just changed its named then they would like to turn their visitors as well as customers to their new web page with the new name included.

These days, with the popularity of online affiliate marketing, web users often encounter redirection when they visit a selling link. This is because an affiliate link that looks long and scary is not friendly for online promoting. It is a common practice that the affiliate redirects an affiliate link to another friendly looking URL with the purpose of hiding the fact that they are sending a user to an affiliate offer.

If you have the necessity to redirect your webpage for whatever reason, this article is written for you. In this article, we will introduce the most efficient method for webpage redirect, 301 redirect, to help you out.

What is 301 redirect?

When redirecting a web page to another, one critical issue is to make sure the high search engine rankings with that page will not lose after the redirection. A 301 redirect is just this type of redirection, which allows you to preserve your current search engine rankings when redirecting web pages. 301 redirect is different from 302 redirect and it is a method to move your web pages permanently and there will no longer be any connection between the old address and the new URL address. You implement the 301 redirect by creating an .htaccess file (check with your hosting provider if they provide).

What is an .htaccess file?

In web servers (usually Apache), .htaccess is the default name of a directory-level configuration file that allows decentralized management of web server configuration. An .htaccess file is a simple ASCII file, such as you would create through a text editor like NotePad or SimpleText. The .htaccess file contains specific instructions for certain requests, including security, redirection issues and how to handle certain errors. When a visitor or a spider make a request to your web page via any method, your web server need to check an .htaccess file firstly. Any changes made in .htaccess files will take immediate effect.

How to Implement a 301 redirect for static pages?

First of all, you need to check whether there is an .htaccess file in the root director of your server or not. If you have not found the .htaccess file, open notepad or similar application to can create a file, then name and save it as .htaccess.

If you already have an .htaccess file with some lines of code there, you simply need to download it to your desktop for editing. You should not make any changes to the existing codes unless you are familiar with the functions of the file.

Scroll down past all the existing code, leave a line space, and then create a new line to place the following code:

redirect 301 /old/old.htm http://www.you.com/new.htm
Save the file and then upload it to the root folder of your server. Turn on your browser and enter the old address of your web page you will find out that it is redirected to your new address. Congratulations to you!
Notes: Be sure that the old path of your webpage here start from the top level of your website to the old page, you should not add “http://www” at the beginning of your old address. In addition, you should keep a single space between the following three elements:
redirect 301
/old/old.htm

http://www.you.com/new.htm

How to Implement a 301 redirect for dynamic pages?

Different from the normal static web page, a dynamic page can change every time it is loaded (without you having to make those changes) and they can change their content based on what users does, such as clicking on an image or something else. Dynamic web pages usually generated by a database driven application, such as blog or forum software. That means that the web page will grab information from a database and inserts that information into the web page every time it is loaded. When looking for the URL address of a dynamic web page, you will see that there is a file name appended by a query string, similar to the following:

http://www.example.com/page.php?id=13

If there is a query string in your old URL address, we can say that your web old web page is a dynamic one. If this is the case, then the above 301 redirect solution for static web pages will not fit your purpose. Instead, you are required to use a rewrite solution. Take the above address page.php?id=13 for an example, you will need to all following codes in your htaccess file:
RewriteEngine on
RewriteCond %{QUERY_STRING} ^id=13$
RewriteRule ^/page.php$ http://www.example.com/newname.htm? [L,R=301]
Please remember to replace the above the id=13 with the query string of the page you wish to redirect and also replace the page.php with the name of your file prior to the query string.

How to Implement 301 redirect for file names with spaces?

Once I had take over a website that built by someone who really not good at his job. I found out that most of the web pages had file name with space, such as “Ticket Order Form.htm”. I would like to redirect these old pages to the new, properly named pages, then I got into trouble with a standard redirect 301 codes. Fortunately, I finally got it function perfectly when someone telling me to use quotes around the original file path. Well, it should look like:
redirect 301 “/old page.htm” http://www.example.com/newpage.htm
How to Implement 301 redirect for the entire website?
If you have found an ideal new domain name for your company and expect to make advantage of the new domain name because it is so wonderful, then you can simply redirect the entire website by adding the following code to .htaccess file.
redirect 301 / http://www.you.com/
The first slash “/” implies that everything from the top level of the site down will be redirected. If you are going to use the same paths and filename as the old one, it is fairly easily to achieve your purpose with this method.

Please not forget to have the trailing “/” on the destination URL, or it may not function correctly. Also, when redirecting a domain name with 301 redirect, you are recommended to leave the old domain name and files in place for a few weeks to give the search engines time to index your changes.

Do you need to make any redirection for your web pages? It is not that hard as you imagine, isn’t it? You can finish the whole process of redirects within a few seconds if your hosting provider offers you with cPanel hosting and .htacess file.

Selecting an Outstanding Web Host to Aid Your SEO Efforts-What to Consider?

June 7th, 2010  in SEO, Web Hosting 283 Comments »

The online business is increasing day by day. Every webmaster like you will certainly expect to make your website a cut above the rest and bring high sales volume. Well, this is not an impossible dream; however, it requires a lot of work to be done to fulfill your dream. There are many aspects you need to change or add in your website, such as, great design and informative content. Personally, I think the first most important thing you should make is to find a web server that is smart, realizable and conducive to search engine.

A web server is the backbone of every online web site and it can influence the success of your website or blog. For one thing, all of the great design and quality content you are going to post on your website need the networking connecting service so that they would be accessible to users from all around the world. For another thing, as e-commerce is a cut throat business nowadays, many ecommerce website pay great efforts on Search Engine Optimization, which is one of the most prominent marketing techniques that everyone uses on the internet today, if you are able to select an outstanding web hosting provider and package that would aid your SEO efforts, you can be rest assured that your usage will totally sprout up and the popularity of the blog will rise. Conversely, if you choose the wrong hosting company, you will not able to get a large audience base.

A top ranking can bring thousands of visitors to your website, to find an eminent hosting provider to keep step of SEO effort, you must keep in minds of a number of factors. Reading through this article will help you find the right SEO web host to empower your website.

Location of your target audience
Actually, getting traffic to your website is not so hard. Instead, getting the right traffic that would increase your business possibility and help you generate money will be not so easy. To expect a higher the click through rate, you need to make sure that your website is physically located in a place where your target audience are. Imagine that you are running a business in US and focus on delivering product or service within your own geographic region, it is necessary that your website is located in that area. If you choose a cheap hosting on a server that located in Asia, which will be harmful for you to attain top search engine ranking in your target places, then you will shot yourself in the foot. You should choose the right hosting company with its servers located in the right region.

For my own point of view, the majority of website owners and bloggers target their audience to Americans and fortunately, most online web providers have their servers in the United States, therefore, as far as geography is concerned, it will be very easy for you to find an ideal one. If most of your readers are from other countries, such as, Spain, Germany, you should never forget to choose a web server that is located there. When picking a web server for the benefit of search engine optimization, this is the main thing you need to aware of.

IP Addresses
Another factor that you need to take into account when choosing a hosting company for SEO benefit is the IP address that provided by the company. A lot of people are wondering whether IP addresses play role for SEO result. The answer is definitely “yes”. Firstly, you need to consider about the history of the IP address. Assuming that you are using an IP address that was used to ant other website and keep close relationship with any illegal online activity such as, spam, phishing or anything else, then it is very likely that the search engines will lower its ranking on search results, or even worse, it will not index your website. Secondly, if you are going to run more than one site with different IP, then it is essential that the IP addresses of your website should not reside in the same C class group. It will be hard for you make a network in the future for the search engines might consider it as artificial linking which will do harm to your search engine optimization.

Company Reputation
The web host provider should have a good reputation in web hosting industry. A hosting company that has the best reputation should have a record of dealing with infractions quickly and strictly. If you mistakenly choose a company that pretends to withhold those spammers, hackers, and then you website will be affected as well. You should at least pay a visit to their website to see their customer feedbacks. It is necessary to type the company name in the search engines to see what their customers are talking about them. If you are luckily enough to find out that most of their customer feedbacks are positive, it is a good sign that the company could offer satisfying service. Without doubt, the biggest things to look for are dependability and reliable customer service.

Your Future Neighborhoods
Since your website is hosted on a shared server with numbers of other website, the neighborhood of your site will also plays a role to the Search Engine Optimization. Even though some people may think that this might be obsolete in the near future, however, currently you are suggested to take it into account as long as you hope to get your website ranked higher. Imagine that when you are choosing a house for your family, you should ensure that the environment around it is secure enough so that your family can be protected and free from crime and indecent activities. So does finding a home for your website. Although you have no choice to choose who to be your neighbors, if you check out with the hosting provider that they promise to be strict when dealing with spammers and any other indecent websites, then I can say that you have made a good choice. Of course, the best practice is often to buy a dedicated IP address for your own website and to keep your website in safe.

With the increasing important role of SEO, finding a SEO web host that helping you to reach the best result is terribly important for every webmasters. Hostease.com now is serving for a large number of websites from all around the world. Get hosted with Hostease.com, your websites will reach top ranks on all major search engines.

Shared Web Hosting is Your Best Choice

June 3rd, 2010  in Web Hosting 155 Comments »

With the development of the network, the websites play increasingly important role in it. It is very essential to utilize the facility of web hosting.

Shared web hosting is rapidly gaining popularity among the internet community because it is the most economical way to get a place on World Wide Web. Everyone from individuals to small companies and from small website owners to large business giants wants to have an online house then they can share files over the network through shared web hosting. For maintaining and developing websites, it is very vital to take advantage of the facility of web hosting as these web hosting companies provide space for clients on their own servers for maintaining a data center. There are many kinds of web hosting services available. And shared web hosting is the most popular among them. For instance, HostEase can provide three kinds of shared hosting, including blog hosting, basic hosting and business hosting .Clients can feel free to make the best choice. The optimum facilities are fair enough to share sufficient information provided and feature on line. The expenses of shared web hosting are much cheaper in comparison with other kinds of web hosting facilities available.

Shared web hosting has the authority to designate connectivity on the internet for many other servers which are actually not owned by them. HostEase can provide 100Mbps Public Port. This helps the websites get better visibility. Shared web hosting allows many websites to rest in one platform or server with the help of different Internet protocols. At the same time, the websites can still remain a very fast connection. These web servers are very powerful even though many other websites are being hosted on the same server. The websites will not be hampered in any ways and there would be a partition separating from all of them so that there is no mixing of files among different websites. The websites setup and installation time is very less. And the websites get activated very soon and `web pages do not take long to get live.

One of the other features of shared web hosting is system administration and there are many kinds of control panel systems namely H- Sphere, cPanel and Plesk. HostEase can provide cPanel for the clients. Web hosting companies are responsible for the management and control of the server, installation of all the essential software needed on a server, security updates and all the other necessary details which are taken care of perfectly. The functions which are provided along with shared web hosting are multiple domains and multiple email addresses. There are many software installations which come along with the shared web hosting service.

Shared web hosting provides their clients with multi platform site solutions. There are many packages they can choose, including file transfer protocol services, the ability to send and receive data, considerable amount of optimum disk storage and email forwarding services.

Shared web hosting can provide shared IP and dedicated IP in terms of services from which clients need to select what they need. For one thing, it is based shared web hosting where the IP address remains the same. For another, different and unique IP address is provided for oneself.

Shared web hosting services mostly guarantee uptime and others. For example, HostEase can provide 99.9% uptime guarantee, 30 day money back guarantee and so on. It is a good idea for people who are new to make use of hosting services.

Shared web hosting also features excellent technical and customer support services which are available 24×7×365 and this is one feature which makes more attractiveness.

To sum up, shared web hosting is the best choice in terms of facilities as well as budget.