Quote: Originally posted by TheOutlaw  | Quote: Originally posted by lottos  |
I don't use any myself, so cannot endorse any, but a quick google search reveals
https://www. infinityfree .net/
and their website appears to offer php, mysql and subdomains without ads.
|
Thank you!
I really don't know if it's me, but I've got the same thing here ...
|
It does work (I've added spaces so these don't turn into links):
https://xmb. infinityfreeapp. com (note you can make it an https / SSL site once you get the basic site http running).
Ensure config.php file has this set:
$tablepre = 'xmb_';
and that this is set to whatever they show (it's not localhost)
$dbhost = 'sql206. epizy .com';
and
$full_url = 'http://yoursubdomain .infinityfreeapp .com/';
eg:
// Database connection settings
$dbname = 'epiz_3169999_xmb'; // Name of your database
$dbuser = 'epiz_3169999'; // Username used to access it
$dbpw = 'whateverthepwdis'; // Password used to access it
$dbhost = 'sql206. epizy .com'; // Database host, usually 'localhost'
$database = 'mysql'; // Database type, currently only mysql is supported.
$pconnect = 0; // Persistent connection, 1 = on, 0 = off, use if 'too many connections'-errors appear
// Table Settings
$tablepre = 'xmb_'; // XMB will prefix each table name with the string you specify here. 'xmb_' is a common choice.
|