Re: SyntaxError Fatal error during upgrading 3.0.2 to 4.1.0
You will need to ask your host how to change max_execution_time. You may be better upgrading to 3.0.4.0 which is compatible with PHP 8 and more stable.
Jump to post- Tue Feb 11, 2025 6:06 pm
- Replies 1
- Views 138
Re: Page indexing - Not found (404)
Inspect URL for the pages in Search Console and see what he Referring page is. May give you a clue as to where the Google finding the links from.
Jump to post- Tue Feb 11, 2025 6:02 pm
- Replies 3
- Views 179
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 165
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 288
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 288
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 288
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 1355
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 1355
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 204
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 850
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 850
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 850
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 1880
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 1880
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 569
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 569
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 593
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 991
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 2882