Jump to content

Vangelis

Members
  • Posts

    1076
  • Joined

  • Last visited

  • Days Won

    8

Posts posted by Vangelis

  1. Auto Accept/Reject Pirep


    Are tired of accepting or even rejecting pireps ? Then do not worry Auto Accept/Reject Pirep is here to help you

    It has a admin interface so you will be able to add

    1. The VA's admin pilot admin that declines the PIREP

    2. Function that searches the pirep log for custom criteria and decline the pirep

    3. Functionality that adds the reason why it was declined in the PIREP's Comments.

    4. Custom Reason why the pirep was decliened

    For Example Your Pirep has been rejected because you " Custom Text"

    5. Function that send an e-mail to admin and or to pilot when pirep rejected

    6. It is compartible with Simpilot's Plugin Manager


     

    • Thanks 1
  2. At the moment the only available ACARS for phpVMS v7 is the one that Nabeel the creator is selling . At the moment i am not planning to release a new version due to lack of time i believe i will be able to continue on the project in the next couple months 

    at the moment i would support Nabeel for the reason that he is working on the platform and he is worth the recognition 

    • Like 4
    • Thanks 1
  3. replace 

    <input type="text" name="arr">
    <input type="text" name="depp">

    with

    <select name="arr">
    <?php
            
            foreach($allairports as $airport)
            {
    			echo '<option value="'.$airport->icao.'" '.$sel.'>'.$airport->name.' ('.$airport->icao.')</option>';
            } ?>
    </select>
    <select name="depp">
    <?php
            
            foreach($allairports as $airport)
            {
    			echo '<option value="'.$airport->icao.'" '.$sel.'>'.$airport->name.' ('.$airport->icao.')</option>';
            } ?>
    </select>

     

  4. Ok i did a flight bid the schedule brief template is missing things some of them are 

    <input type="hidden" name="airline" value="<?php echo $schedule->code?>"> 
    <br>
    
    
    <input type="hidden" name="fltnum" value="<?php echo $schedule->flightnum?>"> 
    
    <?php $today = date("dMy");?>
    
    <input type="hidden" name="date" value="<?php echo $today?>"> 
    
    <?php $deptimes = explode(":", $schedule->deptime); ?>
    
    <input type="hidden" name="deph" value="<?php echo $deptimes[0]?>">
    <input type="hidden" name="depm" value="<?php echo $deptimes[1]?>">    
    
    <?php $arrtimes = explode(":", $schedule->arrtime); ?>
    
    <input type="hidden" name="steh" value="<?php echo $arrtimes[0]?>">
    <input type="hidden" name="stem" value="<?php echo $arrtimes[1]?>">
    
    
    
    <input type="hidden" name="reg" value="<?php echo $schedule->registration?>">    
    
    
     <input type="hidden" name="navlog" value="1"> 
    <input type="hidden" name="selcal" value="GR-FS">    
    
    <input type="hidden" name="planformat" value="lido">

    Have a look at the default template and compare it with yours 

  5. I cannot select an airplane during the booking also you have some template issues for example the search box is not working and keeps the page active , also the details page are to big ,the schedule brief template is missing things 

×
×
  • Create New...