-
Posts
704 -
Joined
-
Last visited
-
Days Won
113
Content Type
Profiles
Forums
phpVMS Resources
Downloads
Everything posted by DisposableHero
-
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)
-
https://docs.phpvms.net/download Use the DEVELOPMENT BRANCH link, it will always give you the LATEST DEV build
-
[ADD-ON] Disposable Extended Pack
DisposableHero replied to DisposableHero's topic in Disposable Hero Addons
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 -
[ADD-ON] Disposable Extended Pack
DisposableHero replied to DisposableHero's topic in Disposable Hero Addons
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 -
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
-
[ADD-ON] Disposable Extended Pack
DisposableHero replied to DisposableHero's topic in Disposable Hero Addons
My pleasure -
Unable to find settings page in admin center.
DisposableHero replied to brodyb's topic in Support Forum
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 -
[ADD-ON] Disposable Extended Pack
DisposableHero replied to DisposableHero's topic in Disposable Hero Addons
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 -
[ADD-ON] Disposable Extended Pack
DisposableHero replied to DisposableHero's topic in Disposable Hero Addons
-
[ADD-ON] Disposable Extended Pack
DisposableHero replied to DisposableHero's topic in Disposable Hero Addons
-
[ADD-ON] Disposable Extended Pack
DisposableHero replied to DisposableHero's topic in Disposable Hero Addons
Great, now it is more clear Specially the flags are ok, you want it like the flights page. -
Auto Approve Acars Reports.
DisposableHero replied to camilovelandia04's topic in Addons and Downloads
Great news, now you have your own module and build on it whenever you need something special for your VA. -
[ADD-ON] Disposable Extended Pack
DisposableHero replied to DisposableHero's topic in Disposable Hero Addons
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 -
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
-
PHPVMSGEN - You have not heard the name before !!!
DisposableHero replied to LesJar's topic in Paid Services
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). -
Auto Approve Acars Reports.
DisposableHero replied to camilovelandia04's topic in Addons and Downloads
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. -
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
-
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
-
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
-
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
-
Which hosting provider you are using ? Do they provide email setup docs or support (with server and external email configuration details) ?
-
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
-
Kindly read Question 5 in below topic, it explains how to do that easily.
-
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
-
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