On Thu, 2006-03-02 at 18:20 +0100, quasi wrote:
I've tried everything you suggested.
Not quite :-)
Bringing the loglevel to 15 outputs in browser: DB Error in /WebServer/roundcubemail/program/include/rcube_db.inc (97): DB Error: connect failed
Fatal error: Call to undefined function: query() in /WebServer/roundcubemail/program/include/rcube_db.inc on line 213
Line 213 says: $result = $this->db_handle->query($query, $params);
What (97) is error of I don't know.
I'm not sure about the php-mysql and the php-pear parts. Shouldnt they be installed by default with my php version?
You're missing php database components. It's not safe to just assume they're installed. I don't know what type of system you're on so I may not be able to help you determine the presence or absence of php components, but I can tell you that on Fedora/RHEL PHP is "alacarte", you install only what you need and these components are not installed when you install php.
I'm not 100% certain you need php-pear, for me this was a little bit of a trial and error, but I was getting exactly that error until I started adding php components.
If you're on a Fedora system you can do this:
% rpm -qa | grep php
this will tell which php components are installed, if you're missing them you can do something like this:
% yum install php-mysql