
Daniel Fedorov - 2017-05-14 23:41:21 -
In reply to message 1 from Josh Ownz
RE: on line 258
I just installed this code on my local dev machine to test this. This script would give you an error on the line 255 according to the last revision from the author. This is 99.99% because you have entered an invalid database user info in a config.php file. Default values when you get this code are:
define('conString', 'mysql:host=localhost;dbname=login');
define('dbUser', 'root');
define('dbPass', 'root');
and here you need to make sure to put the name of the database you created - "login", or whatever you named it if you used another name. Then, double or triple check your dbUser name and dbPass if they match with what you type in the dbPass constant.