Economic Hosting Blog

Blazing fast, reliable and feature rich web hosting

Baklinks offer is back

with one comment

Folks, we are now again accepting backlink requests under our popular “The CHEAPEST Backlinks” offer.

In this offer, you will be provided

  • A very detailed report containing all backlinks submitted.
  • Backlinks on pages of very popular websites, having very high Google Page Rank.
  • Many of the websites are of type statistics, whois, and other statistics pages.
  • Many of the sites provide links that are Do-Follow.
  • Your links are retained for many years, so you get consistent visibility on internet for a long time.
  • On which sites do you get the links?
  • When submitted, your link will go to websites like alexa.com, aboutus.org, compete.com and many others.
    Also you will get own pages like (It is a sample from our repot for submisison of domain guidefordiet.com)

    http://www.aboutus.org/GuideForDiet.com

    http://www.cubestat.com/www.guidefordiet.com

    Above are just random examples.
    We provide thousands of links and they have mixture of many kind of websites.

Packages

Link500 Package

Backlinks: 500+
Cost: $5 or 250 INR.  Buy Now

Link1000 Package

Backlinks: 1000+
Cost: $10 or 500 INR.  Buy Now

Link1500 Package

Backlinks: 1500+
Cost: $14 or 700 INR.  Buy Now

Link2000 Package

Backlinks: 2000+
Cost: $18 or 900 INR.  Buy Now

Terms

  • You must be well aware what “backlinks” means in SEO world.
  • These offers do not include any profile links, directory submission or anything not mentioned here. We only provide backlinks in this offer.
  • Your backlinks are visible once they are approved by site owners. In our experience till now, approval of all backlinks may take upto 4 weeks.
  • Advance payment is required before starting the backlink submission.

Submission Procedure

  1. Make the Paypal payment using Buy Now link above. For other payment options please Contact Us.
  2. Send following information using our contact form.
    • Payment Transaction Id
    • List of domains to submit
    • Package chosen
    • Email Id (where the report will be sent)
  3. After getting these details, your submission will be put into processing.

Written by economichosting.net

March 17th, 2012 at 7:24 pm

Breadth-First Search implemented in PHP

without comments

While working on an OSCommerce store development, we came across need to get Ids of all sub categories within a category.

In OSCommerce categories and their parent have infinite level of possible hierarchy.

Following is the definition of categories table fo OSCommerce:

/*Column Information For - osc.categories*/
-------------------------------------------

Field             Type         Collation          Null    Key     Default 
----------------  -----------  -----------------  ------  ------  ------- 
categories_id     int(11)      (NULL)             NO      PRI     (NULL)  
categories_image  varchar(64)  latin1_swedish_ci  YES             (NULL)
parent_id         int(11)      (NULL)             NO      MUL     0
sort_order        int(3)       (NULL)             YES             (NULL)
date_added        datetime     (NULL)             YES             (NULL)
last_modified     datetime     (NULL)             YES             (NULL)

 

Now for a category I need all child subcategories, sub-sub categories and so on…

We developed following code that work like charm:

function get_cats($cat)
{
$i=1;
$remain=array();
$all=array();

/* Note: write your mysql connection stuff here or above it somewhere. */

$remain[0]=$cat;
$all[0]=$cat;

while(sizeof($remain)>0)
{
$curr=$remain[0];

$res=mysql_query("select * from categories where parent_id=$curr");
while($row = mysql_fetch_array($res))
{
$all[$i++]=$row['categories_id'];
$remain[sizeof($remain)]=$row['categories_id'];

}
unset($remain[0]);
$remain=array_values($remain);
}
return $all;
}

 

You can use it by passing a category id whose all children’s ids are needed, like:

$all_categories=array();
$all_categories=get_cats(73);

 

Above code fragment will give you all categories that come under category number 73, irrespective of their immediate parent.

I hope it would be useful for many people, so posting it here.

Thanks

Written by economichosting.net

January 20th, 2012 at 11:32 pm

Posted in Technical

2011: The Year That Was

without comments

We are in business for more than 3 years now, but 2011 presented unprecedented story for us.

Year 2011 brought more than 200% growth to Web Hosting and Domain Registration businesses.

Thanks for your unabated support.

We are committed to do even better in coming years with your continued trust and support.

Written by economichosting.net

January 2nd, 2012 at 10:05 pm

Economichosting.net is top ranked by Google!

without comments

The fact that Economic Hosting has been outstanding in providing premium web hosting is not new. It feels nice when our customer give very good feedback on our services.

Now it feels even nicer since Google is also giving tremendously positive feedback about on business.

Economic Hosting has been TOP ranked by Google for many web hosting related searches.

Have a look at following screenshots to know what Google thinks about our business.

It is a tremendous feat for our organization, especially considering that we are 3+ years old hosting company, and we are standing next to 15+ years old organizations in India as far as ranking by Google is concerned.

Following many screenshots depict only few of the dozens of keywords where we are on page 1, that too handsomely, within top 5 results of Google worldwide.

It is interesting to note than even our blog is ahead of our competitor’s main website. It shows that our users like our blog as much as our committed services.

We thank all our customers for continued support that has indeed enabled us to grow tremendously in fiercely competitive industry.

We are moving very rapidly, and we are sure your support will take us to the numero-uno spot in hosting industry of India.

 

Read the rest of this entry »

Written by economichosting.net

December 4th, 2011 at 11:40 pm

How to take backup of Linux VPS

without comments

It is easier to purchase a good bare born VPS, as there are many quality providers who just have to provide hardware resources.

Pain of software is minimized since they sell plain VPS.

Now it is upto the VPS buyer how he wants to take care of own end-customers.

One of the most important things to do on these VPS is regular backup facility.

You should strive for a remote backup. If that’s not possible, backup on mounted disk within same DC is also ok, if not ideal.

Next thing to think about: how do you determine which data to include in your backup?

I am going to propose a basic strategy that works for most Linux hosting customers.

In most of the cases, you should take backup of the mysql database and home directory of the customers.

Later job is easy to do: you can tar home directories and ftp to remote storage.

Now, how to perform mysql DB backup?

There is a very efficient method of doing this: AutoMySQLBackup

This utility works beautifully.

It is easy to install, and easy to configure.

You can create daily, weekly and monthly backup, and cycle them.

Following parameters are important ones which you should edit after installing AutoMySQLBackup.

CONFIG_mysql_dump_username

You should set it to “root” if you want to take backup of entire mysql storage. It stores all database in separate sql file, so easy to restore.

CONFIG_mysql_dump_password
Password of above mentioned user.

CONFIG_do_monthly
Set it to 0 if you want to retain daily or weekly backups.

CONFIG_rotation_daily
Set rotation policy

CONFIG_mail_addres

Email Id where result of backup should be sent. I could not manage this parameter to work.

CONFIG_dryrun
This parameter is very important. It allows you to perform a dry run to capture errors and fox them before actual run.

After taking backup through this program, you can ftp/rsync the backed-up database to your backup storage.

 

A few commands that will be useful to take backup of your Linux VPS:

#tar -czf  /backup/home.tar.gz /home

Above command takes backup of whole home directory. You may chose to make tarballs of individual customers as well.

#rsync -avz -e ssh <source directory>user@host:<remote directory>

You will have to set ssh trust keys for rsync to work in this manner.

I have setup remote backup of a few VPS this morning, each of them took 10-15 minutes on average.

Written by economichosting.net

November 20th, 2011 at 9:19 pm

How to change timezone of your VPS to IST

without comments

In this article we shall learn how to change timezone of your bareborn VPS.

It is assumed, though not necessary, that you have already installed a hosting panel like Kloxo or Virtualmin.

Changing timezone in OpenVZ

The file /etc/localtime is the one which holds information of server’s timezone.

We shall point it to the correct zone file by creating a soft link.

Run following commands:

# cd /etc

#mv localtime localtime.bak

#ln -sf /usr/share/zoneinfo/Asia/Calcutta localtime

#reboot

Changing timezone in Xen

When I tried to change timezone in Xen, it chnage dtimezone but did not update time accordingly after reboot.

So, I did following:

1. Chnaged timezone using steps mentioned above for OpenVZ

2. Run following command

echo 1 > /proc/sys/xen/independent_wallclock

3. Installed ntp

# yum install ntp

4. Turned on service

# chkconfig ntpd on

5. Synchronized the system clock with 0.pool.ntp.org server:

# ntpdate pool.ntp.org

6. Started the NTP:

# /etc/init.d/ntpd start

7. Reboot the VPS

#reboot

Now you will notice that after rebooting the VPS it again shows wrong time.

Actually you have to set the independent clock every time you reboot the server. To do this, put following lines in /etc/rc.local

service ntpd stop
echo 1 > /proc/sys/xen/independent_wallclock
ntpdate pool.ntp.org
service ntpd start

You would now get correct timezone and correct time every time you reboot your Xen VPS.

Written by economichosting.net

November 6th, 2011 at 11:12 pm

An open source alternative to Cpanel – Kloxo

without comments

Cpanel has been consistently outeprforming rival products when it comes to off the shelf solution for hosting that actually works.

Other paid and free panels have been trying to catch up but users just love Cpanel (and WHM if that needs to be mentioned separately, I think it does not).

Lately, Kloxo panel caught my attention for ease of installtion, easy to configure and being very user friendly.

It might need a bit of extra work compared to Cpanel, but it has becone one of our favourite at this time.

We would start to offer Kloxo accounts to the customer at further discounted rates pretty soon.

For any host we suggest to give Kloxo a try.

We have been encouraging open source movement, which is another good reason why want to promote it.

Written by economichosting.net

November 6th, 2011 at 12:51 am

Installing Java/Tomcat application via Economichosting Plesk panel

without comments

Dear Customers,
As you know we provide Java web application support in our Windows hosting plans.
Many customers asked how to deploy a Tomcat web application war file.
For convenience of all such users, we are providing step by step guide to deploying Java applications in latest version of Plesk panel which is available with us.

Installing Java Web Applications

You can install Java Web application packages in the Web archive format (WAR).

To install a Java Web application:

  1. Go to Plesk Home > Applications and services > Web applications > Java Applications .
  1. Click Install New Application.
  2. Specify the path to an application package you wish to install (this can be an application package in WAR format saved on your computer’s hard drive), or click Browse to navigate to it, then click OK.

Now the application is installed and the respective entry is added to the list of installed Java applications (Plesk Home > Applications and services > Web applications > Java Applications).

To access the web interface of a Java Web application, do any of the following:

  • Go to Plesk Home > Applications and services > Web applications > Java Applications, and click a respective hyperlink in the Path column.
  • Type the URL in your browser. For example: http://your-domain.com/storefront/.

To stop, start or restart a Java Web application:

  1. Go to Plesk Home > Applications and services > Web applications > Java Applications. A list of installed applications will open.
  2. Locate an application on the list, and use the icons in the right part of the list to perform the required operations:
  • To start an application, click the icon 62137.
  • To stop an application, click the icon 62139.
  • To restart an application, click the icon 62138 .

To uninstall a Java Web application:

  1. Go to Plesk Home > Applications and services > Web applications > Java Applications.
  2. Select a check box corresponding to the application that you no longer need. Click Remove, confirm the removal and click OK.

The application will be uninstalled and its databases removed from the server.

Written by economichosting.net

September 18th, 2011 at 12:36 pm

The Cheapest Backlinks Offer

with one comment

Folks, we are now again accepting backlink requests under our popular “The CHEAPEST Backlinks” offer.

In this offer, you will be provided

  • A very detailed report containing all backlinks submitted.
  • Backlinks on pages of very popular websites, having very high Google Page Rank.
  • Many of the websites are of type statistics, whois, and other statistics pages.
  • Many of the sites provide links that are Do-Follow.
  • Your links are retained for many years, so you get consistent visibility on internet for a long time.
  • On which sites do you get the links?
  • When submitted, your link will go to websites like alexa.com, aboutus.org, compete.com and many others.
    Also you will get own pages like (It is a sample from our repot for submisison of domain guidefordiet.com)

    http://www.aboutus.org/GuideForDiet.com

    http://www.cubestat.com/www.guidefordiet.com

    Above are just random examples.
    We provide thousands of links and they have mixture of many kind of websites.

Packages

Link1000 Package

Backlinks: 1000+

Cost: $5 or 250 INR.

Link1500 Package

Backlinks: 1500+

Cost: $7 or 350 INR.

Link2000 Package

Backlinks: 2000+

Cost: $9 or 450 INR.

Terms

  • These offers do not include any profile links, directory submission or anything not mentioned here. We only provide backlinks in this offer.
  • Your backlinks are visible once they are approved by site owners. In our experience till now, approval of all backlinks may take upto 4 weeks.
  • Advance payment is required before starting the backlink submission.

Submission Procedure

  1. Make the payment (Paypal Id: info@economichosting.net We are Paypal Verified Business
    for other payment options please Contact Us).
  2. Send following information to support@economichosting.net
    • Payment Transaction Id
    • List of domains to submit
    • Package chosen
    • Email Id (where the report will be sent)
  3. After getting these details, your submission will be put into processing.

Written by economichosting.net

February 10th, 2011 at 11:02 pm

100% Free CMS website, free 1000 Links and 50% OFF on hosting for life

without comments

Never before offer. Applicable with our hosting plans.

We are offering 100% free CMS website design with our web hosting plans.

Highlights:

  • Free CMS based website Developed for you
  • Flat 50% OFF for life on hosting charge
  • 1000 free backlinks to your website

This means Web Hosting +web Design+SEO promotion all bundled at only web hosting price, that too at 50% discount!!

To see details of our hosting capability: http://www.economichosting.net

Written by economichosting.net

February 5th, 2011 at 3:31 am