01-25-2016, 01:41 AM
Good Morning,
What I have to put here?
// Settings to change
$conf[db][server] = SERVERNAME WHICH WILL BE SHOW AT LOGIN TO LC?;
$conf[db][dbase] = DATABASE_AUTH --> THIS I COULD SEE ABOVE;
$conf[db][user] = WHICH USER? THE USER WHICH HAVE THE PRIVILEGES OF THE DATABASE_AUTH???;
$conf[db][pass] = PASSWORD OF THE PRIVILEGED USER TO DATABASE_AUTH WHICH I HAVE CREATED IN MYSQL???;
And then I have to make a Button on a Website an inbound the php-Script? How I can do this?
Thank you very much
Thank you very much
// Settings to change
$conf['db']['server'] = '';
$conf['db']['dbase'] = '';
$conf['db']['user'] = '';
$conf['db']['pass'] = '';
look at what it says:
['user'] hmm mysql username!!
['pass'] mysql password
['server'] the IP of mysql server (if it on same pc as your php then put 127.0.0.1
['dbase'] this would be your auth db name
please please make sure you do like this!
$conf['db']['server'] = 'YOUR_MYSQL IP';

