|
From: Reini U. <ru...@x-...> - 2007-01-21 18:33:18
|
Peter Chant schrieb:
> I've selected the wikilens theme and get the following error:
>
> Fatal Error:
>
> lib/WikiDB/adodb/adodb-errorhandler.inc.php (In template 'navbar' < 'top'
> < 'body' < 'html'):76: Error: mysql error: [1146: Table 'test.page' doesn't
> exist] in EXECUTE("SELECT latestversion FROM page, recent WHERE
> page.id=recent.id AND pagename='UserPreferences'")
>
> *
>
> Unfortuately this corrupts the preferences screen. Any ideas how to change
> the theme to another one?
Themes are selected in config.ini
The problem I got with adodb and certain cfg can be fixed with:
lib/WikiDB/backend/ADODB.php:296
if (0 and $dbh->hasGenID) {
This will not create a temp. sequence table. E.g. if the db user does
not have the proper permissions.
|