search for: wprdpress

Displaying 3 results from an estimated 3 matches for "wprdpress".

Did you mean: wordpress
2020 Jul 15
2
Apache umask
...all files world writable to update joomla, and that could be better managed by allowing the owning group to access those files. In the case where the client manages the site, I have to log into the server and change the permissions every time they update the site. Or even to update most plugins. Wprdpress sites are better, but even then, I still sometimes need to set and unset explicit file permissions depending on the plugins installed. All this would not be an issue if apache created files with a unask of 002. One simple adjustment to the server to allow us to use normal Linux file permissions t...
2020 Jul 15
0
Apache umask
...he permissions every time they update > the site.? Or even to update most plugins. This is best addressed in the application. For example in wordpress you can set define( 'FS_CHMOD_DIR', ( 0775 & ~ umask() ) ); define( 'FS_CHMOD_FILE', ( 0664 & ~ umask() ) ); > Wprdpress sites are better, but even then, I still sometimes need to set > and unset explicit file permissions depending on the plugins installed. > > All this would not be an issue if apache created files with a unask of > 002.? One simple adjustment to the server to allow us to use normal &...
2020 Jul 15
2
Apache umask
On 7/13/20 4:21 PM, Phoenix, Merka wrote: >>> I need to set the umask for apache to 002. I've tried every idea I've found on the internet, but nothing make a difference. Most suggest that I put "umask 002" in /etc/sysconfig/httpd, but that doesn't seem to make a difference.>> >>> Other's suggest adding something to the httpd.service script for