Pilot Manager Installer Instructions
- Unzip and upload the ManagerInstall folder to the root of your phpVMS installation.
- (This should be the same folder on your server that contains the /core /lib and /admin folders)
- Log into your site (You must be an administrator and logged in to run the installer)
- Go to www.yoursite.com/ManagerInstall and follow the instructions.
- All files and database tables will be created for you automatically. (Database tables will be created with the table prefix you are currently using.)
- Remember to delete the ManagerInstall folder from your site when done installing the system.
- Create a link on your site to go to the new application process examples - www.yoursite.com/index.php/pilotmanager -or- <?php echo url('/pilotmanager'); ?>
To Only Show Link To Staff Members With Access:
<?php
if(Auth::LoggedIn())
{
if(StaffData::verify_staff(Auth::$userinfo->pilotid))
{echo '<a href="'.url('/pilotmanager').'">Pilot Manager</a>';}
}
?>
To Link To Staff Members Display Page:
<?php
echo '<a href="'.url('/staff').'">Staff</a>';
?>