Jump to content

DisposableHero

Members
  • Posts

    617
  • Joined

  • Last visited

  • Days Won

    97

Everything posted by DisposableHero

  1. Probably you will be hitting MySQL/MariaDB's placeholder limits with my module's stat service, it tries to read all accepted pireps and pirep fares to get the pax/cargo counts. If this is the case we can look further to improve that logic with only laravel relationships. Looping thought 170k pireps to get the total count may take some server time though, but we will see how it goes. Another solution would be limiting that feature with 65k pireps, so pax/cgo counts will not work on your setup but will be present on others until they hit 65k pireps
  2. Checked flight import code, if the distance is not supplied (empty, null) importer is designed to auto calculate @nobleord ... If it is not working please open a bug report instead of a feature request Safe flights
  3. Of course, there is a Feature Request option at GitHub, also bug reporting is possible, both being tracked and discussed there. https://github.com/nabeelio/phpvms/issues/new/choose https://github.com/nabeelio/phpvms/issues Safe flights
  4. It is auto calculated when creating a new flight via admin interface but not during import as far as I remember.
  5. Yeah we already have "Total Pause Time" in pirep field values, but the OP's question was not about pause, also pause is not counted as flight time as expected. What he wants is simply eliminating sandbaggers with some automation.
  6. Did somebody claimed that being an admin would be fun (or not boring, not time consuming) ? You are trying to go the same path with some others, I should not do anything, everything should be automatic, why I am working for this etc. etc. Then I would ask the above question After all, you can have some code to auto reject pireps by comparing planned (scheduled) flight times with actual flight times (side questions; what will happen to free flights, flights without simbrief plans to precisely check times, flights planned for different aircraft types). In the end, this will have side effects though, then you will work to fix the mis-identified ones 'cause a code will never know the difference between sandbagging and real holding (as it is not an AI with tons of resources). It will only look to your schedule and reject a non matching pirep. And when this happens, you will come here again to ask for another feature for inspecting and identifying, correcting those to reduce your workload Still my advise is same, punish and fire them, this will greatly reduce sandbaggers and you will have a clean roster after a while. Safe flights
  7. What kind of possibility you are after ? If someone is doing unnecessary holdings, waiting at the gate for hours after landing (gaming term : sandbagging) only option is to reject their pireps (as ProAvia suggested) manually and kick them from your VA (if you are really sure about their actions). You can NOT automate this with a software (here in this forum it is phpvms and vmsacars), so it will NOT be possible unless you come up with an AI, reading your pilots mind, getting all other info (like online traffic, IVAO/VATSIM ATC chatter, weather etc.) and decide if he is sandbagging or holding for something really necessary. Safe flights
  8. You are getting mixed content errors because your .env is set to use http (insecure content) but your register page uses https (secure content). Fix it and your early stage showstopper will be gone. (Or you can allow cross origin scripting for your domains.) And thanks for replying to a 3 year old topic
  9. Which part ? Send the log please if it is something Disposable related , either theme or module, I need full error details with stacktrace (your laravel log) to find it out (and solve if possible)
  10. Depends on what you are asking, 65k limit is applicable for queries not database entries... So if the above query contains more than 65k entries in that IN (...) statement then yes it may fail, but this can be handled with batch inserts or optimized queries etc. Anyway, database can handle way more than 170k entries, so your pirep count will not be a problem but importing (handling : reading - processing - saving them with php and queries) can be a real pain. I would suggest opening a bug report via GitHub or tag @Nabeel, he was improving the import code, maybe he can check this issue too.
  11. You do not need to lookup airports one by one @MichaelTrickett, as explained in the pinned guides you can just import your flight schedule. phpVMS v7 is capable of auto lookup for airports and adding them to your database with proper information. Please check your settings and check the guides Safe flights
  12. He may be switching his install to v7, or maybe working on a navdata package for v7 Hope he continues to support v5 though, it is nice to keep the community rolling.
  13. Dear Michael, unfortunately your airport file may cause problems with v7 during usage (not during import). Instead of using the same IATA code for airports not recognized by IATA, you should be leaving that field empty (v7 allows null iata codes as it is not required). Also you have an airport with `\N` as ICAO code, which is strange. This will cause problems 'cause ICAO code is necessary and must be unique, `\N` is not something suitable as an id. // Example from your file; KGKY,\N,Arlington Municipal Airport,Arlington,United States,America/Chicago,,32.66389847,-97.09429932,,,,, // Proper csv format (with null iata and ISO country code) KGKY,,Arlington Municipal Airport,Arlington,US,America/Chicago,,32.66389847,-97.09429932,,,,, // This is not right too; \N,\N,Sun Island Resort and SPA,South Aari Atoll,Maldives,America/Sao_Paulo,,3.488334,72.862989,,,,, Additionally having countries with ISO 2 Letter codes was the preferred / standard way, having them imported with full names may cause compatibility issues too. (By default, v7 lookup imports them with ISO codes) Other than above mentioned issues, it looks fine. At least for someone trying to import lots of airports at once instead of having them automatically looked up and added whenever required/necessary. Hope this helps.
  14. Please check readme https://github.com/FatihKoz/DisposableTheme#customizing-va-logo-images-and-menu-items https://github.com/FatihKoz/DisposableTheme#readme
  15. Dear Zabeed, you should contact AVA staff for support, we can not help you to configure their acars software... They will know airline specific details, not us. If they are using vmsAcars, you can find detailed docs here : https://docs.phpvms.net/acars/user-guide Hope you can get support from your airline, safe flights.
  16. Sorry ? What you are trying to achieve and what is the error, could you be a little bit specific... Normally, you download the software from vmsHost.io, it will be under your account and accessible only by you (if you are the user at vmsHost.io who bought the license for the VA)... then you upload that package to your server, somewhere which can be accessed by your pilots publicly. Then you get that new link and insert it to anywhere you need, distribute via your discord or use that link in vmsAcars module as the download link, or you can add it as a file/link for your VA's downloads etc. No need to define redirects etc. Hope this helps
  17. Which part you need help with? Maybe we can guide you... Docs are pretty clear, we had some step by step instruction with screenshots at Discord too (needs some search). Also you can check Paid Services section to find someone if you are willing to pay of course. Good luck
  18. How ? By editing the files you bought or by requesting the change from the provider ? Either way, glad to hear the result
  19. Technically, that sites should update their export systems and be compatible with latest changes... This was discussed many times before, most of the time it is just a new field being introduced in v7 due to requests or system changes, but the schedule support selling sites fall behind of the current changes and their files fail. So, what you can do is simple... Export files (for example subfleets or aircraft) from your updated v7, compare the exported file against the file they provided. You can easily spot the difference, edit your file to follow latest changes/additions and import. Even after this change you are getting errors, double check your edits and file structure, also double check the import you are trying. Many time I saw people trying to import aircraft to subfleet or vice versa (which will fail even with 100% legit files). Good luck
  20. Block the ip range @William, as Google's ReCaptcha was broken by bots many times in the past, you may be witnessing another time this is happening.
  21. https://github.com/FatihKoz/DisposableTheme/blob/0d845490d05ef6c015011fe4a6156fdf5f18b911/resources/views/layouts/Disposable_v3/theme_helpers.blade.php#L173-L188 Enjoy
  22. Try developer console of your web browser (typically it will be enabled by pressing F12 for Windows browsers) God speed and good luck for the rest
  23. Depends on the certificate issued (or the one you need)
×
×
  • Create New...