Re: Error when I chose Sort By Price in OpenCart 4.1.0
See. https://github.com/opencart/opencart/issues/14437
Jump to post- Sat Feb 08, 2025 12:50 am
- Replies 2
- Views 138
Re: Mail error Opencart 4.1.0.0
Check text_order_id has not been changed or added to another language file.
Jump to post- Sat Feb 08, 2025 12:44 am
- Replies 6
- Views 253
Re: Mail error Opencart 4.1.0.0
It should not be mail_text_subject or mail_text_greeting, but just text_subject and text_greeting in your language files. The mail_ is added by the loader.
Jump to post- Fri Feb 07, 2025 5:51 pm
- Replies 6
- Views 253
Re: Mail error Opencart 4.1.0.0
Check catalog/language/en-gb/mail/order_add.php, order_edit, etc. has the text_subject and text_greeting entries for all your languages.
Jump to post- Fri Feb 07, 2025 1:21 am
- Replies 6
- Views 253
Re: Problem extension Smartbill
Error! SyntaxError: Unexpected token '<', "Unknown"... is not valid JSON. Cant put code here i uploaded the file where i receive this error: That error is likely caused because you have error display on. Try switching off error display as a workaround, until it's fixed. You may have to sw...
Jump to post- Extensions Support
- [SOLVED] Problem extension Smartbill > Constant FILTER_SANITIZE_STRING is deprecated
- Fri Feb 07, 2025 12:52 am
- Replies 17
- Views 1245
Re: Problem extension Smartbill
Try switching off error display as a workaround, until it's fixed. You may have to switch error display of in all 3 places.
Jump to post- Extensions Support
- [SOLVED] Problem extension Smartbill > Constant FILTER_SANITIZE_STRING is deprecated
- Thu Feb 06, 2025 8:29 am
- Replies 17
- Views 1245
Re: Disable Shipping Countries
Check if catalog/model/localisation/country.php has been modified at that location and also in storage/modification.
Jump to post- Thu Feb 06, 2025 8:23 am
- Replies 6
- Views 191
Re: Digital Products - Customer downloads mysteriously shuffling
You could modify the code in storage/modification to test if the query is the issue.
Jump to post- Wed Feb 05, 2025 5:33 pm
- Replies 9
- Views 802
Re: Digital Products - Customer downloads mysteriously shuffling
In catalog/model/account/download.php try changing.
Code: Select all
ORDER BY o.date_added DESC
Code: Select all
ORDER BY o.date_added DESC, op.order_product_id DESC
- Mon Feb 03, 2025 7:32 pm
- Replies 9
- Views 802
Re: Digital Products - Customer downloads mysteriously shuffling
Check catalog/model/account/download.php and if any of your extensions modify. It looks like the downloads are sorted by order.date_added. Are the downloads all from the same order?
Jump to post- Sat Feb 01, 2025 8:44 pm
- Replies 9
- Views 802
Re: Restored web site no longer updating new products on home page.
But have you cleaned the cache files from the storage/cache directory?
Jump to post- Sat Feb 01, 2025 8:28 pm
- Replies 13
- Views 1859
Re: Restored web site no longer updating new products on home page.
What version did you restore to? Have you cleaned the cache files from the storage/cache directory?
Jump to post- Sat Feb 01, 2025 1:38 am
- Replies 13
- Views 1859
Re: PCI DSS 4.0 - Admin Password Management
The compliance is for organisations that collect and store credit card information. Hopefully it will force online stores to only use systems that spend the money on security to request/collect/store such data. Yes, PCI DSS v4.0 should force online stores to think more about security. It seems like...
Jump to post- Fri Jan 31, 2025 7:42 pm
- Replies 5
- Views 565
Re: PCI DSS 4.0 - Admin Password Management
I couldn't see any when I looked. I assume the most store owners are using written polices and ensuring users are adhering to them. I would also be interested to know what others are planing on using to comply with parts 6.4.3 and 11.6.1 that require the payment/checkout page to be monitored. These ...
Jump to post- Fri Jan 31, 2025 1:12 am
- Replies 5
- Views 565
Re: Unable to generate API token
For OpenCart 3 you wnat /index.php?route=api/login as the URL and to POST in the default encoding not JSON.
Jump to post- Fri Jan 24, 2025 1:26 am
- Replies 1
- Views 591
Re: Admin page login issue after upgrade
Are your config.php and admin/config.php correct it regards to the URL and all being https. Do you have any redirects in your htaccess or hosting?
Jump to post- Wed Jan 22, 2025 9:23 pm
- Replies 20
- Views 988
Re: Notice: Undefined index error Admin Panel
Check both your PHP and OpenCart error logs, in case there are other errors.
Check the database user_group and user tables match user_group_ids.
- Wed Jan 22, 2025 8:01 pm
- Replies 4
- Views 333
Re: php warning unlink
I changed the following a month a go and so far I haven't got any error since. in /system/library/cache/file.php on line 17, change to: unlink(realpath($file)); It didn't work, I still get those errors. You can suppress the unlink errors with. @unlink($file); If you only want to suppress the errors...
Jump to post- Mon Jan 20, 2025 8:19 pm
- Replies 14
- Views 2880
Re: Forbidden message on certain admin sections after migration
If you are still getting HTTP 403 Forbidden errors you need to contact your host. OpenCart doesn't generate them.
If you are getting some other Forbidden message, you would be best to post more details such as the exact URL and what form the message takes.
- Sat Jan 18, 2025 12:10 am
- Replies 9
- Views 4595
Re: [Solved] PHP Warning: mysqli::query(): (42000/1064): You have an error in your SQL syntax; check the manual...
The tracking_id in admin/model/extension/payment/pp_express.php is not used in an SQL query, so it is not that. Also disabling a payment extension won't necessarily stop it being used in an attack. Remember to also search the modifications directory and and vQmod cache. As suggested by nonnedelectar...
Jump to post- General Support
- PHP Warning: mysqli::query(): (42000/1064): You have an error in your SQL syntax; check the manual...
- Fri Jan 17, 2025 12:39 am
- Replies 18
- Views 1444