tr1ck3tt Posted April 27, 2012 Report Posted April 27, 2012 I am looking for some who can help me install phpvms to my website for some reason i am going wrong somewhere Quote
Moderators Kyle Posted April 28, 2012 Moderators Report Posted April 28, 2012 Hi, Welcome to phpVMS Forums! First, you should tell us the errors that your getting and paste them here, and we will do our best to help you out here! Cheers! Quote
tr1ck3tt Posted April 28, 2012 Author Report Posted April 28, 2012 I have followed all the steps and end up with this 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'); Quote
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.