Skip to content
Sri Lanka · Colombo · GlobalMon–Fri, 09:00–18:00 IST
Web Design 1 min read

Recursively applying proper directory permissions for your live Joomla website

Secure your Joomla website with correct directory permissions. Step-by-step guide to recursive permission settings for Linux servers.

A
Written by
Admin
16 views
Share:
Applying proper directory permissions for your live Joomla websites is one important step in securing it from malicious users online. Use below commands to recursively set permissions to files and directories.  Joomla recommends 707 special permissions for the /images and /images/stories directories.
find . -type f -exec chmod 644 {} \;
find . -type d -exec chmod 755 {} \;
chmod 707 images
chmod 707 images/stories
chown apache:apache cache
Share:

Related Articles

Comments (0)

Log in or sign up to leave a comment.

No comments yet. Be the first to share your thoughts!