I have heard not to use free hosting site but i can't afford to pay for one at this time i think i uploaded the files correctly, but when i go the the install (i'm using the phpvms for dummies guide from this site) page it says:
Installing the tables...'; if($_POST['DBASE_NAME'] == '' || $_POST['DBASE_USER'] == '' || $_POST['DBASE_TYPE'] == '' || $_POST['DBASE_SERVER'] == '' || $_POST['SITE_URL'] == '') { echo '
You must fill out all the required fields
'; break; } if(!Installer::AddTables()) { echo '
'.Installer::$error.'
'; break; } if(!Installer::WriteConfig()) { echo '
'.Installer::$error.'
'; break; } echo '
Continue to the next step
'; } break; case 'sitesetup': Template::Show('s2_site_setup.tpl'); break; case 'complete': if($_POST['action'] == 'submitsetup') { if($_POST['firstname'] == '' || $_POST['lastname'] == '' || $_POST['email'] == '' || $_POST['password'] == '' || $_POST['vaname'] == '' || $_POST['vacode'] == '') { Template::Set('message', 'You must fill out all of the fields'); Template::Show('s2_site_setup.tpl'); break; } $_POST['SITE_NAME'] = $_POST['vaname']; if(!Installer::SiteSetup()) { Template::Set('message', Installer::$error); Template::Show('s2_site_setup.tpl'); } else { Installer::RegisterInstall(INSTALLER_VERSION); Template::Show('s3_setup_finished.tpl'); } } break; } Template::Show('footer.tpl');
any ideas?
Any help would be much appreciated.
Thanks, Theo