http://studio92k.pcriot.com/register.php
If you try to go on there, I get an error:
Warning: mysql_connect() [function.mysql-connect]: Host '7x.xx.xxx.xxx' is not allowed to connect to this MySQL server in /home/xxxxx/public_html/config.php on line 9
Cant connect to the database
The config is here:
It works for my buddy's server (using x10hosting as well) and he did the same thing I did..
Any ideas? :S
Here's his link:
http://nokelt.x10hosting.com/register.php
If you try to go on there, I get an error:
Warning: mysql_connect() [function.mysql-connect]: Host '7x.xx.xxx.xxx' is not allowed to connect to this MySQL server in /home/xxxxx/public_html/config.php on line 9
Cant connect to the database
The config is here:
Code:
<?php
// made by superfun
// Version 3.2
$host['naam'] = '9x.xx.xxx.xx'; // my host
$host['gebruikersnaam'] = 'root'; // my database username
$host['wachtwoord'] = '------'; // my database password
$host['databasenaam'] = 'maplestory'; // my database name
$db = mysql_connect($host['naam'], $host['gebruikersnaam'], $host['wachtwoord']) OR die ('Cant connect to the database');
mysql_select_db($host['databasenaam'], $db);
?>
Any ideas? :S
Here's his link:
http://nokelt.x10hosting.com/register.php
Last edited: