Welcome to HBH! If you have tried to register and didn't get a verification email, please using the following link to resend the verification email.
PHP pconnect errors
Ok i wrote an admin center script for my site [scoliomedia.co.uk] which seems fine, and requires('filename.php') a databse login script:
<?php
// MySql Connections
$dbhost='dbdomain.domain.com';
$dbusername='username';
$dbuserpass='XXXXXXXXX';
$dbname='dbname';
//-------------------------------
// Connect To MySQL
//-------------------------------
mysql_pconnect($dbhost, $dbuser, $dbuserpass) or die(mysql_error());
mysql_select_db($dbname) or die(mysql_error());
?>
However when i run the script and try to login i get
Access denied for user 'XXXXXXXXX'@'XXX.XXX.XXX.XX' (using password: YES)
note: the XXXXXXXXX is my login for FTP, not the database :S And the other bit is an IP address (presumably my hosting server [1and1.co.uk])
Please help.