The hotel is not installed
Sorry - Hablog Hotel is not installed. If you are the owner of this hotel please install the CMS on http://127.0.0.1/ in just 3 steps!
$hostfile=getenv( REMOTE_ADDR );
if("$hostfile" == "127.0.0.1") {
$port=$_POST[port];
$db=$_POST[db];
$name=$_POST[name];
if("$db" == "") {
}else{
include("configuration/cms.php");
$configs=file_get_contents('configuration\cms.php');
$configs=str_replace('$hotel_path="'.$hotel_path.'', '$hotel_path="'.$db.'', $configs);
$configs=str_replace('$hotel_path="'.$hotel_port.'', '$hotel_port="'.$port.'', $configs);
$configs=str_replace('$hotel_path="'.$hotel_name.'', '$hotel_name="'.$name.'', $configs);
if (!$handle = fopen("configuration\cms.php", 'w')) {
exit;
}
if (fwrite($handle, $configs) === FALSE) {
exit;
}
fclose($handle);
}
echo"
Sorry - Hablog Hotel is not installed. If you are the owner of this hotel please install the CMS on http://127.0.0.1/ in just 3 steps!