Show Posts


Messages - michael1129

Pages: [1]
1
To keep your directories and files secure in AbanteCart, it's recommended to set permissions in the extensions directory as follows:

Recommended Permissions:
Files: 644 (Owner: Read/Write; Group/Others: Read-only)
Directories: 755 (Owner: Read/Write/Execute; Group/Others: Read/Execute)
Important Notes:
If the web application user is the same as the system user running the application (common in many shared hosting setups), permissions do not need to be 777. Properly configured servers allow the application to function with 644 for files and 755 for directories.
Avoid 777 permissions entirely as they expose your files to potential malicious access.
To Update Permissions:
Use the following commands via SSH:

bash
Copy code

find /path/to/abantecart/extensions -type d -exec chmod 755 {} \;
find /path/to/abantecart/extensions -type f -exec chmod 644 {} \;
Replace /path/to/abantecart/extensions with the actual path to your extensions directory.

By following these guidelines, you’ll secure your AbanteCart installation while ensuring proper functionality.

Pages: [1]

Powered by SMFPacks Social Login Mod