Re: which file to select different special price for different customer groups?
config_customer_group_id is set in catalog/controller/startup/startup.php.
Jump to post- Sat Oct 12, 2024 11:59 pm
- Replies 3
- Views 82
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 6
- Views 203
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 6
- Views 203
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
- Fri Oct 11, 2024 5:06 pm
- Replies 6
- Views 203
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.
- Thu Oct 10, 2024 5:27 am
- Replies 8
- Views 454
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 218
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 8
- Views 454
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 355
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?
- General Support
- How to increase "database table size"? to fix module issue saving selections for USER GROUP > Dashboard Panels
- Mon Oct 07, 2024 5:50 pm
- Replies 2
- Views 131
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 902
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 622
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 902
Re: Notice Error in the Delivery Method step of OC 1.5.6.5_rc
It does look like the data the extension is receiving from Australia Post is different to what is expected.
If it's a live site you also need to switch of displaying of errors.
- Thu Oct 03, 2024 4:30 pm
- Replies 1
- Views 491
Re: SEO errors
OC 4.0.2.3 PHP 8.1 Works perfectly without SEO. The following errors appear with SEO: - Attempting to delete a product in shopping cart results in error "Cannot find product". - Attempting to log in as a real customer results in error "Customer not found" - Registering, error &q...
Jump to post- Thu Oct 03, 2024 4:20 pm
- Replies 9
- Views 902
Re: OC4 Marketing / Mail bug
See https://github.com/opencart/opencart/issues/12645. There looks like a fix was made https://github.com/opencart/opencart/co ... 5517c93c3b.
Jump to post- Wed Oct 02, 2024 11:47 pm
- Replies 1
- Views 480
Re: Opayo updating their URL's, any updated Opayo server modules going to be released soon?
Try. https://github.com/opencart/opencart/pull/13766 Jump to postSCREWLOOSE2000 wrote: ↑Wed Oct 02, 2024 5:38 pmHi, was there ever a solution to this.
I'm a bit stuck, I need sagepay/opayo server.
I'm currently on Opencat Version 3.0.3.2
And another site is Opencart Version 3.0.2.0
Thanks.
- Extensions Support
- Opayo updating their URL's, any updated Opayo server modules going to be released soon?
- Wed Oct 02, 2024 5:51 pm
- Replies 27
- Views 8082
Re: Image upload not working
Here is the changed that worked for me. Change this line https://github.com/opencart/opencart/blob/3.0.x.x/upload/system/library/image.php#L121 I guess there is a bug in the 3.0.3.2 version that gets cleared up in the 3.0.4.0 version and if you don't upgrade you need to fix this line. See attached ...
Jump to post- Wed Oct 02, 2024 4:41 pm
- Replies 9
- Views 585
Re: emails not working, end of my tether trying to figure it out.
ssl://smtp-mail.outlook.com and port 465 or tls://smtp-mail.outlook.com and port 587 will probably be the only correct settings. However the error you posted does suggests it connected, as your username was accepted, but you password is actually wrong or timed out. Try increasing your timeout. 5 Sec...
Jump to post- Tue Oct 01, 2024 6:14 pm
- Replies 5
- Views 445
Re: Moved Admin Dir - White Blank Page > Error: Call to undefined method ScssPhp\ScssPhp\Compiler::compileString()
That suggests the paths in your admin/config.php are wrong. First it's possibly not finding your .css files so is trying to make new ones. Then it's not finding scssphp in you storage/vendor directory.
Jump to post- Installation, Upgrade, & Config Support
- Moved Admin Dir - White Blank Page > Error: Call to undefined method ScssPhp\ScssPhp\Compiler::compileString()
- Tue Oct 01, 2024 4:22 pm
- Replies 6
- Views 633