Jump to content

mark1million

Moderators
  • Posts

    2284
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by mark1million

  1. Its been my pleasure Thank you for the the great piece of work that is "phpVMS"
  2. Have you downloaded the ini file and put that in the right place? I would use kACARS much more stable.
  3. Yeh i got the same just manually put it in yyyy-mm-dd is the format. The other thing is any chance of increasing the description limit? Another beauty from Dave Thanks Simpilot
  4. Excellent Sim pilot i will give that a whirl now
  5. Is there a way to add this to the pilots view pireps, i have have had a request to have a "add bid" to the viewed pirep, i have added this code but it just gives me invalid route, what is the variable i need to pull this from?
  6. Yeh mine is OK now the problems with the nav has gone Thanks Nabeel must nearly be ready for release now?
  7. Im just about to put on my dev site and i have confidence Will post back once done
  8. Cheers, Thanks for that
  9. Hi Ben, you can just take out the hours in the ranks then nothing will be automatically issued, or just remove them all together, as for the manual additions you can just add those to the awards section in the admin section and manually issue them when required.
  10. Hi is there a quick way of displaying the current flight bids on another page just like they are in the admin section?
  11. Silliness number 2 http://www.easyjetva.com/index.php/Finances Ouch.....
  12. just changed back to the crystal skin and its doing the same there as well.
  13. To be honest Nabeel im not sure what its doing, i have removed the one from the template core folder and its still the same, i have just created another page from the admin section and it has also duplicated the navigation tpl links, strange. **stock one is duplicated as well**
  14. Nabeel i think i have found the problem, i have the core_navigation.tpl in the core templates and the skins folder for some reason. Skins Folder <li><a href="<?php echo SITE_URL ?>/index.php/Frontpage">Home</a></li> <?php if(!Auth::LoggedIn()) { // Show these if they haven't logged in yet ?> <li><a href="<?php echo SITE_URL ?>/index.php/registration">Register</a></li> <?php } else { // Show these items only if they are logged in ?> <li><a href="<?php echo SITE_URL ?>/index.php/profile">Pilot Center</a></li> <li><a href="<?php echo url('/Exams') ?>">Exam Center</a></li> <?php } ?> <li><a href="<?php echo SITE_URL ?>/index.php/pilots">Pilots</a></li> <li><a href="<?php echo SITE_URL ?>/index.php/acars">Live Map</a></li> <?php echo $MODULE_NAV_INC;?> <?php if(Auth::LoggedIn()) { //if(Auth::UserInGroup('Administrators')) if(PilotGroups::group_has_perm(Auth::$usergroups, ACCESS_ADMIN)) { echo '<li><a href="'.SITE_URL.'/admin/">Admin Center</a></li>'; } ?> <?php $admin = ExamsData::check_admin(Auth::$userinfo->pilotid); if ($admin->admin_level >= '1') {echo '<li><a href="'.url('/Exams_admin').'">Exam Center Admin</a></li>';} ?> <li><a href="<?php echo SITE_URL ?>/index.php/login/logout">Log Out</a></li> <?php } ?> Core Template folder <li><a href="<?php echo url('/'); ?>">home</a></li> <?php if(!Auth::LoggedIn()) { // Show these if they haven't logged in yet ?> <li><a href="<?php echo url('/login'); ?>">Login</a></li> <li><a href="<?php echo url('/registration'); ?>">Register</a></li> <?php } else { // Show these items only if they are logged in ?> <li><a href="<?php echo url('/profile'); ?>">Pilot Center</a></li> <?php } ?> <li><a href="<?php echo url('/pilots'); ?>">Pilots</a></li> <li><a href="<?php echo url('/acars') ?>">Live Map</a></li> <?php echo $MODULE_NAV_INC;?> <?php if(Auth::LoggedIn()) { if(PilotGroups::group_has_perm(Auth::$usergroups, ACCESS_ADMIN)) { echo '<li><a href="'.fileurl('/admin').'">Admin Center</a></li>'; } ?> <li><a href="<?php echo url('/logout'); ?>">Log Out</a></li> <?php } ?>
  15. All its calling in the core navigation, <li><?php Template::Show('core_navigation.tpl'); ?></li> Its the same template in all the site. The only pages with duplicate entries are the additional pages i have created from the admin section the normal frontpage is fine for example.
  16. One thing that is happening also is just the additional pages that were created the links are duplicated. Other pages are fine it just seems to be pages that were created from the admin section. Apart from that everything else seems OK and to be working.
  17. Im trying to get my head around this post, it seems all over the place, if i can be of assistance Valdis please let me know. Maybe a good starting poing would be to re-download and then upload to your server and run the checkinstall.php and checkdb.php then post the results here.
  18. Renamed file already in the folder for such an occurrence
  19. contact_form.tpl Add this where you want the dropdown, <td><strong>To whom:</strong></td> <td><select name="recipient"> <option value="your email" selected="selected">Please select</option> <option value="your email">Flight Operations</option> <option value="your email">IT Support</option> <option value="your email">Human Resources</option> <option value="your email">Events</option> <option value="your email">CEO</option> </select> </td> Edit, core/modules/contact/contact.php Find this Util::SendEmail(ADMIN_EMAIL, $subject, $message); Replace with this, Util::SendEmail($this->post->recipient, $subject, $message); i started so ill finish
  20. Give me 5 and i will post the edits and code needed
  21. Hi, the code is here somewhere, im at work at the moment and cant look but its on here somewhere as i done it the other day on my site. You just need to modify the contact.tpl and the contact.php in the core modules if i remember right. Its a real easy mod to do just finding the post seems to be the hard bit
  22. Excellent I have a big event coming up and would be good to have this in place for that
  23. Nabeel, can you add the same sorting to the pilots list please (admin view all pilots), i have my own js table sorter but of course your is much prettier
  24. just give me a shout if you get stuck again.
×
×
  • Create New...