Jump to content

simpilot

Administrators
  • Posts

    2773
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by simpilot

  1. You should be using something like this to make the info display in the table <?php echo PilotData::GetFieldValue($pilot->pilotid, 'VATSIM ID'); ?> To change how the pilots are sorted find line 85 in PilotData.Class.php -> Should be: ORDER BY p.pilotid DESC"; Change it to: ORDER BY p.pilotid ASC";
  2. You would have to use a frame or such to include the page on your site. I think you would be better served to find the xml or rss feed for the data and parse that directly into your own page and display the items you want to. I was looking for the same thing for airport delays and ended up using the xml feed from the FAA airport status page like this ->http://phpvmsdev.simpilotgroup.com/index.php/Content/delays
  3. Delete button is on the list for next release The tracking as to what routes etc.. vs what tests have been taken can be done. I will have to think about it. Do you have the ranks tied into your available schedules now? I think that is how it would all have to tie together....
  4. google - smf forum ssi.php all the functions you are looking for already exisit in smf forum boards to display latest posts and other info from the forum on your website
  5. What version are you running? If it is below around 785 it will not support the new beta2.1 which I am guessing is the issue. You can remove the CodonData to bypass the error but there are other functions that will not work unless you are updated past 785.
  6. One small bug found -> When deleteing a sent item it does delete the item but takes you to a non existant template. Open Mail.php and find lines 152-153 $this->set('mail', $result); $this->show('mail_deleted.tpl'); Remove and replace with -> header('Location: '.url('/Mail/sent')); That will take you back to the sent box.
  7. AIRMail Beta 2.1 released -> http://forum.phpvms.net/index.php?topic=1557.0
  8. pagination maybe...
  9. AIRMail Beta2.1 The release version (700) of phpVMS will not support AIRMail Beta 2.1 ! The beta version above 785 will support the AIRMail Beta 2.1 system. New Features 1 - Mail sub folder creation 2 - Code updated to reflect new module structure for next release 3 - Protected functions for data posting To Use the "You Have Mail" function place the following code where you would like the notice to appear, it will only appear if the pilot is logged in. <?php MainController::Run('Mail', 'checkmail'); ?> To Install 1 - Download the attached package 2 - Unzip the folder and place the files in their appropriate places in your phpVMS install 3 - Run the airmail_new_install.sql file in your phpVMS database using phpmyadmin or similar (If you have been testing the first version (AIRMail Beta) you will have to drop the existing airmail table and replace it with the airmail_new_install.sql file, many changes have been made since the first beta and the new edition will not work within the old db table) If you have been using AIRMail Beta2 you need to use the airmail_update.sql file to update the existing table and add a new folders table. 4 - Create a link on your site for your pilots to access their AIRMail The main link has changed for previous versions! <a href="<?php echo url('/Mail'); ?>">AIRMail</a> 5 - Existing installs of AIRMail can delete the mail_deleted.tpl and mail_sent.tpl files from the templates folder they are no longer used. AIRMail_beta2.1(lic).zip
  10. Working on that one for the next release - An entrance exam.
  11. I am on msn
  12. put a print_r($allpilots); right at the start of the page and refresh it, see if any of the pilot data is there. Also - did you update the MailData.Class.php file when you updated everything else?
  13. Can you pastebin the template you are using for mail_new.tpl so I can look at it
  14. Is it an empty drop down or no drop down at all? I have it running on a beta past that version without any issue.
  15. Hi Eddie - did you update all the files from the first beta with the files for the second one? The first version did not have a drop down for pilots. Also, what version phpVMS are you running, I think I may have to do some work to adhere to the newer beta structure for modules.
  16. simpilot

    Bids page

    http://pastebin.com/m4151bb09
  17. simpilot

    Bids page

    http://pastebin.com/d523acb47 try this
  18. simpilot

    Bids page

    OK - The issue is at the start of the file - the echo never gets closed and you reopen php again without closing it. Hang on and I will pastebin a new one.
  19. simpilot

    Bids page

    line 26 as well <tr id="bid<?php echo $bid->bidid ?>"> add semi colon <tr id="bid<?php echo $bid->bidid; ?>"> also eariler post should have reffered to line 27 not 29 - sry also also on line 29 <tr id="bid<?php echo $bid->bidid ?>"> add semicolon <tr id="bid<?php echo $bid->bidid; ?>">
  20. simpilot

    Bids page

    line 29 <td><?php echo $bid->code . $bid->flightnum; ?></td> change to: <td><?php echo $bid->code .' '. $bid->flightnum; ?></td> Think that should fix you up
  21. Does anyone know what the address to the IVAO whazzup file is? I can not seem to find it. ??? Thanks edit - nvr mnd - found it
  22. It will not work on the 700 release, I have used some commands that are not available until the later beta versions of phpVMS. It should work for you when/if you update your system. I am cleaning up the code for the EXAMCenter now and making all the functions refelect the new module structure that Nabeel has put in place.
  23. I will try and get a version 700 install going and see what I come up with... Have you tried reloading the files, maybe something was corrupted.
  24. kimis - I follow you with your first 5 but #6 I do not... You mean the database field that holds the question or the number of questions on an exam? As far as the number of questions on an exam you can assign how ever many you would like, the only restriction is that there is at least one assigned in order to activate an exam. If you mean the length of the question text, there is no limit in the db field, you should be able to put how ever much text in that you would like. Try just typing http://www.yoursite.com/index.php/Exams into your browser address bar and see what happens. If the systems comes up then it is in the syntax of your nav panel. If not I would double check and make sure all the files are in the right places within the system. Also, I have not tried this on ver 700 - I rebuilt my server and am running php 5.3 which ver 700 produces a lot of errors in due to depricated php commands.
  25. What version of phpVMS are you running? Are you on the release(700) or one of the betas?
×
×
  • Create New...