I have been trying to setup the magento site but have been playing around with permissions which has resulted in the following error in the suexec.log
[2014-04-25 08:20:56]: uid: (5015/web12) gid: (5011/client7) cmd: .php-fcgi-starter
[2014-04-25 08:20:56]: target uid/gid (5015/5011) mismatch with directory (33/33) or program (33/33
Any ideas how i can get it so that the uid and gid match?
I have done id www-data and 5011/client7 is against that user.
Any help would be great.
find / -name ".php-fcgi-starter"this will give you the right path. It seems that you installed mod_fcgid, I don't know if some of yours applications relies on this module. – Lety Oct 04 '14 at 20:08find / -name ".php-fcgi-started" -exec ls -l {} \;so it shows file properties. – Lety Oct 04 '14 at 20:21find /var -name ".php-fcgi-started" -exec ls -l {} \;– Lety Oct 04 '14 at 20:55ls -l /var/www/php-fcgi-scripts/web12command output? – Lety Oct 04 '14 at 21:08id www-data– Lety Oct 04 '14 at 21:23chown web12:client7 /var/www/php-fcgi-scripts/web12andchown web12:client7 /var/www/php-fcgi-scripts/web12/.php-fcgi-started– Lety Oct 04 '14 at 21:31