
David E. Nuttall - 2017-09-29 13:08:56 -
In reply to message 3 from Frank Cauley
Sounds like you need to open the "config.php" in the root directory and edit lines 3, 4 and 5, which follow the lines:
<?php
session_start();
In the original file, they look like this:
define('conString', 'mysql:host=localhost;dbname=login');
define('dbUser', 'root');
define('dbPass', 'root');
localhost is the name of your MySQL server. If you're actually operating on a machine on the internet, it probably will NOT be localhost.
dbname is the name of the database that you created, perhaps with MyPHPadmin
dbUser is the user name assigned to the database server and database.
dbPass is the password for that user.
Save the edited file and if saved off-line, copy it back to the root folder of your site.
Then refresh your browser and you should be able to register which will create data in the table in the database and send a verification email to whatever email address you used.
HTH.
Post a reply here and hopefully I'll get notified of the reply.
HOWEVER, I am NOT the author and do know speak for or represent the author who may have a different opinion on the foregoing!
Dave
San Antonio, Texas