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 2170
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 2628
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 152
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 271
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 271
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 271
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 271
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 104
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 694
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 277
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 72
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 694
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 199
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 694
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 754
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 545
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 1052
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 668
Re: Images not loading using SEO URLs, but not all.
HTTP_HOST can be set to anything in the request from a client and should not be trusted in that way. Use your actual URL.
Jump to post- Fri Aug 23, 2024 9:49 pm
- Replies 8
- Views 668
Re: Page not found
i have checked all name, directory. calssname. is there some cache , which should be refresh? Why not tell us what you are naming the files and where you are putting them. I just tested with a similar named controller and it worked as expected. /admin/controller/sendtotest/sendtotest.php <?php name...
Jump to post- Fri Aug 23, 2024 6:26 pm
- Replies 9
- Views 453