Seite 1 von 1

Datenbankfehler

Verfasst: 28.01.2005 13:14
von PerryGE
in meinem phpMyAdmin steht ganz unten
Fehler
Die zusätzlichen Funktionen für verknüpfte Tabellen wurden automatisch deaktiviert. Klicken Sie hier um herauszufinden warum.
wenn ich dann auf den link klicke
PMA Database ... fehlerhaft[ Dokumentation ]
Allgemeine Verknüpfungsfunktionen Deaktiviert
wenn ich dann auf Dokumentation klicke werde ich auf /Documentation.html#pmadb verwiesen

Code: Alles auswählen

If you are the only user of this phpMyAdmin installation, you can use your current database to store those special tables; in this case, just put your current database name in $cfg['Servers'][$i]['pmadb']. 

If you are setting up a multi-user phpMyAdmin installation, you will need to create a new database and setup special privileges, so, as superuser: 


create a new database for phpMyAdmin:
  CREATE DATABASE phpmyadmin;
Note that "controluser" must have SELECT, INSERT, UPDATE and DELETE privileges on this database. Here is a query to set up those privileges (using "phpmyadmin" as the database name, and "pma" as the controluser):
  GRANT SELECT,INSERT,UPDATE,DELETE ON phpmyadmin.* to 'pma'@'localhost'; 
do not give any other user rights on this database. 
enter the database name in $cfg['Servers'][$i]['pmadb'] 



$cfg['Servers'][$i]['bookmarktable'] string 
Since release 2.2.0 phpMyAdmin allows to bookmark queries. This can be useful for queries you often run.

To allow the usage of this functionality you have to: 
set up "pmadb" as described above 
within this database create a table following this scheme: 
     CREATE TABLE `pma_bookmark` (
       id int(11) DEFAULT '0' NOT NULL auto_increment,
       dbase varchar(255) NOT NULL,
       user varchar(255) NOT NULL,
       label varchar(255) NOT NULL,
       query text NOT NULL,
       PRIMARY KEY (id)
     ) TYPE=MyISAM COMMENT='Bookmarks';

enter the table name in $cfg['Servers'][$i]['bookmarktable'] 

Wo kann der Fehler liegen?

Verfasst: 28.01.2005 13:57
von marino
wenn du einen fremden server nutzt ( von einem webspaceanbieter) schick ihm diese komplette fehlermeldung per mail ..

Verfasst: 29.01.2005 14:29
von PerryGE
es kommt ja keine fehlermeldung.. das ist ja nur ein link zu der dokumentation

/Documentation.html#pmadb

Verfasst: 29.01.2005 17:24
von marino
ahso .. hmm das ist ja auch kein "echter" fehler wie ich inzwischen erfahren hb sondern nur eine deaktivierung einiger features... dein board sollte aber trotzdem normal funktionieren

Verfasst: 30.01.2005 10:46
von purligar
Hi,

ich habe gestern von phpBB 2.0.6 auf 2.0.11 aktualisiert.

Bei mir kommt in phpMyAdmin genau die gleiche Fehlermeldung und auch der Link zur Dokumentation.

Mein Provider ist all-inkl.com.

Zusätzlich ist die Tabelle "phpBB_users" als "in Benutzung" markiert. Wenn ich sie repariere, funktioniert das Forum. Aber nach ein paar Minuten tritt die Fehlersituation wieder auf :cry:

Hat jemand ne Idee?

purligar

Verfasst: 30.01.2005 13:05
von PerryGE
ich bin auch bei all-inkl :P

Verfasst: 30.01.2005 16:18
von purligar
Interessant, könnte also an all-inkl.com liegen.

Jedenfalls läufts bei mir problemlos. Was das heute morgen war mit der users-Tabelle: keine Ahnung.

Der Hinweis ganz unten wegen den verknüpften Tabellen scheint nicht weiter zu stören...

Wir müssen das einfach mal beobachten.

purligar

Verfasst: 30.01.2005 20:56
von Christian_W