Jump to content

Parkho

Moderators
  • Posts

    1381
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Parkho

  1. That's actually a good way to get this resolved but still the matter of it being somewhere it doesn't belong to still remains!
  2. New version is now up. Here are the list of news: 1. Pilot status changes based on the last PIREP sent. 2. Welcome email button has been added. 3. Status icons. 4. Pop up window added when the email has been sent. If the pilot auto retied is set to true, the status will change based on that too. Enjoy!
  3. The purpose of this module is to let the admin send warning or welcome emails to their pilots. It is now in development as I'm working on some more features to add to it.
  4. Are you using any skins rather than the default one? if yes copy result.tpl in your skin folder and see if it works.
  5. Please send me the result.tpl code, also you need to allow pop ups in your browser.
  6. First off thanks for the compliment. Secondly, I have included the images in the new .zip folder attached in the first page cause sometimes my website doesn't respond properly. If you're experiencing difficulties, check the modified result.tpl with the original one as the code may have been deleted somehow. Thirdly, the result.tpl can not be opened in a new window or tab outside the index.php as the functions inside won't work properly. However, it is opening in the new page but that's inside the index.php and the template. Cheers
  7. I have to look into it and let you know. Maybe in the next version.
  8. Yes that's possible.
  9. You can change the email address of your VA, in General settings in admin center
  10. That's correct but I wanted it to be available to admins only and to be seperated from mass mailer.
  11. It shows all the pilots regardless of any pireps submitted.
  12. 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
  13. 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
  14. 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.
  15. 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>";
  16. What do they have?
  17. I just noticed the same issue!
  18. You might want to check this module out: Random Itinerary Builder
  19. 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.
  20. 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.
  21. Try this and see if it's any good. FlightBookingSystem
  22. 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.
  23. 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:
  24. 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
  25. 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.
×
×
  • Create New...