here is the control panel log , I notice that there is no new log when I login, maybe because "Could not connect to database:"
@simonyu I see you have your password 123456 in your config without quotes, did you try to enclose it in quotes? Not sure if that will fix your problem but it should be a string anyway. Also, did you try to access phpMyAdmin (or any other external tool for MySql management like DBeaver) with that username+password?
EDIT: oh I saw only now the last messages, so you’re having issues with your MySql database. Did you install the XAMPP package or similar? I never saw those issues with mysql installations.
FRANCESCO CROCETTI @ SKARED CREATIONS
YEs I installed XAMPP, I used it from Combu2
define ("GAME_DB_PASS", "admin");
I changed the password , doesnt work ,neither does the CMD login
but I try Combu2.15 IS oK.....
How can I get a version before Combu3?? maybe something like Combu2.9X??
Please don't use the forum as a chat, you should try to write one message with all questions, use EDIT to modify a message and add more information to it instead of creating dozen of posts.
It maybe that the hostmask used to connect is 'root'@'localhost', see if this hostmask is registered in the MySql users list (you can eventually see and/or add it from the top menu "User accounts" in phpMyAdmin). This issue has nothing to do with Combu or its versions, since it's a connection error coming from MySql security settings. Usually you should have both 'root'@'localhost' and 'root'@'127.0.0.1' to cover the different hostmasks (on development machines you can eventually add 'root'@'%' so that it will allow the user 'root' to access from any IP/hostmask)
FRANCESCO CROCETTI @ SKARED CREATIONS
GOOD NEWS ,i FOUND the problem , the PWD for 'root' of MySQL is '' not '12345' or others I set.
These days, I always set the pwd in _Setup Page ,which did not change the PWD for Mysql . it seems you must change the PWD in PhpMyadmin,
NOW I can USE COMBU3
thanks
ah ok, yes the database name and username/password that you set in setup must already be valid and existing on your MySql server.
FRANCESCO CROCETTI @ SKARED CREATIONS