Help! Can't add a new domain hosting!

Hello! Recently i registered a domain arktype.gq and hosted it with infinityfree. but now i want to Host another domain I registered, but it only shows an option of registering a subdomain. I did this:
Create a new account, it shows only to register a subdomain: subdomain.epizy.com
please help me!

Please check the FAQ first next time: https://infinityfree.net/support/add-your-own-domain

Thank you so much! :slight_smile: Really, the best hosting service ever in my life! Really no words for you! I am really impressed! Also one more problem. When i try to connect to the mysql database through login system, i get error, (ERROR: Could not connect. Access denied for user ‘epiz_20827223’@‘192.168.0.64’ (using password: YES))
Here is my config.php file below

<?php define('DB_SERVER', 'sql202.epizy.com'); define('DB_USERNAME', 'epiz_20827223'); define('DB_PASSWORD', 'mypass1234'); define('DB_NAME', 'epiz_20827223_users'); $link = mysqli_connect(DB_SERVER, DB_USERNAME, DB_PASSWORD, DB_NAME); if($link === false){ die("ERROR: Could not connect. " . mysqli_connect_error()); } ?>

Please make sure you’re using the password of your hosting account, not the client area password.

Hi All,

I am also facing the same problem. I am unable to find out the hosting account. as per the instructions given in the FAQ article: https://infinityfree.net/support/help-i-cannot-connect-to-mysql, i have gone into accounts and selected my account where i have database. But i can see only account information and the FTP information. I dont know how to get the hosting account password.

I am getting an error message…This is page is not working. URL : http://orunginanthamakkalsangam.rf.gd/ContactForm.php

not sure the error is thrown since i have given hosting password as empty. The below coding i have used in a connection php and it will be called using include keyword wherever required. Please help me to resolve this issue.

Moreover, please guide me is there any limitation for using Mysql database space for free account? Please guide me.

<?php $link=mysqli_connect("sql106.epizy.com", "epiz_21128659", ""); // mysqli_connect(host,username,password,dbname,port,socket); if(mysqli_select_db($link, "epiz_21128659_omnaassociation")->conect_error){ echo $link->connect_error; die("Database connection failed..."); } ?>

@OMNA_Admin said:
Hi All,

I am also facing the same problem. I am unable to find out the hosting account. as per the instructions given in the FAQ article: https://infinityfree.net/support/help-i-cannot-connect-to-mysql, i have gone into accounts and selected my account where i have database. But i can see only account information and the FTP information. I dont know how to get the hosting account password.

I am getting an error message…This is page is not working. URL : http://orunginanthamakkalsangam.rf.gd/ContactForm.php

not sure the error is thrown since i have given hosting password as empty. The below coding i have used in a connection php and it will be called using include keyword wherever required. Please help me to resolve this issue.

Moreover, please guide me is there any limitation for using Mysql database space for free account? Please guide me.

<?php $link=mysqli_connect("sql106.epizy.com", "epiz_21128659", ""); // mysqli_connect(host,username,password,dbname,port,socket); if(mysqli_select_db($link, "epiz_21128659_omnaassociation")->conect_error){ echo $link->connect_error; die("Database connection failed..."); } ?>

I assume you set the password to an empty string for privacy reasons? Because for your code to work, you need to enter your hosting account password there of course.

There is no limit on database space on free hosting. We primarily monitor how much load you put on the database servers, so you if you execute a query which takes a long time to complete or just use the database inefficiently in general, that may cause problems.