C7 And Php Mkdir

Home » CentOS » C7 And Php Mkdir
CentOS 1 Comment

Hi list, I’ve a problem using PHP mkdir() with apache on C7. I’m trying to create a directory under a specified directory in the tree of my vhost, and mkdir create this directory but when I try to create a file in this dir I get error on permission. For directory creation I use permission 0777 for max perms to ensure that it works but I get invalid perm:

dr—-x–t. 2 apache apache …

I’ve tried also using:

$old = umask(0);
mkdir…. umask($old);

with result:

dr——wT. 2 apache apache …

Tried also chmod with umask(), same result.

Selinux is disabled.

Can someone point me in the right direction?.

Thanks in advance.

One thought on - C7 And Php Mkdir