XF 2.1 data and internal_data permission problem

maszd

Well-known member
Hi,

i was moved my forum to new vps with centos 7 running, everything run as expected except there in acp i see this notification:

2020-08-31_194118.webp

i was change that two folder to 0777 with this command:
Code:
chmod 0777 internal_data
chmod 0777 data

but that notification still appear, is there something missing?

Thanks.
Regards.
 
If you are still getting permission errors then they haven't been applied correctly - ensure you do it recursively for the whole directory.
Hi ozzy,
thanks for reply, i was run this command:
chown -R nginx:nginx /usr/share/nginx/html
but still that notification appear, before with centos 6 its working fine.
 
chown changes file/directory ownership

That's not the error. The error is directories/files not writable.

you want

Code:
chmod -R -type d 0777 data;
chmod -R  -type d 0777 internal_data;
 
Last edited:
Top Bottom