I have a codeigniter project that runs on xampp. When I run a php command mkdir I get the error "Permission denied". It turns out that the php user and the computer user doesn't have the same name. So I change in the httpd.conf file the lines
User daemon
Group daemon
to
User username
Group daemon
To match my username. Now I get this problem fix but that creates a pemission error on another part of the code. Which is strange because I run the same project on another machine with the same settings and it works. Can you point me on the right direction?