Hi John,
— Just making a note on the forum so i can resolve the topic
Looks like you have configured your config incorrectly.
// ** MySQL settings – You can get this info from your web host ** //
/** The name of the database for FeedSync */
define(‘johnandr_feedsync’, ‘feedsync’ );
/** MySQL database username */
define(‘johnandr_feed’, ‘root’ );
/** MySQL database password */
define(’43Johnboy34′, ‘root’ );
/** MySQL hostname */
define(‘localhost’, ‘localhost’ );
Should be
// ** MySQL settings – You can get this info from your web host ** //
/** The name of the database for FeedSync */
define(‘DB_NAME’, ‘johnandr_feedsync’ );
/** MySQL database username */
define(‘DB_USER’, ‘johnandr_feed’ );
/** MySQL database password */
define(‘DB_PASS’, ’43Johnboy34′ );
/** MySQL hostname */
define(‘DB_HOST’, ‘localhost’ );
The left value is the programs value, the right value is your settings. Basically you have defined your own values and the software does not know what to do.
Adjusting them will solve your problem