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 _______________________________________________ phpGroupWare-users mailing list [email protected] http://lists.gnu.org/mailman/listinfo/phpgroupware-users
