Connection time out from php

Username (e.g. epiz_XXX) or Website URL

website : http://cobaaa.epizy.com/

hello admin i need your help,
I have a problem in making a connection to the database, the result is always “Connection timed out”. this my php code :

<?php
 
 //Mendefinisikan Konstanta
 define('HOST','http://sql312.epizy.com');
 define('USER','epiz_26072317');
 define('PASS','HIDDEN BY MOD');
 define('DB','epiz_26072317_app');

 //membuat koneksi dengan database
 $con = mysqli_connect(HOST,USER,PASS,DB);
 if (!$con) {
    die("connection: " . mysqli_connect_error());
}else{
    echo " done ";
}
 ?>

thanks in advance

I can’t see any errors in your PHP syntax.

This is maybe only a temporary issue due to maintenance of InfinityFree servers. The error “Connection timed out” is also because of maintenance.

Kindly read this official announcement:

EDIT: Im not an Admin but Im trying to help you!

Also, if you are sure that your main IP address is not affected, consider reading and applying this:

By the way, please dont expose sensitive data on the forum.

Host is not a WEBSITE url, please remove its http :grin:

define('HOST','sql312.epizy.com');
5 Likes

i’m sorry sir
i forgot to hide my sensitive data. coz i’m so confiuse and just click post, and i don’t know to how to edit my post, next time i’ll never do this again

1 Like

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.