Domain?

Ok

There is no fixed storage space limit for MySQL, but fair usage limits apply.

Also, 400 MySQL databases is a LOT, and practically unlimited. I can’t think of any use case where you’d exceed that limit before running into other limits first.

5 Likes

It is to implement this part to store unlimited amounts of user data and to continue to store a lot of user data. And when you create a community, you need unlimited dragons.
I’m willing to buy infinity free if they sell a premium. Please do an internal review and make a decision.
For api, you can ignore the certificate in infinityfree and import the API into PHP, but it doesn’t work in languages like Java.

Example <?php
$url = “https://gamegam.wuaze.com/api/APP-version”;
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
$response = curl_exec($ch);

if (curl_errno($ch)) {
echo "cURL Error: " . curl_error($ch);
curl_close($ch);
exit;
}
curl_close($ch);

// Decode the JSON response
$data = json_decode($response, true);

// Check if version key exists and retrieve it
if (isset($data[‘version’])) {
echo "Version: " . $data[‘version’];
} else {
echo “Version not found in the response.”;
}
?>

For Java languages, certificate disregard is blocked.

If I buy a premium on ifastnet, can I go to https://filemanager.ai/ and code it?

Please keep in mind you won’t be able to get entirely ‘unlimited’ database storage in Infinityfree or even ifastnet. You do have ‘unmetered’ database storage in both free and iFastNet premium plans, which means there is no hard limit. It is particularly limited by fair usage, meaning how many queries you can execute in your SQL dataase or how much load the database can take, which is higher in the ifastnet premium plans.

You can’t make a request to your API from another origin or domain, but you can make an API request from your own website. This can’t be disabled in free hosting

Of course, you can use it. You can use any FTP client or online file manager in the ifastnet premium plan too. However, if you upgrade, you will have to manage other aspects of your website from iFastNet’s dashboard, not here. Because keep in mind Infinityfree and ifastnet is different, Infinityfree has no premium plan, the ones you see is from ifastnet, which is sponsored

6 Likes

Thack you

InfintiyFree does not provide premium hosting. Our partner company iFastNet does, but as we state very clearly on the homepage of our website, our free hosting is not a demo or trial for iFastNet’s premium hosting. Free hosting is completely different from premium hosting, so if you are trying to assess whether iFastNet’s premium hosting is a good fit for you, then please try iFastNet’s premium hosting.

5 Likes

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