Any hosting for OC shoppica?

ThemeBurn SupportForumsOpenCart ThemesShoppica 2 OpenCart ThemeAny hosting for OC shoppica?

This topic has been marked as resolved.

Hi guys, my website is currently receiving 200 users average.
I have use your cache extension and followed your recommendation for mysql.
There was an speed improvement. However, still not as fast as I want.
According to several speed tests, my website is loading first time at 14 seconds. Thats a lot.
Im in shared hosting, do you recommend me to move on to vps? if so, do can you recommend me a good vps for opencart websites?

Thanks

May 23, 2013 at 12:49 pm #23488

14 Seconds load is terrible. Can you give us a link to your site. Can you share the hosting plan you use ? Also, can you test with the default opencart theme enabled to see if it makes difference ?

Regards,
ThemeBurn team

May 23, 2013 at 4:42 pm #23521

Hi kaliyas,

If this is a hardware issue, forget VPS. Get a semi-dedicated account with nginx and varnish or memcached.

Not sure that It’s OK or I would give you a link to such provider.

May 23, 2013 at 6:00 pm #23534

Hi Guys!

Thanks for your reply

Actually it is weird, now it is down to 7 secs check the image.
The Checkout part is the one that takes most of the time. Im using one page checkout by bingo extension.

May 23, 2013 at 7:34 pm #23543

Google page insight says that i need to improve server response
They also say that the index page is taking 3.5 to load. (sometimes I receive a higher number)
Dont know what else i can share.
Thanks

May 23, 2013 at 7:40 pm #23545

The picture shows your repeat ageload can go down from +4 sec to 1 sec of less if you correctly setup caching of static objects, esp. images and css.

TFB – needs hardware tweaking or change. That could shave off about +2 sec of you first page load.

May 23, 2013 at 7:45 pm #23546

@sarabjit Do you have any link you can provide to setup correctly statics objects for oc?

May 23, 2013 at 7:59 pm #23547

@kaliyas, we looked at your site and we didn’t observe any slowness in the response. You have very few categories and products, so there is no reason your site should load slow. We have tested Shoppica with thousands of categories and products and it serves the site contents under 1 second on a shared account.

Your hosting plan is one of the cheapest among the shared hosting, so you shouldn’t expect excellent performance. Your site is hosted on the same machine with several hundreds sites. Usually the performance of these hosting plans vary in accordance with how much requests are made to the hosted sites. In general, you should be able to run your site on a shared plan, but it seems your current hosting provider is not the best choice.

A VPS more than enough for the type of site you have and you could find ones under $20 per month. We heard good things about hostgator and jaguarpc, but you better ask (or search) in webhostingtalk.com

I am wondering how do you measure the load time. There are two types of loading – page generation time (the time it takes the server to process the page code) and browser loading time (the time it takes the browser to get the server response and to deliver it to the user). The server’s hardware is responsible for the page generation time and the network bandwidth for the delivery time.

Here’s how to test page generation time:

1. open /index.php

2. put these lines in the beginning, immediately after the opening <?php tag:

$starttime = explode(' ', microtime());
$starttime = $starttime[1] + $starttime[0];

3. Go to the end of the file and replace $response->output(); with:

ob_start();

// Output
$response->output();

$contents = ob_get_contents();

$mtime = explode(' ', microtime());
$totaltime = $mtime[0] + $mtime[1] - $starttime;

ob_end_clean();

if (false !== strstr($contents, '</body>')) {
    echo str_replace('</body>', sprintf("\n<br /><br /><small class=\"small\">Page generation time: %.5f seconds</small>\n</body>", $totaltime), $contents);
} else{
    echo $contents;
}

You should observe the page generation time at the very bottom of every page on the site. This change doesn’t hurt the performance or google ranking, so you can leave it safely for now.

Let us know when you’re done.

The page delivery time is usually measured from the ‘Net’ panel of firebug or other similar tools.

@Sarabjit – Thank you for your advices. We want to note however, that having a hosting plan with memcached or varnish doesn’t improve the performance out of the box. Opencart should be configured to take advantage of these technologies. We thing also that a decent VPS is a good choice for 98% of the existing opencart stores.

Regards,
ThemeBurn team

May 24, 2013 at 11:20 am #23552

Thanks for your suggestions. I have been doing my research on VPS, but still dont feel I need all the resources that a VPS is offering us. Maybe when we have more categories and products.

You said that you have customers with 1000+ and many categories hosting in shared hosting. Do you mind to share with me what shared hosting plans are they having? Because I really want to move from netfirms. Recently the website is breaking down with SQL errors. They keep saying this are temporarily breakdowns, and well it has been more frequently recently.

I will really appreciate your recommendation on a shared hosting plan for my store. 200 visits per day, few categories, less than 100 products.

Thanks.

June 20, 2013 at 8:28 am #24593

@kaliyas

We use this and are very happy.

http://www.indichosts.net/semi-dedicated

Welcome to bliss!

June 21, 2013 at 5:07 am #24609
Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.