Du hast irgendwo garantiert noch einen mysql_connect()-Aufruf.
Script Problem PHP5
Einklappen
X
-
Hast du auch mal in der Config Datei den Host localhost gegen 127.0.0.1 ausgetauscht? Bleibt dann die Fehlermeldung dieselbe oder ändert sich was?Gutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten
[color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)
Kommentar
-
Gerade probiert, die Meldung bleibt die selbeGutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten
[color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)
Kommentar
-
Warning: mysql_query() [function.mysql-query]: Access denied for user 'www-data'@'localhost' (using password: NO) in /var/www/web64/html/rightFrame.php on line 13
Warning: mysql_query() [function.mysql-query]: A link to the server could not be established in /var/www/web64/html/rightFrame.php on line 13
Warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource in /var/www/web64/html/rightFrame.php on line 14
Kommentar
-
Jetzt schreibst du dir flux ein Testscript um die Zugangsdaten zu testen. Ein File mit nur folgendem Inhalt
PHP-Code:<?php
$dbhost = "127.0.0.1"; // WHICH ARE USED TO SEE WHO HAS REPORTED WHICH BROKEN LINK
$dbuser = "web64";
$dbpass = "1057934";
$db = "usr_web64_1";
$DBPREFIX = "sixty_"; //
$con=mysql_connect($dbhost, $dbuser, $dbpass)
or die(mysql_error());
if(!mysql_select_db($db, $con)) {
exit("Error connecting to the database... : ". mysql_error());
}
?>Zuletzt geändert von jahlives; 29.07.2008, 13:22.Gutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten
[color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)
Kommentar
-
also der Fehler muss irgendwie am Code liegen weil, ich habe jetzt einfach mal in die rightframe.php anstatt include config/config.php die neu erstellte test.php mit DB-Verbindung includet und siehe da:
http://lach-krampf.com/rightFrame.php
Keine Fehlermeldung mehr, also muss es evtl. doch irgendwo am Code liegen in evtl. der config ?
Kommentar
-
habs mal in ne test.php gemacht, bei aufruf kommt ne weiße seite also kein sql-error oder so.
Wo genau (ausgehend von deinem Doc Root) liegt die Conf Datei? Verwende mal zum Einbinden eine komplette Pfadangabe ($_SERVER['DOCUMENT_ROOT'] kann helfen)Gutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten
[color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)
Kommentar
-
hi,
ich kenne dieses problem.
php-fusion gibt die gleiche meldung aus, wenn die daten in der config datei nicht passen.
an der gruppenzugehörigkeit der dateien kann es nicht liegen, wenn ich alle zugehörigen dateien eine andere gruppe gebe (nicht www-data), steht dennoch www-data@localhost dort
ich würde nochmal die mysql logindaten und den DB namen überprüfen.
Kommentar
-
imho hat das nix mit Gruppenzugehörigkeit zu tun. Denn eine Anmeldung an MySql wird immer den Usernamen und nicht seine Gruppe verwenden.
ich würde nochmal die mysql logindaten und den DB namen überprüfen.Gutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten
[color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)
Kommentar
-
so einen benutzer gibts nicht auf meinem mysql server und im script steht davon auch nichts.
Bist du eigentlich == Robby TM ??Gutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten
[color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)
Kommentar
Kommentar