Shoppica 2 first byte is slow.

ThemeBurn SupportForumsOpenCart ThemesShoppica 2 OpenCart ThemeShoppica 2 first byte is slow.

This topic has been marked as not a support question.

Hi admin,

I’m using Shoppica 2.2.0 with OC 1.5.4.1, my site’s first byte is about 1-2s slower than the default opencart, do you know how can I resolve this problem? My site just instantly speed up about 1-2s after I enabled the default OC theme.

Thanks for your help!

Here is my site

  • This reply was modified 3934 days ago by  henryn.
 henryn
July 18, 2013 at 11:02 pm #25733

Hi,

You can post your mail in this topic and we will send an experimental cache plugin, which can improve your website performance:

http://support.themeburn.com/topic/site-very-slow

Best,
ThemeBurn team

July 22, 2013 at 4:47 pm #25813

Hi,

My email is , I had actually leave my email in the other post few weeks ago, but I don’t get any reply from you. Appreciate on your prompt reply to us which can solve the first byte issue. Thank you.

 henryn
July 30, 2013 at 7:42 pm #26077

We have sent the cache extension to you. Please, share if it makes difference.

Regards,
ThemeBurn team

July 31, 2013 at 9:19 am #26081
 henryn
August 1, 2013 at 6:35 pm #26155

Did you ever test the cache extension we have sent to you ?

August 2, 2013 at 12:30 pm #26167
 henryn
August 2, 2013 at 9:44 pm #26172

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.

Please, make this modification and enable the Shoppica experimental cache extension we have sent. Can we get the website url and admin access, if possible. You can use hidepost to share private information with the support staff.

Let us know when you’re done.

August 6, 2013 at 12:20 pm #26254
 henryn
August 6, 2013 at 9:02 pm #26280

We disabled the cache extensions you have installed and enabled the Shoppica one only – the page load of http://www.nattacosme.com/073-Brand is 4-6 sec, which is slow. With the default opencart theme, the page load is much slower – 14-18 sec. Obviously Shoppica + SmartCache is 3 times faster, still not fast enough though.

Then we re-enabled the cache extensions you have installed, while keeping Shoppica smartCache also enabled. The page load dropped to about 1 second. I think that’s the maximum you can expect.

Regards,
ThemeBurn team

August 7, 2013 at 9:29 am #26285
 henryn
August 7, 2013 at 11:26 pm #26307
You will need to register in order to post topics and read replies in the ThemeBurn.com support forums!

Regards,
ThemeBurn team

August 8, 2013 at 11:54 am #26322

Please send the smartcache extension too … Using OC 1.5.5.1 with Shoppica2 . Thanks.

August 19, 2015 at 3:51 pm #42739
Viewing 13 posts - 1 through 13 (of 13 total)
  • You must be logged in to reply to this topic.