About time right?http://phpvms.net/docs/downloadsBuild 321 (the V1 build!) Remember to backup and then restore your core/local.config.php** ** The build was 320 but is now 321, fixing a few installer errors *\ ***New Stuff/Changes
- Updated framework.
- New Admin panel, sidebar with integrated help, cleaner design.
- Aiports can be selected as hubs.
- Pilot selects hub on registration (admin can change).
- Admin viewing PIREP can see PIREPs only on their hub.
- API Documentation (http://www.phpvms.net/docs/api) for plug-ins.
- Public Pilot profile is available.
- Deleting schedule now asks “Are you sure?”.
- Admin can edit profile fields of a user.
- User edit tabs fixed up
- Added link to latest PIREP RSS feed in admin panel.
- RSS Feed for latest registrations
- RSS Feed for latest PIREPS
- Map size can be changed (see below “Additional Settings”)
- Pages enable/disable, public/private options.
- Admin panel sidebar shows some more stats.
- Code streamlining (massive!).
- MySQLi blocker bug fixed; allowed back as an option in the installer.
- Google map lat/long is centered when route is shown.
- If a page isn’t there (physically), error is properly displayed.
Updated Queries
ALTER TABLE `phpvms_airports` ADD `hub` SMALLINT NOT NULL ; ALTER TABLE `phpvms_pilots` ADD `hub` VARCHAR( 4 ) NOT NULL AFTER `location` ; ALTER TABLE `phpvms_customfields` CHANGE `public` `public` SMALLINT NOT NULL DEFAULT 'y', CHANGE `showonregister` `showonregister` SMALLINT NOT NULL DEFAULT 'y'; ALTER TABLE `phpvms_pilots` CHANGE `confirmed` `confirmed` SMALLINT UNSIGNED NOT NULL DEFAULT '0', CHANGE `retired` `retired` SMALLINT NOT NULL DEFAULT 'y'; ALTER TABLE `phpvms_pages` CHANGE `public` `public` SMALLINT NOT NULL DEFAULT '0';ALTER TABLE `phpvms_settings` CHANGE `core` `core` SMALLINT NOT NULL;
Additional Settings: The following can be added to your core/local.config.php to over-ride the default values: Add them at the end, before the ?> tags. local.config.php is not over-written during updates.
// Change the side of the Google Map which shows $Config['MAP_WIDTH'] = '600px'; $Config['MAP_HEIGHT'] = '400px';