Search found 4974 matches

Search found 4974 matches

Re: Google Canonical Errors

Change the file section in your vQmod to. <file name="catalog/controller/product/category.php"> <operation error="log"> <search position="before"><![CDATA[ if ($page == 1) { ]]></search> <add><![CDATA[ if ($page > 1) { $this->document->addLink($this->url->link('product/...

Jump to post
  • Fri Oct 18, 2024 6:50 pm
  • Replies 6
  • Views 690
Re: Google Canonical Errors

You can only replace single lines with vQmod. In which case, if you don't want to fix the core files, then you are probably better adding the following with a vQmod. if ($page > 1) { $this->document->addLink($this->url->link('product/category', 'path=' . $category_info['category_id'] . '&page='....

Jump to post
  • Fri Oct 18, 2024 12:24 am
  • Replies 6
  • Views 690
Re: Password protected directory

You cannot use the Directory directive in .htaccess. You would be best to ask you host how to set a password protected directory for your hosting and why it's not working. You may even be able to do it from your hosting control panel. If you wanted to hide the products in OpenCart and not .htaccess,...

Jump to post
  • Thu Oct 17, 2024 7:19 pm
  • Replies 10
  • Views 381
Re: Google Canonical Errors

There was a bug in 2.3.0.2 where some of the canonical tags were missing if the category URL had page in. https://github.com/opencart/opencart/issues/4637 In catalog/controller/product/category.php find. if ($page == 1) { $this->document->addLink($this->url->link('product/category', 'path=' . $categ...

Jump to post
  • Thu Oct 17, 2024 5:23 pm
  • Replies 6
  • Views 690
Re: Affiliate Reporting

There is still affiliates, they were combined with customers. You have to look for the affiliate details for each order or customer. To get reports on affiliates, it looks like you are going to have to use an extension.

Jump to post
  • Wed Oct 16, 2024 11:56 pm
  • Replies 3
  • Views 160
Re: Affiliate Reporting

I believe the affiliate reports were removed in 3.0.x. Some of the documentation is out of date as well, those menu items were last in 2.0.x.

Jump to post
  • Wed Oct 16, 2024 10:17 pm
  • Replies 3
  • Views 160
Re: Password protected directory

The blank page could be the result of an error. Check your server/PHP errors logs (not the OpenCart one).

Jump to post
  • Wed Oct 16, 2024 9:59 pm
  • Replies 10
  • Views 381
Re: PHP code isnt updated till when i reset Chrome settings.

What situation is that causing a issue for you? For example, coming to your OpenCart-based website, to the home page, for the first time, Chrome puts all the static resources into a memory cache. User then clicks on the Contact Us link (information/contact) which, despite a single no-store in the r...

Jump to post
  • Wed Oct 16, 2024 5:04 pm
  • Replies 8
  • Views 490
Re: PHP code isnt updated till when i reset Chrome settings.

The no-cache does not necessarily mean "don't cache". no-cache allows caches to store a response but requires them to revalidate it before reuse. If the sense of "don't cache" that you want is actually "don't store", then a single no-store is the directive to use. This...

Jump to post
  • Sat Oct 12, 2024 12:06 am
  • Replies 8
  • Views 490
Re: PHP code isnt updated till when i reset Chrome settings.

@ADD Creative: Unfortunately Chrome doesn't appear to respect the standard Cache-Control: no-store anymore. E.g. when you update server resources, e.g. *. js, or *.css, or *.png files, while keeping the same URL for them, Chrome may still use old caches for them. I am still looking for some workaro...

Jump to post
  • Fri Oct 11, 2024 7:05 pm
  • Replies 8
  • Views 490
Re: PHP code isnt updated till when i reset Chrome settings.

Could be a cache control header issue. Use chrome's web developer tool (F12). Check the console for errors. Then use the network tab to see what is being cached. Also use the disable cache option.

The headers were added to 3.0.4.0.
https://github.com/opencart/opencart/pull/13599

Jump to post
  • Fri Oct 11, 2024 5:06 pm
  • Replies 8
  • Views 490
Re: Not able to add anything to the homepage

I would maybe get confirmation from PayPal about that. Their website says that they accept new integrations and support existing integrations.
https://developer.paypal.com/api/nvp-so ... ndard/web/

I've not heard anything about PayPal Payments Standard being removed.

Jump to post
  • Thu Oct 10, 2024 5:27 am
  • Replies 10
  • Views 873
Re: 3.0.3.9 PHP Unknown: mb_strtolower():

Looking in your raw web access logs for the times the error occurs, may help you track down the cause.

Jump to post
  • Wed Oct 09, 2024 10:36 pm
  • Replies 3
  • Views 269
Re: Not able to add anything to the homepage

Which of the PayPal payment extensions are you using? Could you switch to one or the others that will still work such a Express Checkout or Standard?

Jump to post
  • Wed Oct 09, 2024 10:31 pm
  • Replies 10
  • Views 873
Re: Re-writing my extension = wondering if calling one extension from another possible?

You could end with a redirect if your cron follows them. You could use $this->load->controller to load another controller, the same was the header, footer, etc are loaded in most controllers. You could put the common code into a model or library and call that from the controllers.

Jump to post
  • Tue Oct 08, 2024 4:37 pm
  • Replies 1
  • Views 939
Re: How to increase "database table size"? to fix module issue saving selections for USER GROUP > Dashboard Panels

It would be helpful to give your OpenCart and PHP version.

Are you saying the settings actually work, but it's just that you can't see which settings you have set?

Jump to post
  • Mon Oct 07, 2024 5:50 pm
  • Replies 4
  • Views 190
Re: SEO errors

It could be a missing entry for your language extension in the SEO URLs. Go to Design -> SEO URL and filter by key -> language. You should have an entry for each language.

Jump to post
  • Fri Oct 04, 2024 6:20 pm
  • Replies 9
  • Views 1037
Re: How many charachter count is recommanded for Encryption Key?

The passwords will be hashed so there should be no limitation, apart from maybe the database one, which will be down to the database.

Jump to post
  • Thu Oct 03, 2024 11:57 pm
  • Replies 5
  • Views 671
Re: SEO errors

The problem is with your config URL, a redirect in your htaccess or an extension your are using. The register form is doing a POST to "/tshop?route=account/register.register&language=de-ch". However that is getting redirected to "/tshop/?route=account/register.register&languag...

Jump to post
  • Thu Oct 03, 2024 11:43 pm
  • Replies 9
  • Views 1037

Search found 4974 matches