This shows you the differences between two versions of the page.
Both sides previous revision Previous revision | |||
linux:joomla_file_permissions [2017/11/28 09:25] admin |
linux:joomla_file_permissions [2017/11/28 09:28] (current) admin |
||
---|---|---|---|
Line 15: | Line 15: | ||
find . -type d -exec chmod 755 {} \; | find . -type d -exec chmod 755 {} \; | ||
chown -R www-data:www-data | chown -R www-data:www-data | ||
+ | </code> | ||
+ | |||
+ | Meybe can be changed permissions for cache and tmp in joomla directory: | ||
+ | |||
+ | <code bash> | ||
+ | chmod -R o+w tmp | ||
+ | chmod -R o+w cache | ||
</code> | </code> | ||