Jump to content

Parkho

Moderators
  • Posts

    1381
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Parkho

  1. Are you using the live fuel?
  2. It could be the skin. Ask them what browser they're using.
  3. Got you! I edited my last post . Sorry!
  4. In the acarsmap.tpl changing the number 10000 to 5000 should work just fine.
  5. I will share it ASAP
  6. Okay! I'm only accepting FSPAX at my VA and that's why I'm able to accommodate the pointing system knowing that the other ACARS won't do that for me. That's the reason I mentioned if you want to switch to FSPAX!
  7. You mean the pointing system?
  8. Example, I do a flight send the PIREP with KACARS then I get only the hours in profile. Now I want the points too, so i have to send the same PIREP with FSPAX so that i can get the points into my profile and together with the flight hours, I'll go to the next Rank. Is that what you mean? if yes then that's a little bit hard for me.
  9. I believe so, just needs a little piece of code to pull that out. I think the code has to go through the PIREPS and finds the PIREP's source and from there count them accordingly. It's doable. One thing to be noted is that the pointing system is not working with KACARS, so if you want your rankings based on points and hours then that's gonna be a trouble for you.
  10. Here you go.
  11. Well! I'm all ready to set you up just give me a buzz if you decided to use FSPAX. Also, I can send you some pix of the pilot profile on both public and private to give you an idea how it looks.
  12. I don't have any problems with that part! Have you tried yours lately? and if yes could you explain how.
  13. Check you folder and file permission on you server, looks like you have some reading issues on modifying folders and files.
  14. Hi All Anybody interested in the topic, let me know and I'll set you up. Of course you're gonna have to use the FSPAX PIREP sending method. Cheers.
  15. lol! I just registered at your VA with M. Mousavi! to test it, could you please kindly remove that from your pilot DB? Oh! Glad your problem was solved thank to Joeri.
  16. make sure the tables were created properly in your db. Check the db to see if you have any registered pilot such as yourself in pilots table.
  17. Okay! First you need to tell us what you have been editing.
  18. The landing rates go to PIREPS table in the DB. The only thing I can think of for you is to go there and delete the PIREPS you don't want or you can edit the rows for landing rate column and clear the content. This way you still have your PIREP there but without the landing rate. If you're looking for a code to do that for you automatically, then you're gonna have to search the forum or ask someone to write the code for you.
  19. The path is : core/templates/profile_main.tpl (edit with notepad) and the code you need to delete on line 67 is this: <li><a href="<?php echo url('/finances');?>">View VA Finances</a></li>
  20. Okay! You need to get IVAO ID from the field you're adding like this http://status.ivao.aero/R/<?php echo $userinfo->field; ?>.png
  21. First, you have to get the code for that image from IVAO website. Secondly, after you got the code, you need to decide whether to put it on the front page or on the side bar and paste the code there.
  22. Okay! Here is what I designed for the .tpl. BTW I'm using FSPAX as my PIREP, so if you guys ever wanted to switch to FSPAX pirep system, let me know and I can give you the required files. We also have the FSPAX pilot pointing system at our airline which I can share as well.
  23. Yes exactly the same here.
  24. Yes it;s working. But how can I get it to show aircraft name instead of aircraft ID?
  25. # 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']; $depicao = $pirepdata['depicao']; $arricao = $pirepdata['arricao']; $aircraft = $pirepdata['aircraft']; $flighttime = $pirepdata['flighttime']; $landingrate = $pirepdata['landingrate']; $source = $pirepdata['source']; $comment = $comment; Template::Set('pilotfirstname', $pilotfirstname); Template::Set('pilotlastname', $pilotlastname); Template::Set('code', $code); Template::Set('flightnum', $flightnum); Template::Set('depicao', $depicao); Template::Set('arricao', $arricao); Template::Set('aircraft', $aircraft); Template::Set('flighttime', $flighttime); Template::Set('landingrate', $landingrate); Template::Set('source', $source); Template::Set('comment', $comment); $sub = 'PIREP Report - '.$code.''.$flightnum; $message = Template::Get('email_pirep_info.tpl', true); Util::SendEmail($email, $sub, $message); Okay. Change the code in PIREPData.class.php to the one above. It's tested and working.
×
×
  • Create New...