if you are using diff database or and database account
delete //
the original of the plug in is
//$link=mysql_connect("localhost","$dbuserid","$dbus erpassword") OR die("I cannot connected to the Database");
//mysql_select_db("products") OR die("failed to select PhotoPost Database");
make them become . delete the // . your forum will connect to your database
$link=mysql_connect("localhost","$dbuserid","$dbus erpassword") OR die("I cannot connected to the Database");
mysql_select_db("products") OR die("failed to select PhotoPost Database");
|