Wednesday, April 24, 2024
 Popular · Latest · Hot · Upcoming
5
rated 0 times [  5] [ 0]  / answers: 1 / hits: 52273  / 2 Years ago, tue, august 30, 2022, 2:02:18

I'm trying to install Tapatalk plugin on my phpbb3 forum



enter image description here



Write method for automod is FTP and connection is successful. I think the FTP client might not have write permission to /var/www. How can I fix that? I'm using Ubuntu Server 12.04 with vsftpd.




drwxr-xr-x 3 root root 4096 Aug 19 02:07 www




Thanks!


More From » server

 Answers
1

You could change the ownership of /var/www to be the same owner that your FTP client uses.



For example if your FTP client runs as 'nobody' then use this command:



sudo chown nobody:nobody /var/www


Be aware that this will allow your FTP client to do anything to any of the files in /var/www and subdirectories. This might be a security risk. After the install is completed, you could always switch the ownership back to the root user again with:



sudo chown root:root /var/www

[#29880] Tuesday, August 30, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
ndeecru

Total Points: 109
Total Questions: 128
Total Answers: 117

Location: Czech Republic
Member since Thu, Aug 11, 2022
2 Years ago
;