I figured out what the main issue was. iPower does not allow remote connections to their mySQL for security reasons. This is probably good, as its more secure, but my goodness is it quite the headache. I have tried updating the connection information in the connection file, but that hasn't worked either. I talked with an iPower support technician, but didn't have much luck at all. They supplied me with a code snippet that was supposed to make all of my connections move to the iPower database. I input the code and still am having issues connecting to their database. Even with this code, I'm not sure how the specific connections from the database to text fields (account information, login username and password, etc.) would respond. Will they acknowledge the database switch, and change where they're recording the data, or is there something in Dreamweaver I'm going to have to do to update those connections?
Code Snippet (minus username and password for security reasons):
<?php
$link = mysql_connect('syde0004.ipowermysql.com', 'username', '*password*');
if (!$link) {
die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully';
mysql_select_db(account_setup);
?>
Again, any help would be incredibly appreciated. I'm new to this and seem to be hitting every bump in the road!
Thanks again,
Jason