OpenCart, a popular e-commerce platform, empowers thousands of online businesses to engage with their customers effectively. One crucial aspect of this communication is email correspondence. While basic or simple emails might work seamlessly, many OpenCart users encounter challenges with delivering HTML emails successfully. In this article, we will explore the common email deliverability issues faced […]
Blogs
HuntBee’s Premium Services: The Complete Solution for Your OpenCart Store
Welcome to our Premium Services category, where excellence meets expertise. We offer a range of top-tier solutions tailored to elevate your OpenCart experience and maximize the potential of your online store. With a focus on innovation, security, and performance, our premium services are designed to cater to the unique needs of your e-commerce business. Services […]
- Blogs
- ...
Make a Wish – Christmas Special 2022
Make a wish for this Christmas 2022 and let us know which huntbee OpenCart extension do you want for your website. Responses are accepted only till 23rd December 2022. Winners will be announced on 25th December 2022. Winners will receive a special coupon code to buy the extensions. Coupon codes will be active till 31st December […]
- Blogs
- ...
OpenCart Office 365 SMTP Settings
Mail Engine SMTP SMTP Hostname tls://smtp.office365.com SMTP Username Microsoft 365 email address (example admin@opencart-pro.com) SMTP Password Microsoft 365 user password SMTP Port 587 SMTP Timeout 5 Disable the Azure Security Defaults by toggling the “Enable Security Defaults” to “No” Sign in to the Azure portal as a security administrator, Conditional Access administrator, or global administrator. Browse to Azure […]
- Blogs
- ...
Priority Support
Sometimes responses to the ticket may get delayed depending on the support tickets queue. However, I do offer priority support to all customers where you can get a resolution within 24 hours from the time of payment. Payment Priority support is offered for a non-refundable amount of $50 (USD). The validity ends in 24 hours […]
Scssc not found error in OpenCart
If you are getting error like the one mentioned below when you attempted to clear cache, it is mostly because the storage folder location is not setup properly. Fatal error: Uncaught Error: Class ‘Scssc’ not found in /home/www/estore.mydomain.com/admin/controller/startup/sass.php:9 Stack trace: #0 /home/www/estore.mydomain.com/system/engine/action.php(79): ControllerStartupSass->index() Solution Edit the config.php and admin/config.php Update the storage directory location to the […]
- Blogs
- ...
OCMOD modification is not working in OpenCart 3.0.3.6
There is a bug in OpenCart 3.0.3.6 where the OCMOD modification is partially working or not working at all. To fix this issue, you need to access the file system/modification.xml Edit the file and copy-paste code as mentioned below or you can get the code from https://github.com/opencart/opencart/blob/3.0.x.x_Maintenance/upload/system/modification.xml After editing and saving the updated changes, click […]
SBOX_FATAL_MEMORY_EXCEEDED error on OpenCart
If you are facing this issue when you try to access Extensions > Modification or Extensions > Modification > Refresh Modification in OpenCart, it is because the log file of modification is too big for the chrome or any browser to load. To fix this, clear the log by clicking on the CLEAR button in […]
How to find Fatal Error / Error 500 / Server error in opencart
To find what is causing the error 500/ internal server error / this page isn’t working, try the following The issue could be related to htaccess file or some broken code in the program Try adding this code to your index.php file, just after the opening php tag <?php ini_set(‘display_errors’, 1);ini_set(‘display_startup_errors’, 1);error_reporting(E_ALL); Now you should […]
Passing decoded Cyrillic Characters in json_encode
To decode the encoded cyrillic characters like \u041D in an array and to pass it to json_encode, follow the below technique json_encode($array, JSON_UNESCAPED_UNICODE); or $json = defined(‘JSON_UNESCAPED_UNICODE’) ? json_encode($array, JSON_UNESCAPED_UNICODE) : json_encode($str); or if PHP 5.4 and below preg_replace_callback(‘/\\\u([01-9a-fA-F]{4})/’, ‘prepareUTF8’, json_encode($array))