Jump to content

DisposableHero

Members
  • Posts

    761
  • Joined

  • Last visited

  • Days Won

    123

Everything posted by DisposableHero

  1. Strange, forum provides detailed conversations about mail configuration covering possible options to configure it, even it clearly states the common mistakes done. Check docs for basics + forum for details if you somehow fail to configure it. Good luck
  2. I can even be dead, so you will not be able to get something from me For your kind info; I am really busy (dealing with two new aircraft delivery flights from factory, one from Hamburg one from Seattle + Doing some new hire interviews + Cleaning the afterwards of a diversion combined with crew duty time exceedance and a technical delay more than 3 hours) I do not have free time Your priority is not my priority (may sound bad, but this is the truth) Keep calm please, everything will be fine soon (I hope) if your donation is ok. Best wishes, Dispo
  3. https://docs.phpvms.net/developers/addons https://docs.phpvms.net/customize/layouts You need to start from somewhere or you need to find a 3rd party developer to fulfill your needs 'cause core v7 can not (and should not) cover all possible wishes/needs of every virtual airline (or organization). What it offers is a stable base for VA owners or admins can rely on and build stuff on top of it as they need things. As an example, there are several maps in core v7, even it provides a pirep map. It is capable of displaying the planned route (if you have your navdata installed) and if you are an acars user it can display the actual flown route on the same map. Also it offers the same map backend to us, so we can easily develop our own maps when needed. Regarding your wish, v7 also offers a Latest Pireps widget which you can customize up to a point, either creating your own module with backend and frontend components, or by customizing the offered widget's frontend display (blade file) you can have something in your hands. I would personally prefer having my own code running in background and powering a frontend page with data I control, but it is still possible by using core v7's widget and convert it to a map display. Good luck and God speed
  4. Not possible, live map is designed to be a live map. Core feeds it with live data, not possible to make it last pireps map. However you can build your own module to get latest pireps (define the amount you wish like 5-10 or even 100) and then pass necessary data to your own map (which you can build on leaflet), then you can place it anywhere on your site as you need. Safe flights
  5. https://docs.phpvms.net/guides/finances#flight-fares When I replied you on Discord, I was referring to v7's fare/finance system Glad you found it and applied. Also if you are managing personal flights (aka charters / personal flights / free flights) with a module of your own you can also define (or auto calculate) a "flight based fixed pilot payment" too... This is one step forward of what you have found Can give ideas if somebody reads this later on for the same question. Safe flights
  6. https://docs.phpvms.net/installation/uploading Follow the docs, it should take maximum 5 minutes to install... Download latest dev Upload to your host (proper folder or subdomain according to docs) Create your database (check docs) Unpack the file you uploaded Visit your site Max 5 mins, double it to 10 if you are trying to do it slowly and while reading. Good luck
  7. Or the link in this page https://github.com/nabeelio/phpvms/releases It advises you to download the LATEST DEV build too... Same link as above, one is tar.gz , other one is .zip (content is same)
  8. https://docs.phpvms.net/download Use the DEVELOPMENT BRANCH link, it will always give you the LATEST DEV build
  9. As I wrote above if your pilots have time for 20, then assign 20, find a balance which will fit to all... This is not a personal playground module, this is a module for VA's in which rules do apply to all members equally. If one has more time, then he/she can do 20 assignments + 100 other flights, nothing against it. No logic in having ++ assignments to some members. Safe flights
  10. 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
  11. 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
  12. 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
  13. 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
  14. Map still needs some more work
  15. Flags are ok Map needs more work...
  16. Great, now it is more clear Specially the flags are ok, you want it like the flights page.
  17. Great news, now you have your own module and build on it whenever you need something special for your VA.
  18. 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
  19. 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
  20. 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).
  21. 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.
  22. 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
  23. 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
  24. 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
×
×
  • Create New...