Jump to content

DisposableHero

Members
  • Posts

    617
  • Joined

  • Last visited

  • Days Won

    97

Everything posted by DisposableHero

  1. Great, now it is more clear Specially the flags are ok, you want it like the flights page.
  2. Great news, now you have your own module and build on it whenever you need something special for your VA.
  3. Simple answer: Yes, it should be possible, you have all required details to generate a map. Detailed answer: What does "put the flag there" mean ? Could you please explain it a little bit more... Do you want to see all assigned flights (admin only, public), pilot oriented monthly assignments (pilots will see their flights only, with pirep checks) ? More info needed about your idea. Technically Disposable Basic has a Map widget, it can be used to generate a map for assignments maybe (I need to work on it when I find some time) but I need to understand it first. Safe flights
  4. Looks like your php extensions are not installed or your php is not configured properly to enable them. You may need to check php configuration documents (or hosting support docs) Good luck
  5. I think we can call it dead Even though I saw @LesJar active from time to time (both on forum and discord), no updates were posted about this project. So either the project is cancelled or he decided not to go public with it. Last info I get from him was nice though (about progress with some examples).
  6. What about setting it to auto accept (acars pireps) at rank settings and then rejecting only reports with a score lower than 75 ? It will be much practical and easier. Yesterday I shared an example and simple pirep evaluation listener (which can be improved and integrated to your own module for v7 easily), you can check it at phpVMS Discord. Or you can check below for a much simple example for your needs. <?php namespace Modules\YOUR_MODULE_FOLDER_HERE\Listeners; use App\Events\PirepFiled; use App\Models\Enums\PirepSource; use App\Models\Enums\PirepState; class Pirep_AutoReject { public function handle(PirepFiled $event) { $pirep = $event->pirep; if ($pirep->fuel_used->internal() < 5) { // Fuel Burn is less than 5 Pounds -> REJECT $pirep_state = PirepState::REJECTED; } if ($pirep->flight_time < 10) { // Flight Time is less than 10 Minutes -> REJECT $pirep_state = PirepState::REJECTED; } if ($pirep->source == PirepSource::ACARS && $pirep->score < 75) { // Score is less than 75 -> REJECT $pirep_state = PirepState::REJECTED; } // Check if this pireps need to be REJECTED, write the state back to model and save // Do not try to ACCEPT the pirep here as it should be handled by v7 itself, // Just set it to auto accept at rank settings and only REJECT here if you need to ;) // Save your time if (isset($pirep_state)) { $pirep->state = $pirep_state; $pirep->save(); } } } Good luck Important Note: For this to work, you need to have a custom module and it needs to be listening phpVMS v7 events. Some phpvms v7 development + laravel + php knowledge is needed, this is not something to copy and paste.
  7. As far as I know it is not a bug or error, it is how Asobo designed/wanted to have it and keeping it enabled (+ not providing an option to us to disable). Some Nvidia drivers had problems with postprocessing but not all Anyway, technically I do not think vmsAcars needs to write something to that file. So I think this can be solved at vmsAcars side @Nabeel, as long as it is readable it would be fine for acars too. Hope it gets solved soon
  8. If you need customizations for your va, best way to have all packed in a "module" (as MrJohn wrote) which can access all v7 data and integrate its results into v7 back. So in short, it is possible and it is way flexible than editing core of it directly. This includes theming too, you can have your own there too. Start with the docs (phpvms docs, linked at the top of this page), it will give you the basic idea and some links to follow (for deeper learning and details). It needs some time of course, but not impossible. Enjoy and good luck PS: Even for a simple route (a blank page for you to edit) I still suggest having your own module and RouteServiceProvider logic. This will give you the ability to update v7 whenever you need without any risks to loose changes.
  9. No thanks, you can simply delete or edit that private message. I did not read it, have no time to read/help either sorry. I still think the same, restricting public access directly from server (even for keeping eyes/people away) will not work well with most of the code running behind. If you really want to keep your initial setup private then you can use a local server and upload your final settings/theme/data to your live one just before opening it. Anyway, if configured properly mails do work fine (I am managing a VPS and using a shared hosting for my small group), better check your server and mail config (at VPS) then you can focus on phpvms env.php for mail settings (or maybe at config/mail.php, fi you need to enable disable some authorization related settings) Good luck
  10. Did you really tried using your password ? Even the error says you to check your API KEY... You should be using your API KEY along with your url, not your password. If you are using your API KEY but still getting this error check your vmsACARS module. It should be installed and your license key should be saved along with your module settings. Only after this step vmsACARS (client) can connect to your pvpVMS. All details can be found at docs; https://docs.phpvms.net/acars/install-server https://docs.phpvms.net/acars/user-guide Good luck
  11. I do not think that your server setup is completed and fully compatible with v7. Visiting your subdomain returns a 401 error and asks for password. This should not be the case for a public page, you may end up getting authorization errors over and there with a non proper setup. Better check your VPS setup and access definitions/restrictions. Good luck
  12. Which hosting provider you are using ? Do they provide email setup docs or support (with server and external email configuration details) ?
  13. There is no such version called 7.04 There is a beta4 which you should not use and there are dozens of warnings around about not to download/use it and there is the latest dev (development) build/version Kindly start from the beginning; Download latest development (dev) build, Delete everything from your hosting account (including the database you created before), Start the upload/installation again by following docs. All will be fine (if your host meets the requirements of course) Also you can check "Paid Services" section of this forum to find someone to help you for that. Good luck
  14. Kindly read Question 5 in below topic, it explains how to do that easily.
  15. Which version of v7 you are trying to install / use ? Are you trying to install an old version to a server running with php8+ ? If so, it will not work. New versions will not work with php7.4 too. So as @ProAvia advised you earlier, please follow the docs and install latest dev build and use it. (delete everything, including your v7 database, start from the beginning) If not (your hosting is limited and can not support php8+) then do not try to install and use old versions of phpVMS v7, you can not update them, you can not find modules / themes for them, you can not get support for them. Good luck and God speed
  16. I think you still have problems with your server... Latest v7 will NOT work with php7.4, it NEEDS php8 at minimum, php8.1 is recommended, double check docs and requirements as ProAvia mentioned. Good luck
  17. Nope, unfortunately I can not help you on those installation and customization steps. You can check "paid services" section of this forum, either for finding people offering services or for requesting services (with a detailed description of what you need). Here in this sub section, your message/request will not be seen probably Safe flights
  18. You do not need a donation to use the skin/theme. Donation is only needed for "Disposable Extended Module", it is not a theme or template, it is an extension/addon. Also the donation logic is explained in the download description with details and FAQ. Safe flights
  19. Please check their page, they have nice examples. If you really do not understand anything you read there, then this means that you either need some external support or you need time to start learning php/javascript etc. Good luck and God speed
  20. Depends on your traffic, you can use free wx api services or paid ones if "free membership" or starter limits are not enough for you. As an example you can use; https://www.checkwxapi.com/ Good luck
  21. Yeah, exactly... Your module copy is way outdated for that v7 dev version You were hit by this line, `If you try to use latest phpvms with an old version of this addon, it will fail.` and it failed Update it and all will be fine.
  22. Your group is like mine, all old timers (some newcomers joined us but we are still an oldies group), enjoying flight sim for 20+ years... We used v2 and v5 in the past, as pilots and staff of other VA's, then decided to have our own (to really free us from everything a tight VA related), started fresh with v7. As you thought, it was not a big deal for us to manually filing pireps, then we decided to have vmsAcars (not because we are lazy, but because we wanted to support it and have some automation for our pireps at the same time). We are happy to have both (this is why I developed and shared some addons for v7) Hope you find the right answer for your group and continue enjoying sim together with your friends Safe flights
  23. You are getting that error because; 1. Either your v7 is old (not updated to proper required version or above) but your module is new 2. Or your v7 is new (updated) but your module is old (not updated or below required minimums) 3. Or your v7 and module core is new, but your duplicated blade files are still old. (this happens when you update both but forgot fixing/updating your customized blade files) If you have access via GitHub, below link will give you the latest readme https://github.com/FatihKoz/DisposableSpecial#readme If not here is the text (same as the above with version numbers); Compatible with phpVMS v7 builds as described below; Module versions starting with v3.1.xx supports only php8 and laravel9 Minimum required phpVMS v7 version is phpVms 7.0.0-dev+220314.128480 for v3.1.xx Module version v3.0.19 is the latest version with php7.4 and laravel8 support Latest available phpVMS v7 version is phpVms 7.0.0-dev+220307.00bf18 (07.MAR.22) for v3.0.19 Minimum required phpVMS v7 version is phpVms 7.0.0-dev+220211.78fd83 (11.FEB.22) for v3.0.19 If you try to use latest version of this addon with an old version of phpvms, it will fail. If you try to use latest phpvms with an old version of this addon, it will fail. If you try to use your duplicated old blades with this version without checking and applying necessary changes, it will fail. Hope this helps
  24. Simple explanation for both versions; v2 = Forget about it v5 = Some paid and free acars solutions, old backend with special server requirements, lots of old (and mostly not supported/updated) addons v7 = Only one paid acars (vmsAcars), no free solutions, new backend with current server requirements, less addons (only 2 or 3 as far as I know) Either way, good luck with that new va project.
×
×
  • Create New...