This is occurs when hosting website to the live server due to permissions problem..
To resolve the error login into putty via ssh terminal access..
access the following directory path by commands.
/home/user/public_html/project_directory
Which was the directory of the domain name and subfolder from the provided URL. Afterwards, I have executed the following command via console:
find . -type d -print0 | xargs -0 chmod 0755 && find . -type f -print0 | xargs -0 chmod 0644
The command above change the permissions for all of the folders to 755 and for all files to 644. This have resolved the issue in this case.
In case you need any further assistance, please do not hesitate to contact us mail id : manikantak49@gmail.com.
Whats app number : 9553517603
To resolve the error login into putty via ssh terminal access..
access the following directory path by commands.
/home/user/public_html/project_directory
Which was the directory of the domain name and subfolder from the provided URL. Afterwards, I have executed the following command via console:
find . -type d -print0 | xargs -0 chmod 0755 && find . -type f -print0 | xargs -0 chmod 0644
The command above change the permissions for all of the folders to 755 and for all files to 644. This have resolved the issue in this case.
In case you need any further assistance, please do not hesitate to contact us mail id : manikantak49@gmail.com.
Whats app number : 9553517603
0 comments:
Post a Comment