Jump to content

Parkho

Moderators
  • Posts

    1381
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Parkho

  1. You also need to change what's in your .tpl to the following: Dear <?php echo $pilotinfo->firstname. ' ' .$pilotinfo->lastname?>, Your pirep has been accepted. To view it, visit: <?php echo SITE_URL;?>/index.php/pireps/view/<?php echo $pirepdata->pirepid;?> Thanks! The <?php echo SITE_NAME;?> Team
  2. Yes, but you'll need to find the filePIREP() function and place it in there, right now you're in updatePIREP() function
  3. I have something that sends an email of the submitted PIREP to the pilot. Maybe you can change its code to send the email when PIREP is accepted. It's actually pretty easy to do. Here, try this but I haven't tested it: # Send an email to the pilot who submitted that PIREP //PILOT INFO $pilotfirstname = $pilotinfo->firstname; $pilotlastname= $pilotinfo->lastname; $email = $pilotinfo->email; //PIREP INFO (This all goes into the email, we will need to add those into the TPL $code = $pirepdata['code']; $flightnum = $pirepdata['flightnum']; Template::Set('pilotinfo', $pilotinfo); Template::Set('flight', $pirepdata); $sub = 'Flight Report for: '.$code.''.$flightnum; $message = Template::Get('email_pirep_accep.tpl', true); $pireps = self::getLastReports($pilotinfo->pilotid, 1); if($pireps->accepted == "1") { Util::SendEmail($email, $sub, $message); } Now you need to make a file named "email_pirep_accep.tpl" and write in there whatever you want to tell your pilots about their PIREP and you need to add this to your PIREPData.class.php inside the function filePIREP() around line 800. Mine is at line 842 Let me know if it works or not Salamaty
  4. Did you see pilot information like the hours and total money before the crash? Several things might have happened, maybe a Virus from your side was trying to get into their server and they blocked and suspended the whole account or a Hacker might have gotten in and did things to mess it up. It happened to me like a year ago and I had to redo almost everything but I had the back up of pilot's data, so hopefully your case is not this.
  5. Check your DB to see if the tables are still there.
  6. Okay. If you want to upgrade, you're gonna have to follow instructions on readme file in the download.
  7. Remove this part anywhere you see it Util::FormatDuration().
  8. Why would you wanna rename the .tpl to .php? If you do that, your website will be completely ruined.
  9. That's okay if you can modify this but first I'll want to get the forum's opinion before I release it.
  10. Take a look at the new system here:
  11. Okay. Here is what mine does, you add 2 schedules with B738(IS-XXA) from LYBE to LOWW and LYBE to LOMM. Now let's assume you're at LYBE, so you go to book a flight and the system will show you the flights you just added and you choose to go to LOWW and hit the add bid button and the flight is booked. Now the other flight with the same aircraft is also booked and others won't be able to see that flight when they're booking. Also, once you send your PIREP, the aircraft is now moved to LOWW and the bid is removed but still the other pilots won't be able to book the flight at LYBE cause the aircraft is not there instead if they go to LOWW then they will be able to book the flight from LOWW.
  12. If i understand it correctly, you mean that schedules show up at first and the pilot chose one and then the next page inserts the aircraft to the route an lock it!.
  13. Take a look at this it might be helpful. http://forum.phpvms.net/topic/7930-kacars-free-guide/
  14. It's actually like what you mentioned except for the part that takes you to the aircraft page. I thought of that but found it pointless since it can be implemented in the first page. About kACARS, I can write a code to check if the aircraft in kACARS matches the aircraft in the booked flight and if it's different then the system rejects the flight at the beginning.
  15. Dear All, I am to announce that the new flight booking system is now ready to be published. The new system has a new look and is based on aircraft position. Now before it can go for publication, I will need to get some opinions about this and its new features as follows: 1. The first time you open the module it will set your location and the aircraft to your HUB. 2. The pilot, then, have a choice of available aircraft at their location. 3. Then the pilot gets to another page to bid on their flight where they can see the details of the flight clicking the flight ID. 4. The pilot places the bid. 5. The aircraft that they chose is now locked in all schedules with the same aircraft. 6. As soon as a bid is placed, all the bookings and searches disappear until the bid is removed. 7. Other pilots won't be able to bid on any schedules that have the same aircraft. Please make a time to answer to the poll for this matter as it is very important to me to get the forum's opinion on this. Also, i would appreciate any negative or positive points received about this new booking system and am willing to make changes accordingly before publication. At the end, Your respond to this is greatly appreciated and I hope to receive your ideas nay time soon. Respectfully Parkho
  16. That means you're missing the module folder or have it misspelled. Remember that the module folder names are case sensitive , so create it as it is in the download.
  17. oh I see that now. I thought maybe the "FormatMoney()" function should be used at the end and that's why there were no results. Thanks for pointing that out. Salamaty
  18. So is it working?
  19. yw
  20. Persians say "Salamaty" means Cheers
  21. if($pirep->landingrate == "0") { echo '<td> No record </td>'; } else { echo '<td>'.$pirep->landingrate.' ft/m </td>'; } Try this
  22. Instead of this: echo '<td>'.$pirep->landingrate.'</td>'; Write this: if($pirep->landingrate == "0") { echo '<td> No record </td>'; } else { echo '<td>'.$pirep->landingrate.' ft/m </td>' }
×
×
  • Create New...