Re: modification cache no longer works after moving server.
Sounds like you new host has different default cache control. This can be a problem as OpenCart 3.0.3.9 and below don't correctly set any.
This is fixed in 3.0.4.0 by https://github.com/opencart/opencart/pull/13599.
For the register issue you need to look in you PHP/server error log.
- Sat Sep 14, 2024 12:26 am
- Replies 1
- Views 312
Re: [CLOSED] New product page error appeared - CKEditor warning
Looking at https://github.com/ckeditor/ckeditor4/security there are 5 issues that affect the last free version 4.22.1. 3 are in samples or plugins that aren't included in OpenCart. 1 looks to be in a feature not used in OpenCart by default. The final one looks to have been patch with https://github....
Jump to post- Fri Sep 13, 2024 8:25 pm
- Replies 6
- Views 645
Re: 404 in new clean install
Check you have a .htaccess file and the rewrite rules in it are correct.
Jump to post- Mon Sep 09, 2024 3:44 pm
- Replies 7
- Views 2517
Re: Change Contact Form Sender Address
Hi, thank you to everyone who contributes to these forums. I would appreciate any help on a similar matter. For some reason every time a message comes through via the contact form it only displays my email address as the sender. It does not show who sent the request. I do not know how to fix and I ...
Jump to post- Fri Sep 06, 2024 11:22 pm
- Replies 8
- Views 2668
Re: Problems with user email information in contact form
Look at the raw email headers. What is the Reply-To header set to?
Jump to post- Fri Sep 06, 2024 4:37 pm
- Replies 1
- Views 167
Re: Could not load template
The second error suggests extension/module/promotionModule/stats_page/tab_promotions.twig is being included in extension/module/promotionModule/promotion_stats.twig at line 45. If this is the case and both files exist see viewtopic.php?t=219092.
Jump to post- Thu Sep 05, 2024 8:03 pm
- Replies 14
- Views 327
Re: Could not load template
That suggests their is an issue with that extensions Twig template. It's possible it's not compatible with the later version of Twig included in 3.0.4.0.
Jump to post- Thu Sep 05, 2024 5:28 pm
- Replies 14
- Views 327
Re: Could not load template
Adding $e->getMessage() to the trigger error string (or removing the try catch) might give you a better idea what the actual error is.
Jump to post- Thu Sep 05, 2024 5:13 am
- Replies 14
- Views 327
Re: Could not load template
Check you have .twig files for the two templates in the errors. Check using the default theme.
Jump to post- Thu Sep 05, 2024 12:22 am
- Replies 14
- Views 327
Re: (extension creation) Where can i place image assets that will be used in frontoffice and backoffice?
You can see the list of allowed directories at the link below.
https://github.com/opencart/opencart/bl ... #L125-L141
So one of admin/view/image/, catalog/view/theme/ or image/catalog/.
- General Support
- (extension creation) Where can i place image assets that will be used in frontoffice and backoffice?
- Wed Sep 04, 2024 5:55 pm
- Replies 2
- Views 123
Re: Currency Rate Engine: European Central Bank Currency Converter Bug on OpenCart 3.0.4.0
You are probably best to use the get support option on the PayPal extension page for official support.
https://www.opencart.com/index.php?rout ... n_id=38358
- Wed Sep 04, 2024 5:45 pm
- Replies 10
- Views 738
Re: Mail working only partially
Use an online email deliverability checker such as mail-tester.com sending the email from OpenCart.
Jump to post- Wed Sep 04, 2024 6:33 am
- Replies 4
- Views 342
Re: How to update a PayPal Checkout Integration module in opencart 2.3.0.2 ?
This may help. https://github.com/Dreamvention/paypal#installation
Jump to post- Mon Sep 02, 2024 11:10 pm
- Replies 1
- Views 87
Re: Currency Rate Engine: European Central Bank Currency Converter Bug on OpenCart 3.0.4.0
TWD in not in the list returned by https://www.ecb.europa.eu/stats/eurofxr ... -daily.xml so you can't use that currency updater.
Correct fix for the error when default currency not in ECB list.
https://github.com/opencart/opencart/pull/14112
- Mon Sep 02, 2024 9:58 pm
- Replies 10
- Views 738
Re: Can't edit products error
Do you have any extensions that modify the admin product page?
Jump to post- Mon Sep 02, 2024 7:46 pm
- Replies 2
- Views 231
Re: Currency Rate Engine: European Central Bank Currency Converter Bug on OpenCart 3.0.4.0
Check you currency codes are correct.
To prevent the error when no default currency. In admin/model/extension/currency/ecb.php change.
Code: Select all
if ($currencies) {
Code: Select all
if (isset($currencies[$default])) {
- Mon Sep 02, 2024 5:24 pm
- Replies 10
- Views 738
Re: Search Category Description Field?
You would need to make changes to the search code. You might find it easier to modify the product pages to remove the price and add to cart buttons. You may find extension that to do that.
Jump to post- Mon Sep 02, 2024 5:05 pm
- Replies 1
- Views 854
Re: Opencart 4 installation with MSSQL Server
Sounds like you need to check your oc_session table is correct and the queries in system/library/session/db.php.
Jump to post- Mon Sep 02, 2024 5:00 pm
- Replies 5
- Views 564
Re: Sandbox payments not completing; Opencart 3.0.4.0 and PayPal Checkout Integration V3.0.2
Sale should work. Looks like the webhook is working. From you log the webhook is returning "event_type":"PAYMENT.CAPTURE.PENDING" this is why the status for your order is set to pending. Could be something wrong with you PayPal Sandbox account not completing payments.
Jump to post- Extensions Support
- [SOLVED] Sandbox payments not completing; Opencart 3.0.4.0 and PayPal Checkout Integration V3.0.2
- Tue Aug 27, 2024 4:25 pm
- Replies 9
- Views 1111
Re: Images not loading using SEO URLs, but not all.
Your base href tag in the HTML header looks wrong. You need to work out what is changing it from the OpenCart default.
Jump to post- Sat Aug 24, 2024 12:01 am
- Replies 8
- Views 683