This normally means that the webserver does not have permission to the
file. 2 ways of doing this.
1) Find out what the web server user is and set it as the file group or
2) chmod the file to world writeable. (may be the easy way but the least
secure).
So basically:
In a shell (that is if you have one, if you don't see step 2) all one line:
chown yourusername:we bserver /home/qwertyuiop.com/public_html/asdf/werte.php
step 2 is:
chmod 0777 /home/qwertyuiop.com/public_html/asdf/werte.php
(you can also do this in an FTP client).
Comment