Antwort
 
LinkBack Themen-Optionen Thema bewerten Ansicht
  #1  
Alt 02.10.07, 10:26
Forum Zuschauer
 
Registriert seit: 02.10.07
Alter: 23
Beiträge: 3

Fehlermeldung zu class.t3lib_db.php


Hallo alle zusammen

Ich bin ein Neueinsteiger bei typo3. nun wollte ich zu ersten mal eine kleine Seite installieren. die installation funktionierte auch einwandfrei und ich konnte auch eine datenbank anhängen. jedoch kann ich jetz nicht auf die seite zugriefen, weil es immer die gleichen fehlermeldungen gibt.

Warning
: mysql_fetch_assoc(:sad: supplied argument is not a valid MySQL result resource in /usr/share/typo3/typo3_src-4.0/t3lib/class.t3lib_db.php on line 802

Warning: mysql_fetch_assoc(:sad: supplied argument is not a valid MySQL result resource in /usr/share/typo3/typo3_src-4.0/t3lib/class.t3lib_db.php on line 802

Warning: mysql_fetch_assoc(:sad: supplied argument is not a valid MySQL result resource in /usr/share/typo3/typo3_src-4.0/t3lib/class.t3lib_db.php on line 802

Warning: mysql_fetch_assoc(:sad: supplied argument is not a valid MySQL result resource in /usr/share/typo3/typo3_src-4.0/t3lib/class.t3lib_db.php on line 802

Warning: mysql_fetch_assoc(:sad: supplied argument is not a valid MySQL result resource in /usr/share/typo3/typo3_src-4.0/t3lib/class.t3lib_db.php on line 802

Warning: Cannot modify header information - headers already sent by (output started at /usr/share/typo3/typo3_src-4.0/t3lib/class.t3lib_db.php:802) in /usr/share/typo3/typo3_src-4.0/t3lib/class.t3lib_userauth.php on line 311

Warning: Cannot modify header information - headers already sent by (output started at /usr/share/typo3/typo3_src-4.0/t3lib/class.t3lib_db.php:802) in /usr/share/typo3/typo3_src-4.0/t3lib/class.t3lib_userauth.php on line 312

Warning: Cannot modify header information - headers already sent by (output started at /usr/share/typo3/typo3_src-4.0/t3lib/class.t3lib_db.php:802) in /usr/share/typo3/typo3_src-4.0/t3lib/class.t3lib_userauth.php on line 313

Warning: Cannot modify header information - headers already sent by (output started at /usr/share/typo3/typo3_src-4.0/t3lib/class.t3lib_db.php:802) in /usr/share/typo3/typo3_src-4.0/t3lib/class.t3lib_userauth.php on line 314

Warning: mysql_fetch_assoc(:sad: supplied argument is not a valid MySQL result resource in /usr/share/typo3/typo3_src-4.0/t3lib/class.t3lib_db.php on line 802

Warning: mysql_fetch_assoc(:sad: supplied argument is not a valid MySQL result resource in /usr/share/typo3/typo3_src-4.0/t3lib/class.t3lib_db.php on line 802

Warning: mysql_free_result(:sad: supplied argument is not a valid MySQL result resource in /usr/share/typo3/typo3_src-4.0/t3lib/class.t3lib_db.php on line 827

ich habe gestern das forum durchsucht aber leider keinen eintrag gefunden, der mir helfen konnte. wenn ich die Datei class.t3lib_db.php öffne sehe ich, dass das Problem beim Parameter $res liegt. ich weiss aber nicht was ich dort ändern muss.

function admin_query ($query) {
$res = mysql_query ($query, $this -> link);
if ($this -> debugOutput) $this -> debug ('admin_query');
return $res;
}


der fehler ersteht aber an einem anderen ort

function sql_fetch_assoc($res) {
return mysql_fetch_assoc($res);
}

und

function sql_free_result($res) {
return mysql_free_result($res);
}

könnte da mir vileicht jemand helfen. habe schon so manches probiert. bis jetz ohne erfolg.

danke schon im voraus
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
Mit Zitat antworten
  #2  
Alt 02.10.07, 11:34
Benutzerbild von MistaD
TYPO3 Forum Team
Moderator
 
Registriert seit: 25.01.06
Beiträge: 1.457

Hallo,


sieht nach einem fehlerhaften SQL-Abfrage aus. Setz mal im InstallTool sqlDebug, das hilft vielleicht weiter den Fehler einzugrenzen.




__________________
Gruss
MD
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
Mit Zitat antworten
  #3  
Alt 02.10.07, 12:40
Forum Zuschauer
 
Registriert seit: 02.10.07
Alter: 23
Beiträge: 3

habe den sqldebug eingeschaltet. nun gibt es eine andere fehlermeldung


Fatal error: Call to undefined method t3lib_DB::sql_error() in /usr/share/typo3/typo3_src-4.0/t3lib/class.t3lib_db.php on line 1089

keine ahnung was nun der fehler ist. die betreffenden zeilen lauten

function debug($func) {

$error = $this->sql_error();
if ($error) {
echo t3lib_div::view_array(array(
'caller' => 't3lib_DB::'.$func,
'ERROR' => $error,
'lastBuiltQuery' => $this->debug_lastBuiltQuery,
'debug_backtrace' => t3lib_div::debug_trail()
));
}
}
}


vileicht findet jemand den fehler.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!Spurl this Post!Reddit! Diesen Post bei linksilo.de bookmarken!
Mit Zitat antworten
Antwort

Lesezeichen

Themen-Optionen
Ansicht Thema bewerten
Thema bewerten:

Forumregeln
Es ist Ihnen nicht erlaubt, neue Themen zu verfassen.
Es ist Ihnen nicht erlaubt, auf Beiträge zu antworten.
Es ist Ihnen nicht erlaubt, Anhänge hochzuladen.
Es ist Ihnen nicht erlaubt, Ihre Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are an
Pingbacks are an
Refbacks are an


Ähnliche Themen
Thema Autor Forum Antworten Letzter Beitrag
Mehrsprachigkeit Error: class.t3lib_db.php on line 783 xeon TYPO3 4.x Fragen und Probleme 2 19.04.08 16:23
Mysql Error in class.t3lib_db.php (mysql_free_result) raf TYPO3 4.x Fragen und Probleme 4 13.03.08 19:03
Gelöst Installationsproblem - Fehlermeldung in class.t3lib_db.php tob1as TYPO3 4.x Installation und Updates 2 08.10.07 07:41
fehlermeldung bei class.t3lib_db.php on line 305 mr nice TYPO3 4.x Fragen und Probleme 0 03.10.07 12:03
typo3_src-4.1.1/t3lib/class.t3lib_db.php Obi-Wan TYPO3 4.x Installation und Updates 3 31.05.07 18:12


Alle Zeitangaben in WEZ +1. Es ist jetzt 00:55 Uhr.


Powered by vBulletin® Version 3.7.3 (Deutsch)
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0