14
There are couple steps for it. Check as what user apache is running by issuing a command:
ps aux|grep apache
First column on left will show as what user apache is running. Most of the time it will be apache.
Go to your XOOPS install directory and issue:
ls -al
It will show something like:
drwxrwxrwx 13 username1 username2 4096 Nov 1 14:23 directoryname
(P.S. username2 is the owner of those files)
If username1 is not the same as in previous command then go to your XOOPS install directory and issue this command:
chown -R usernameinstep1 *
if you want to change the owner of the files then you do
chown -R usernamestep1:usernamestep1 *
Gediminas