Theo Posted January 7, 2012 Report Share Posted January 7, 2012 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 Quote Link to comment Share on other sites More sharing options...
Jeff Posted January 7, 2012 Report Share Posted January 7, 2012 Upload the SQL file (located in the phpVMS folder) to your database using phpMyAdmin. That should install the required tables. Quote Link to comment Share on other sites More sharing options...
Theo Posted January 7, 2012 Author Report Share Posted January 7, 2012 Which SQL File? Quote Link to comment Share on other sites More sharing options...
Theo Posted January 7, 2012 Author Report Share Posted January 7, 2012 I think i uploaded all of them all i did what using core FTP uploaded the phpvms file folder, to my main site directory Quote Link to comment Share on other sites More sharing options...
Jeff Posted January 7, 2012 Report Share Posted January 7, 2012 Inside the Install folder you will see a cab file that says navdata.sql Quote Link to comment Share on other sites More sharing options...
Theo Posted January 7, 2012 Author Report Share Posted January 7, 2012 still not working...dose the whole folder need to be in the database? Quote Link to comment Share on other sites More sharing options...
Jeff Posted January 7, 2012 Report Share Posted January 7, 2012 just the SQL Quote Link to comment Share on other sites More sharing options...
Theo Posted January 7, 2012 Author Report Share Posted January 7, 2012 all SQL files? Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.