Hallo,
hat funktioniert! Vielen Dank an Alle!
Problem war - PW 'NULL' - Richtig: NULL. Also ein Tippfehler.
Weis jemand wann die geplante Oberfläche zum Mandanten anlegen eingebunden wird?
Hallo,
hat funktioniert! Vielen Dank an Alle!
Problem war - PW 'NULL' - Richtig: NULL. Also ein Tippfehler.
Weis jemand wann die geplante Oberfläche zum Mandanten anlegen eingebunden wird?
Hallo Chekov
Danke. Langsam steig ich durch.
Also in der config.inc.php habe ich "root" und PW "NULL" stehen.
Welche Kommandos geb ich dann im INSERT Befehl ein?
'root', 'NULL', oder 'root', ' ' ?
Bin leider noch nicht so der SQL-Kenner.
Danke!
Der SQL-User müsste standardmäßig "root" ohne Passwort sein. So kann ich mich jedenfalls mit der Datenbank verbinden. Diesen habe ich auch getestet. Allerdings ohne Erfolg.
Ich zitiert hier nochmal die Schritte die ich mit der Console in Abgleich mit der 3-Schritte-Wikianleitung gemacht habe.
–-SCHRITT 1--- (Datenbank "test" erzeugen)
C:\idoit\mysql5.1\bin>mysql -uroot -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 18
Server version: 5.1.30-community MySQL Community Server (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> create database test;
Query OK, 1 row affected (0.00 sec)
–-SCHRITT 2--- (Vorlagen-Datenbank kopieren - wird auch erfolgreich gemacht. Verzeichniss "test" ist gefüllt mit Daten)
C:\idoit\mysql5.1\bin>mysql -uroot -p -Dtest < idoit_data.sql
Enter password:
–-SCHRITT 3--- (Mandator in der Hauptdatenbank eintragen)
C:\idoit\mysql5.1\bin>mysql -uroot -p -Didoit_system
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 49
Server version: 5.1.30-community MySQL Community Server (GPL)
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql> INSERT INTO isys_mandator
( isys_mandator__id
, isys_mandator__title
,isys_mandator__description
,isys_mandator__dir_cache
,
-> isys_mandator__dir_tpl
, isys_mandator__db_host
, isys_mandator__db_ port
, isys_mandator__db_name
, isys_mandator__db_user
,
-> isys_mandator__db_pass
, isys_mandator__sort
, isys_mandator__defaul t_lang_const
, isys_mandator__default_language_short
)
-> VALUES (DEFAULT, 'Testmandant', NULL , 'testcache', 'default', 'localhost
', '3306', 'test', 'root', 'NULL',
-> '50', 'ISYS_LANGUAGE_ENGLISH', 'en');
Query OK, 1 row affected (0.08 sec)
Als User + Passwort habe ich folgende Kombinationen getestet:
root:root
root:NULL
admin:admin
admin:NULL
Hat jedoch keine Kombination funktioniert.
Bekomme immer die Fehlermeldung im obig genannten Thread.
Vielen Dank für eure Hilfe!
MfG, Daniel Weiß
Hallo Chekov,
danke für die schnelle Antwort.
Der MySQL Server läuft. Der Fehler erscheint erst wenn ich die INSERT Befehle ausgeführt habe.
Vorher kann ich mich ganz normal anmelden.
Benutzer und Passwörter sind sonst überall Standardwerte vergeben. Also nichts geändert nach der Installation.
Für weiter Tipps wäre ich dankbar.
Grüße
Hallo,
ich bin die notwendigen Schritte durchgegangen. Alles ohne Fehlermeldung.
Nun bei Anmeldeversuch kommt folgende Fehlermeldung:
"isys_exception_database : Database connection to login@localhost:3306 failed. Possible errors: * MySQL Server not loaded. * Password or settings for mandator connection in table "isys_mandator" (system database) wrong. * Database settings wrong in configuration file: src/config.inc.php MySQL-Reports: [0]: (Extended Information: NULL)"
Folgenden INSERT habe ich durchgeführt:
INSERT INTO isys_mandator
( isys_mandator__id
, isys_mandator__title
, isys_mandator__description
, isys_mandator__dir_cache
,
isys_mandator__dir_tpl
, isys_mandator__db_host
, isys_mandator__db_port
, isys_mandator__db_name
, isys_mandator__db_user
,
isys_mandator__db_pass
, isys_mandator__sort
, isys_mandator__default_lang_const
, isys_mandator__default_language_short
)
VALUES (DEFAULT, 'testmandator', 'testmandator' , 'cache_testmandator', 'default', 'localhost', '3306', 'idoit_testmandator', 'root', 'root',
'50', 'ISYS_LANGUAGE_GERMAN', 'de');
Über Hilfe wäre ich sehr dankbar.
MfG,
Daniel Weiß