I downloaded and installed PHP a couple of weeks ago. I'm using an existing Apache server that runs under a named user. When I start my Apache server, one or more of the following files are created:
/www/myApache/logs/fcgi-gddigon.sock
I get authority failures running PHP because my named user isn't authorized to those files. If I specifically grant authority, PHP works but the problem reappears when Apache is restarted.
Here's the dir authority (/www/myApache/logs):
*PUBLIC *X
QSECOFR *RWX X X X X
QTMHHTP1 *RWX
QTMHHTTP *RWX
MY_USER *RWX
Here's the file authority:
*PUBLIC *EXCLUDE
QTMHHTTP *RWX X X X X
Is there a built in way of handling this, or do I need to DIY it?
TIA