Hey everyone,
I was having a problem with my server and RoundCube WebMail, but I've solved it, below is the problem and how i solved it.
My problem.
RoundCube wasn't loading including any files in the templates that use "roundcube:include file"..." ".
I knew this wasn't a permissions problem. I also could use RoundCube, I just didn't have the header, or taskbar (Thus couldn't access the Address Book, Settings, etc...), or any of the status messages (Loading, etc).
First of, my server specs:
OS X 10.3.9 Server
Default Apache install
Mark Liyanage's php4 http://www.entropy.ch/software/macosx/php/
The Fix:
In /program/include/main.inc, in the parse_rcube_xml function, in the "include" case.
I changed: $path = realpath($CONFIG['skin_path'].$attrib['file']);
to: $path = $CONFIG['skin_path'].$attrib['file'];
That fixed it. Everything seems fine now.
I'm not sure if this is any help to anyone else, but I thought I'd put it out there. Also note, I'm using the same php package on 10.4.2 Client and I wasn't having this issue.
Roydon Gyles-Bedford