phpgroupware-users
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[phpGroupWare-users] Re: no images shown. Path problem?


From: Dave Hall
Subject: [phpGroupWare-users] Re: no images shown. Path problem?
Date: Fri, 9 Mar 2007 03:35:13 -0700 (MST)


Hi Peter,

I found your problem :)

Point your browser at 
http://domain.com/phpgroupware/setup/templates/default/images/completed.png

You will notice that there is a problem with the permissions on your images.

If you have root access on the box try the following

cd /path/to/phpgroupware
chown -R <myuser>:<mygroup> .
chmod -R 644 .
chmod 755 `find -type d`

Change <myuser> and <mygroup> to the user and group that will be maintaining 
the phpgw install (should not be root).

If you don't have root access, try the following (it is slower)

cd /path/to/phpgroupware
for file in `find -type f` do; chmod 644 $file; done
chmod 755 `find -type d`

If you are on shared hosting you have an activity for the afternoon ;)

Cheers

DaveSent from the phpGroupWare forums @ http://forums.phpGroupWare.org




reply via email to

[Prev in Thread] Current Thread [Next in Thread]