Author Topic: Permissions  (Read 24353 times)

0 Members and 1 Guest are viewing this topic.

Offline
*
Permissions
« on: April 03, 2016, 12:47:09 AM »
Good evening, I'm trying to change the permissions of files (as root), but it is not working. I entered File Management -----> Advanced File Manager

Offline
*****
Re: Permissions
« Reply #1 on: April 03, 2016, 04:01:04 AM »
Use sftp manager .. Winscp

Offline
*
Re: Permissions
« Reply #2 on: April 03, 2016, 12:50:26 PM »
Good morning Sandeep, thanks for the excellent suggestion, was having trouble setting up FileZilla and CuteFTP 8.
But still have a problem, I can not change the permissions of directories or files.

Offline
*****
Re: Permissions
« Reply #3 on: April 03, 2016, 12:56:12 PM »
Unknown problem ... linux won't run if permissions are not working

do you have the root access ?

what files and folders you're trying to change permissions ?

Offline
*
Re: Permissions
« Reply #4 on: April 03, 2016, 01:39:18 PM »
the you have the root access? Yes, I have access!

what files and folders you're trying to change permissions? I'm installing wordpress and is not letting install the plugins!

Offline
*****
Re: Permissions
« Reply #5 on: April 03, 2016, 04:59:41 PM »
go to cwp >> user accounts >> Fix Permissions >> choose site's user from dropdown menu >> click Fix Account Permissions

Offline
*
Re: Permissions
« Reply #6 on: April 04, 2016, 10:25:08 AM »
you should check that you have disabled FileSystemLock option in the users control panel, if FileSystemLock is enabled you want be able to make and changes.

AntiDDoS Protection (web + mail)
http://centos-webpanel.com/website-ddos-protection-proxy

Join our Development Team and get paid !
http://centos-webpanel.com/develope-modules-for-cwp


Services Monitoring & RBL Monitoring
http://centos-webpanel.com/services-monitor


Do you need Fast and FREE Support included for your CWP linux server?
http://centos-webpanel.com/noc-partner-list
Installation Instructions
http://centos-webpanel.com/installation-instructions
Get Fast Support Here
http://centos-webpanel.com/support-services

Offline
*
Re: Permissions
« Reply #7 on: April 04, 2016, 12:37:58 PM »
Good day, please find where FileSystemLock the control panel, my thanks

Offline
*****
Re: Permissions
« Reply #8 on: April 04, 2016, 01:18:07 PM »
login with user's name not root

Offline
*
Re: Permissions
« Reply #9 on: April 04, 2016, 02:28:13 PM »
My sincere thanks

Offline
*
Re: Permissions
« Reply #10 on: September 08, 2017, 07:28:23 PM »
Where do I find Users-->Accounts on Dashboard? Installed a WP site in subfolder to set up before replacing current, but I have no permissions to add posts, menus, plugins etc. File Unlocked, and only see FTP accounts. I do not see where I can edit users.

Offline
*
Re: Permissions
« Reply #11 on: April 05, 2020, 10:11:14 PM »
i did a booboo i was typing in chmod 777 -r /home/ and now im getting this permissions 403 forbidden You don't have permission to access / on this server.
Server unable to read htaccess file, denying access to be safe

what are the defaults?
how can i recover from this

Re: Permissions
« Reply #12 on: April 05, 2020, 10:16:36 PM »
Depends on your setup and which modules you are using..
Code: [Select]
find /home/user_name -type d -exec chmod 755 {} \;
find /home/user_name -type f -name "*" | xargs chmod 644
or
Code: [Select]
find /home/user_name -type d -exec chmod 750 {} \;
find /home/user_name -type f -name "*" | xargs chmod 640

Permissions of 777 should almost never be used!
« Last Edit: April 05, 2020, 10:18:19 PM by ejsolutions »