Manchmal ist confixx echt dabei, mich um den Verstand zu bringen.
Na gut, wer es einsetzt hat vielleicht keinen.
Worum es geht:
Jedes Mal, wenn confixx einen Datenbankuser in mysql erstellt, steht dort als Host meine IP drin. Dann geht der Zugriff auf die Datenbanken nicht. Ist ja klar, habe network ja deaktiviert.
Nur auf zwei anderen Rechner trägt es brav localhost ein, nur auf diesem nicht.
Habe in der confixx_main.conf schon $db_host von der IP auf localhost geändert, trtzdem tut sich da nichts.
Gibt es noch eine Alternative zu rm -R /root/confixx ?
Gruß,
Alex
confixx und sql-user
Re: confixx und sql-user
Ã?ndere folgende Variablen in /home/confixx/settings.inc.php
$db_host = 'localhost';
$mysql_user_host = 'localhost';
$mysql_host = 'localhost';
$db_host = 'localhost';
$mysql_user_host = 'localhost';
$mysql_host = 'localhost';
Re: confixx und sql-user
Jep, das wars. Danke. :-DFreeze wrote:Ã?ndere folgende Variablen in /home/confixx/settings.inc.php
$db_host = 'localhost';
$mysql_user_host = 'localhost';
$mysql_host = 'localhost';
Alex