Jump to content

DisposableHero

Members
  • Posts

    623
  • Joined

  • Last visited

  • Days Won

    97

Everything posted by DisposableHero

  1. No. What you explain is not logical and not fair for other users, if you want to assign 20 then assign 20 to everyone in your VA, no logic in having 200% or 150% possible. Targets are there for a reason. Safe flights
  2. Demo = Latest development edition vmsAcars (or any Acars) is not mandatory for v7, you can install latest dev build (if your hosting is compatible) and use it with manual pireps only... Of course there will be some features or addons designed for Acars support not functioning, but that will not hurt you at all. Good luck
  3. https://docs.phpvms.net/download LATEST DEV (Tar) LATEST DEV (Zip) Above links will ALWAYS give you the latest dev release, if you do not want to use Discord for some reason
  4. Yes I know, but this is not the correct place to have theme related questions... Don't get this wrong or rude, I would prefer NOT answering this. Either use generic support section or if you are using Disposable Theme use its own topic. As the title clearly states, this topic is for "Disposable Extended Pack" support or related subjects not for basic theming. Have a nice sunday
  5. Great, now it is more clear Specially the flags are ok, you want it like the flights page.
  6. Great news, now you have your own module and build on it whenever you need something special for your VA.
  7. 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
  8. 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
  9. 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).
  10. 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.
  11. 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
  12. 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.
  13. 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
  14. 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
  15. 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
  16. Which hosting provider you are using ? Do they provide email setup docs or support (with server and external email configuration details) ?
  17. 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
  18. Kindly read Question 5 in below topic, it explains how to do that easily.
  19. 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
  20. 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
  21. 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
  22. 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
×
×
  • Create New...