Re: Default contact form showing text value in boxes?
The screenshot shows that it is not a standard OpenCart. Some modifications were done it, and without more details or URL nobody will be able to help here. A standard OpenCart 3.0.3.8 does not have this issue, hence it's likely an extension bug, in which case it might also be a good idea to contact...
Jump to post- Tue Jun 14, 2022 11:43 pm
- Replies 8
- Views 957
Re: Default contact form showing text value in boxes?
<input type="text" name="name" value="{{ name }}" id="input-name" class="form-control" /> is not correct code for catalog/controller/information/contact.php This is the correct file path, sorry for the confusion. /catalog/view/theme/default/template...
Jump to post- Tue Jun 14, 2022 10:32 pm
- Replies 8
- Views 957
Default contact form showing text value in boxes?
The default contact form is showing "name" in the text field when it should be blank. In the code for /catalog/view/theme/default/template/information/contact.twig it shows "value = " {{ name }}", which is correct. Any ideas what's causing this? <input type="text" ...
Jump to post- Tue Jun 14, 2022 5:27 am
- Replies 8
- Views 957
Email setup using Google Groups?
We currently have our store's email setup with a Google Group (through Google Suite). The email address acts like an alias/distribution list. Due to this configuration, we have been using the default 'Mail' Mail Engine setting as outlined below. We would have preferred to set it up with SMTP, but si...
Jump to post- Thu May 26, 2022 12:49 am
- Replies 2
- Views 489
Re: Duplicate Region / State values showing on checkout page
Haven't modified Oklahoma before. We have the Category & Product-Based Shipping extension (https://www.getclearthinking.com/catego ... d-shipping). We have setup rules using our Geo Zones, but we didn't modify or add anything to the Geo Zones.
Jump to post- Sat May 07, 2022 3:40 am
- Replies 5
- Views 445
Re: Duplicate Region / State values showing on checkout page
Yes, there was a duplicate in the Zone database table.
Jump to post- Sat May 07, 2022 3:06 am
- Replies 5
- Views 445
Duplicate Region / State values showing on checkout page
We recently noticed that one of the Region / State values is duplicated on the cart/checkout pages: https://i.ibb.co/12nGqcy/Screen-Shot-2022-05-06-at-14-29-25.png When we looked in Localisation » Zones we found two instances of Oklahoma: https://i.ibb.co/qs6fj4h/Screen-Shot-2022-05-06-at-14-34-10.p...
Jump to post- Sat May 07, 2022 2:36 am
- Replies 5
- Views 445
Re: PHP permission issues / storage folder
After lots of research, the issue was related to the File Protect feature in cPanel. See documentation below for more details. I hope this helps someone else! https://support.cpanel.net/hc/en-us/articles/360058726893-The-public-html-folder-permission-keeps-getting-reverted If File Protect is enabled...
Jump to post- Thu Apr 28, 2022 11:18 am
- Replies 24
- Views 7238
Re: PHP permission issues / storage folder
Unless the server cache believes your storage folder is still temporarily on its old location, it shouldn't. At this point, another reason why you should let your host looking at this. Web host is useless. They're not able to provide any new information. Crazy how many threads there are with the ex...
Jump to post- Thu Apr 28, 2022 10:03 am
- Replies 24
- Views 7238
Re: PHP permission issues / storage folder
Do you see anything wrong with the config file? /storage/ path is set correctly. Some people online have suggested using this format, but it did not help. define('DIR_STORAGE', DIR_SYSTEM . '/storage/'); Unless your server path is otherwise than what it says it is on the topic, the storage folder l...
Jump to post- Thu Apr 28, 2022 9:21 am
- Replies 24
- Views 7238
Re: PHP permission issues / storage folder
Code: Select all
[adminuser]# ls -al
drwxr-xr-x 12 adminuser adminuser 4096 Apr 27 17:28 storage
- Thu Apr 28, 2022 9:19 am
- Replies 24
- Views 7238
Re: PHP permission issues / storage folder
Do you see anything wrong with the config file? /storage/ path is set correctly. Some people online have suggested using this format, but it did not help.
Code: Select all
define('DIR_STORAGE', DIR_SYSTEM . '/storage/');
- Thu Apr 28, 2022 9:13 am
- Replies 24
- Views 7238
Re: PHP permission issues / storage folder
These are the only errors right now -- they show on the top of the site and on admin page. Warning: fopen(/home/adminuser/storage/logs/openbay.log): failed to open stream: Permission denied in /home/adminuser/storage/modification/system/library/log.php on line 22Warning: fopen(/home/adminuser/storag...
Jump to post- Thu Apr 28, 2022 9:10 am
- Replies 24
- Views 7238
Re: PHP permission issues / storage folder
Not sure how they'd be able to help given that we've already verified the folder/file permissions. Are there any other suggestions?
Jump to post- Thu Apr 28, 2022 9:01 am
- Replies 24
- Views 7238
Re: PHP permission issues / storage folder
[storage]# ls -al /home/adminuser/storage drwxr-xr-x 95 adminuser adminuser 20480 Apr 27 20:00 cache drwxr-xr-x 2 adminuser adminuser 4096 Jun 27 2021 download drwxr-xr-x 2 adminuser adminuser 4096 Apr 27 10:42 logs drwxr-xr-x 5 adminuser adminuser 4096 Apr 27 17:32 modification drwxr-xr-x 2 adminu...
Jump to post- Thu Apr 28, 2022 8:33 am
- Replies 24
- Views 7238
Re: PHP permission issues / storage folder
The directories should be set to 'owner:admin, group:admin', right? Jump to postTo enforce permissions by using chown.
- Thu Apr 28, 2022 8:29 am
- Replies 24
- Views 7238
Re: PHP permission issues / storage folder
Without knowing what exactly happened during the move process of your folders and files from FTP, if you don't have access to SSH to manually set permissions to your folders and files, your best lead would be to your host on this one to complete the process. I have SSH access, but if the folder per...
Jump to post- Thu Apr 28, 2022 8:25 am
- Replies 24
- Views 7238
Re: PHP permission issues / storage folder
0644Inside your logs folder, what is your CHMOD setting on your log file?

- Thu Apr 28, 2022 8:19 am
- Replies 24
- Views 7238
Re: PHP permission issues / storage folder
Ensure your CHMOD permission settings are recursively set from your storage folder and sub-folders to: 0755 and that your files remains on CHMOD 0644 recursively from FTP as well. Take note that these permission changes must be done without error messages during the process and that includes the pr...
Jump to post- Thu Apr 28, 2022 8:15 am
- Replies 24
- Views 7238
[SOLVED] PHP permission issues / storage folder
SOLUTION : https://forum.opencart.com/viewtopic.php?p=842235#p842235 Recently moved the storage folder outside public_html and updated config.php files, htaccess, refreshed cache from admin, etc, but still seeing 500 errors / blank pages. For example, the admin page loads and orders are visible, bu...
Jump to post- Thu Apr 28, 2022 7:50 am
- Replies 24
- Views 7238