Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to set file and folder permissions in Magento

2025-04-08 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/01 Report--

In this issue, Xiaobian will bring you about how to set file and folder permissions in Magento. The article is rich in content and analyzed and described from a professional perspective. After reading this article, I hope you can gain something.

SSH mode (for standalone servers or VPS)

The code is as follows:

find . -type f -exec chmod 644 {} ;

find . -type d -exec chmod 755 {} ;

chmod o+w var var/.htaccess app/etc

chmod 550 mage

chmod -R o+w media

If that is not working, try setting all directories to 777 by doing this:

find . -type f -exec chmod 644 {} ;

find . -type d -exec chmod 777 {} ;

chmod o+w var/.htaccess

chmod 550 mage

Magento in action

For example, the secondary menu is not available, Magento Connect is not available, pictures are not displayed, etc. Most of the reasons are caused by file permissions not being set or improperly set. Here are the basic file and folder settings.

Permission

The code is as follows:

magento/app/etc

magento/media

magento/app

magento/skin

magento/var

magento/var/.htaccess

magento/js

magento/downloader

Permission

magento/index.php

magento/downloader/index.php

php modify permissions

The code is as follows:

The above is how to set file and folder permissions in Magento shared by everyone. If there is a similar doubt, please refer to the above analysis for understanding. If you want to know more about it, please pay attention to the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report