Jump to content

Parkho

Moderators
  • Posts

    1375
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by Parkho

  1. I have to look into it and let you know. Maybe in the next version.
  2. Yes that's possible.
  3. You can change the email address of your VA, in General settings in admin center
  4. That's correct but I wanted it to be available to admins only and to be seperated from mass mailer.
  5. It shows all the pilots regardless of any pireps submitted.
  6. A little module in admin center for those who want to send a PIREP warning email. Install: 1- Unzip in the order of the folders. 2. Add this to your core_navigation.tpl in admin/templates for the access: <li><a href="<?php echo adminurl('/pilotmanager');?>">Pilot Manager</a></li> 3. Cahnge your local.config.php this part: Config::Set('PILOT_AUTO_RETIRE', true); Config::Set('PILOT_INACTIVE_TIME', 90); To your desire days like this: Config::Set('PILOT_AUTO_RETIRE', true); Config::Set('PILOT_INACTIVE_TIME', 3); 4. Access it by clicking on "Pilot Manager" under "site & settings" Pictures: *There's been an update* Download at Github: Github.com/parkho
  7. Parkho

    PirepList_V1.0

    This module is for those who have multiple airlines. What it does? It lists PIREPS based on the chosen airline rather than listing the long list of all pireps. Install: 1. Unzip in the order of folders(If you have different skin, copy . tpl files into skin folder). 2. Access by <?php echo url('/airline') ;?>. 3. Enjoy Pictures: Download at Github: Github.com/parkho
  8. Look into schedules_result.tpl, It's now based on pilot's last location, so you need to remove the filter for pilot's last location.
  9. First you need to add a column for the status like this: <th align="center" background='images/tables/tableheading.png'> <font face='Verdana' size='2' color="#000000">Status</font></th> Then inside the foreach() for PIREPS you need this: if($pirep->accepted == PIREP_ACCEPTED) echo "<td align=center background='images/tables/board.png'> <font face=Verdana size=2 color=#000000>Accepted</font></td>"; elseif($pirep->accepted == PIREP_REJECTED) echo "<td align=center background='images/tables/board.png'> <font face=Verdana size=2 color=#000000>Rejected</font></td>"; elseif($pirep->accepted == PIREP_PENDING) echo "<td align=center background='images/tables/board.png'> <font face=Verdana size=2 color=#000000>Pending</font></td>"; elseif($pirep->accepted == PIREP_INPROGRESS) echo "<td align=center background='images/tables/board.png'> <font face=Verdana size=2 color=#000000>In Progress</font></td>";
  10. You might want to check this module out: Random Itinerary Builder
  11. Create a page in admin panel and click on the source button to insert the code for your gallery. Now link your page to the "Gallery" at the bottom of your website. For the gallery you're gonna have to find free code or purchase one. Good luck.
  12. Delete the PIREP in DB directly as sometimes the function for deletion gets stock or doesn't update the corresponding table. You could also go to common folder and look for the PIREP deletion function in PIREPdata.class.php file and try to solve the problem there but I wouldn't suggest it if you don't have PHP knowledge.
  13. Try this and see if it's any good. FlightBookingSystem
  14. Parkho

    Bandwidth

    For the software and the airline it's good enough but for the forum it depends on how busy it is going to get.
  15. The login module actually has a separate page. If you need to put it in a frame with different color you need images and tables to do so. I'm not sure if I get correctly but see image below to see what I mean:
  16. Not sure if this is gonna work but you could make a backup of your DB and install the PHPvms then try to import your tables data one by one into the new DB. Remember this is not tested and there might be some errors importing the data. The other option like Eddie said is to go manually! Good Luck
  17. New Update: Options for "Airline", "Departure", and "Arrival have been added to the search form. People who have downloaded the old zip file can download again and just replace the "airport_search.tpl" file.
  18. You mean removing you bids when you see the results for your search?
  19. Yes he can. But he's to change his location to the HUB at first for the system to recognize his first location. That means this system needs the first location to function correctly.
  20. So! It shows all the schedules on that date? or on a time period? Cause I pasted the code in a separate page and noticed it doesn't make sense!
  21. Is this looking for the Bids or just picks up some random flights? Can you explain how it works?
  22. I got your first post today. So did it work?
  23. It's workinf just fine. Make sure you've added those airports in admin center before using the module. Proof:
×
×
  • Create New...