On Thu, 2004-03-25 at 08:43, "M=C3=BCller, Oliver " wrote:
> Hi all,
>=20
> I'm new to this list.
> Hope that someone could help a user.
>=20
> I've got a SuSE 8.1 System with apache, php and mysql running.
> phpMyAdmin is also well configured.
>=20
> After moving the "/var/www/html"-stuff to "/usr/local/httpd/htdocs"
> and editing "bobs/inc/config.php" to change the directory setting
> systemcheck.php brings up one problem:
>=20
> Warning: no such handler: db3 in=20
> /usr/local/httpd/htdocs/bobs/systemcheck.php on line 297
BOBS doesn't use mysql or postgresql, but a much simpler database called
db3 ( or db4 on newer systems )
You need to find out two things:
First, do you have db3 or db4 installed on your system. Eg. run this
"rpm -q db{3,4}" and it will tell you which ones are installed.
Mine looks like:
package db3 is not installed
db4-4.1.25-8
Which show me that I need to change db3 to db4. This can be done by
opening these files and replacing all occurrences of "db3" with "db4":
systemcheck.php
inc/class_db.php
inc/templates/backup_create_databases.php
That should take care of any db3 warnings ( if you have db4 instead ).
Cheers
Rene
|