09-18-2022, 07:52 PM
Thank you!
Changing permissions worked. The thumb-gen.php file permissions were 644, as were lots of other files. I tried to change the permission through Filezila, but there were 'permission denied' erorrors so I went in through SSH and just changed everything in /var/www to 755 by going to /var/ and entering:
I imagine that it might be better practice to use one build to generate the minified CSS and just transfer that to my primary build, but if I just have to change permissions after a Gulp build, that is fine too.
Considering that I am the only user of this pi, is there any risk to changing all of the permissions of /var/www to 755?
Changing permissions worked. The thumb-gen.php file permissions were 644, as were lots of other files. I tried to change the permission through Filezila, but there were 'permission denied' erorrors so I went in through SSH and just changed everything in /var/www to 755 by going to /var/ and entering:
Code:
sudo chown -R pi:pi www
sudo chmod -R 755 www
I imagine that it might be better practice to use one build to generate the minified CSS and just transfer that to my primary build, but if I just have to change permissions after a Gulp build, that is fine too.
Considering that I am the only user of this pi, is there any risk to changing all of the permissions of /var/www to 755?