I am trying to make directories with the mkdir(dirname, mode) command and I get these kinds of errors.
Warning: MkDir failed (Permission denied) in d:\html\users\rwwrcom\html\test02.php on line 5
So how do I get permission to create directories on my own server?
You must grant authority to Apache User.
Apache User is set up in httpd.conf. ex) /usr/local/apache/conf/httpd.conf (search "User" or "Group")
And change permission. Use "chmod" command. (Or "chown" command)
Read "chmod --help" for more information.