Re: New opencart web site - bugs
I have couple of module and on one of module i have 99 rating. All of sudden opencart remove rating and we are back to zero rating. all our effort go to vain. Due to this sales decrease by 50%. And now its 1 because last customer got 1 day reply later and he rated as 1 star, and we are in problem.No...
Jump to post- Fri May 05, 2017 4:00 pm
- Replies 351
- Views 117367
Re: Customer Group Pricing
Just for conformation :
Will you login as that customer when you see price.
once customer will login then only they can see discounted price if
any discount available for their customer group.
- Thu May 08, 2014 12:32 am
- Replies 2
- Views 477
Re: Can opencart handle 6 million products??
have a look apache solr. it is better with millions of products. and for page cache you can use varnish as well. You need to use best technologies for experienced. Redis is also good option for setting. and use rabbitmq for queue processing. Let me know if any buddy need any kind of technical help/q...
Jump to post- Wed May 07, 2014 1:24 am
- Replies 4
- Views 4416
Re: Always getting error when clicking next on coupon page
all links start with http:// not https://
Jump to post- Wed May 07, 2014 12:45 am
- Replies 5
- Views 903
Re: Coupon Error - It Says Invalid, Expired, Reached Usage L
I felt there is not any error related php.
Jump to post- Wed May 07, 2014 12:44 am
- Replies 3
- Views 897
Re: Product Quick Edit
Have a look this :
http://www.opencart.com/index.php?route ... n_id=14030
Check its demo
- Wed Apr 30, 2014 1:46 am
- Replies 4
- Views 1127
Re: Seo For Sites
follow google seo guide,
Setup tool/mod,
engage your site with social media,
learn from google analytic
- Wed Apr 30, 2014 1:21 am
- Replies 4
- Views 909
Re: my store title set to default on google search
Update your sitemap in google webmaster tool,
It may help you to update it.
- Wed Apr 30, 2014 1:16 am
- Replies 1
- Views 449
Re: Creating a SEO URL
have a look this :
http://www.opencart.com/index.php?route ... on_id=7540
In this mod you can make seo link any of your opencart link,
Try its demo
- Wed Apr 30, 2014 1:08 am
- Replies 2
- Views 570
Re: how picture name same like product name
You may find mods for that as well as,
checkout :
http://www.opencart.com/index.php?route ... n_id=15356
- Wed Apr 30, 2014 1:04 am
- Replies 4
- Views 1210
Re: Always getting error when clicking next on coupon page
This should not happens but you can check admin config.php
and make sure you turn off ssl setting in system->setting
- Wed Apr 30, 2014 12:34 am
- Replies 5
- Views 903
Re: Coupon Error - It Says Invalid, Expired, Reached Usage L
This section working fine with all installation.
please recheck once again with all parameter and create new one.
- Wed Apr 30, 2014 12:32 am
- Replies 3
- Views 897
Re: image manager issue after 1.5.6.3 upgrade
Clear vqmod cache and try once again.
it may solve this problem,Not sure
- Wed Apr 23, 2014 11:48 pm
- Replies 1
- Views 536
Re: Copy of OC on same webhost - need help renaming database
Run this query :
RENAME DATABASE db_name TO new_db_name;
- Wed Apr 23, 2014 11:47 pm
- Replies 1
- Views 741
Re: root cache map stays empty
Give permission 777 to that server.
it will store cache files when you start using front end.
- Wed Apr 23, 2014 11:44 pm
- Replies 4
- Views 843
Re: multistore customer register
You can create multiple customers and map a group to one store.
that's how you can solve this problem.
- Wed Apr 23, 2014 11:40 pm
- Replies 1
- Views 716
Re: Opencarts Maintenance Mode
Add this in index.php $maintenance = false; ## set to true to enable if ($maintenance) { if (isset( $_SERVER['REMOTE_ADDR']) and $_SERVER['REMOTE_ADDR'] == 'your_ip') { ##do nothing } else { error_reporting(E_ALL); ini_set('display_errors', 1); ## to debug your maintenance view require_once 'mainten...
Jump to post- Wed Apr 23, 2014 11:34 pm
- Replies 3
- Views 955
Re: Get variable to child controller
You can to pass variable $data when you call new controller(child).
By default it will not work.
- Wed Apr 23, 2014 2:33 am
- Replies 2
- Views 600
Re: Opencarts Maintenance Mode
have a look, index.php
where you can find:
// Maintenance Mode
$controller->addPreAction(new Action('common/maintenance'));
Where system check its status first,if its on then it will show relevant
page directly.
Just debug index.php.
- Wed Apr 23, 2014 2:30 am
- Replies 3
- Views 955