[Typo3] Unable to save MySQL query result?

Suchfunktion

Erfahrenes Mitglied
Hallo,
bin gerade dabei Typo3 zu installieren (mit diesem Quickstep),
aber ich komme einfach nicht weiter..

Problem:
Schritt 1 ist erfolgreich,
Schritt 2 wähle ich eine Datenbank aus (Sie existiert und ist auch richrig geschrieben und ist leer, wie vorausgesetzt!)

Dann:
Schritt 3 wird ganz oben auf der Seite folgendes angezeigt:
Warning: mysql_list_tables() [function.mysql-list-tables]: Unable to save MySQL query result in /var/www/********/html/typo3/t3lib/class.t3lib_db.php on line 874

Woran kann das liegen? Ich habe alles korrekt eingegeben usw.
Habe schon alles moegliche probiert aber komme nicht weiter :(

In der datei 'class.t3-blabla' steht folgendes:

Code:
	/**
	 * Returns the list of tables from the default database, TYPO3_db (quering the DBMS)
	 * In a DBAL this method should 1) look up all tables from the DBMS  of the _DEFAULT handler and then 2) add all tables *configured* to be managed by other handlers
	 * Usage count/core: 2
	 *
	 * @return	array		Tables in an array (tablename is in both key and value)
	 */
	function admin_get_tables()	{
		$whichTables = array();
		$tables_result = mysql_list_tables(TYPO3_db, $this->link);
		if (!mysql_error())	{
			while ($theTable = mysql_fetch_assoc($tables_result)) {
				$whichTables[current($theTable)] = current($theTable);
			}
		}
		return $whichTables;
	}

Die zeile
Code:
$tables_result = mysql_list_tables(TYPO3_db, $this->link);
ist die besagte zeile 874

Hilfe :(

Kann mir jemand helfen?

Ich habe folgenden server:
Celeron 2.0 Ghz
1024 MB DDR-Ram
40,0 GB Festplatte
100 Mbit Anbindung

Misc:
MySQL
SQL-Datenbank
PHP 5.0.3
und alles was man theoretisch fuer Typo3 braucht!

Bitte helft mir weiter :(
Hab in den offiziellen typo3-Foren nichts gefunden :confused: :confused: :confused:


Naja danke schonmal im Voraus!
 
Zuletzt bearbeitet:
Zurück