Jump to content

Parkho

Moderators
  • Posts

    1381
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Parkho

  1. Okay! You'll have to go to admin center, click on the News $ Contents/Downloads then create a group and add a download to the group where you'll have to provide the info as well as the download link. Then the download page will show your download.
  2. Before the upload, did you have some codes in those pages you created? If yes, make sure to put the code back in there. If it didn't help, delete the page and re-create it with the codes to show.
  3. Make sure you have the table created in your DB. Also I think the table name has been changed. and NO you don't need an actual flight to be able to transfer. One more thing, If you have the old version, make sure you get the new modified V1.0 from Github, it has changed a lot.
  4. 1. What do you wnat to sort for schedule results? 2. The reason is that you have those aircraft in 4 different schedules, I will look into it to see if I can change that. 3. Thanks I will change that first chance.
  5. Believe it or not i have tried all ways with no luck.
  6. Here is the fspax config file. Sorry, I'm unable to give you the DB PIREPS table with the modification since my older website is long gone and I could give you this file from the last back up of my older website but I think you can figure it our, no big deal. Also, I can tag along and help you set it up. fspax.zip
  7. I have integrated the fspax log into phpvms modifying the pirep table and the faspax config file to insert each line of the log file into a separate DB field then I managed to basically get rid of the "n" in front of each log data.
  8. yep! That's another way. You can add this to code snippets section if you want.
  9. if you think you won't use those airports ever again, then you'll have to do two things to remove them for good: 1. Delete the airports from your DB totally. 2. Delete all schedules you have created for those airports * You can either use the admin center for this or your DB. But if you want them to be there just in case for future use then you're gonna have to write some code and say if $airport->name == "LLLL", continue here is an example: foreach($depairports as $airport) { { if($airport->icao == "ABCD") { continue; } echo '<option value="'.$airport->icao.'">'.$airport->icao.' - '.$airport->name.'</option>'; } Now "ABCD" is the ICAO of the airport you want to exclude.
  10. 1. Noted and fixed. thanks 2. I have to look for it and let you know.
  11. 2.You're missing the script that gets the info for you. 1. I'm not following you on this. That space can be simply removed.
  12. Okay.
  13. Both issues noted and fixed thanks again. The images also have been added to the repo in lib/images folder in case you want to use them. remember to upload them in lib/images in your phpvms folder.
  14. 1. Open common/RealScheduleLiteData.class.php and look for the following: realschedulelite_location And change all of them to the following: flightbookingsystem_location BTW, thanks for pointing that out. I fixed the problem.
  15. 1. Have you imported the SQL provided with the download into your DB? 2. Have you copied the following in your core/local.config.php? 3. Fuel per hour and per 100 nm can be set in schedules_results.tpl. Config::Set('JUMPSEAT_COST', '.25');
  16. That's right but you may also want to add something that's not added in those AFCADS like a "Transfer Bus" or a "Light Pole". Also some airports are like getting updated monthly. I have searched for some airports and there are nothing in AVSIM or FLIGHTSIM for them and nor there are in the internet, so that where i can provide this service.
  17. You're welcome.
  18. Use $pirep->code instead of $flight->code.
  19. I didn't realize the code is for one pilot, so I just gave you the code to show by airline and I'll be around if you need more help.
  20. The code in the post you mentioned has the following part: <?php $flights = PIREPData::getLastReports($userinfo->pilotid, '10'); $string = ""; foreach($flights as $flight) { $string = $string.$flight->depicao.'+-+'.$flight->arricao.',+'; } ?> Now change it to the following: <?php $flights = PIREPData::getLastReports($userinfo->pilotid, '10'); $string = ""; foreach($flights as $flight) { if($flight->code =="ABC") { $string = $string.$flight->depicao.'+-+'.$flight->arricao.',+'; } } ?> "ABC"is your airline code.
  21. haha! To be honest I myself would like to release it very much but there is this glitch with it that I don't know why I can't figure it out but I'm asking you for patience hope that I can make it happen.
  22. v2 still has some bugs, so you can have it but with bugs.
  23. Yes. Once I release it but I'm afraid it's gonna be a payware.
  24. Are you the one who installed the software or somebody gave you permission for admin?
  25. I think you didn't install the module correctly. This means the module folder is not where it's supposed to be. You might want to check if the folder pfinance is in lower case or upper in the download and make sure you have uploaded them in order.
×
×
  • Create New...