hocam rooter kullanıyorum ve localhost'da çalışan mysql portu olan 3306'na gerekli yönlendirmeleri sorunsuz yaptım. Cpanel'de gerekenleride yaptım.
Şöyle bir hata almaktayım.
Alıntı
Warning: mysql_pconnect() [function.mysql-pconnect]: Host 'host.svsnetwork.com' is not allowed to connect to this MySQL server in /home/xxx/public_html/settings/database.php on line 10
Cannot connect to database, check if username, password and host are correct.
ip adresim sabit ayrıca diğer ip adresimde dinamik. sabit ip adresine yüklenme şuan var hali hazırdaki dinamik ip adresimi kullanmak istiyorum bunuda dinamik dns ile gerçekleştirebilirimde işte bilgilerinize sığınarak nasil yapabileceğimin cevabını aramaktayım.

hata verilen dosya

<?php
	$database="motor";
	$mysql_user = "root";
	$mysql_password = "xxxxxxxxxx"; 
	$mysql_host = "88.xxx.xxx.97:3306";//hata veren yer
	$mysql_table_prefix = "";



	$success = mysql_pconnect ($mysql_host, $mysql_user, $mysql_password);
	if (!$success)
		die ("<b>Cannot connect to database, check if username, password and host are correct.</b>");
    $success = mysql_select_db ($database);
	if (!$success) {
		print "<b>Cannot choose database, check if database name is correct.";
		die();
	}
?>