Jump to content

All Activity

This stream auto-updates

  1. Last week
  2. If you create a module with artisan there is no need to edit or create a special route or anything. If you've cleared the cache there is always a created template like "This view is loaded from module: -yourmodulename-" as an example in your modules/-yourmodulename-/Resources/views/admin folder. So with the information we've, check your folders if all the blades, controllers, middleware, routes are created and present.
  3. PaintSplasher

    Awards

    Hey, the module disposable basic has this feature on board: https://github.com/FatihKoz/DisposableBasic
  4. dutch239

    Awards

    Is there a way to manually issue awards? I can't find a way. If not is there plans to go back to doing this? I read that previous versions you could do manual award but with 7 you cannot.
  5. Hello, I tried to create a module myself. It's recognized and is enabled. However, the corresponding function isn't added, and when I click "View Admin Module," I get a 404 error. I've tried to find the error, but I'm at a loss. The route, etc., is all correct.
  6. Earlier
  7. Hi, As far as I know, we are using Laravel Socialite to use oAuth, and all of the options (Discord, IVAO, VATSIM) are provided by the system. I am not sure if you can alter it to work with a totally custom system, but it should be possible. Below are docs related to it; https://laravel.com/docs/10.x/socialite https://socialiteproviders.com/about/ Hope it helps a little
  8. Excuse me, I want to connect to the "OAuth" system developed by ourselves, instead of the third-party login that comes with PHPVMS, because we have a single-point login program of our own mature account management system. Is there any way to use it?
  9. My pleasure, glad it helped a little and gave you some direction If you need to use them for evaluation purposes, I mean like having a check for gear or flap operation speeds you have two options; 1. Custom rule (vmsAcars premium feature, still being enhanced by development) 2. Custom module (running at web, can run when a pirep gets filed and check log entries for some specific text and then compare speed/altitude, apply a penalty or write a comment etc.) Above example is for the web, to display stuff but can give you ideas about how to access the log entries. Good luck for the rest
  10. Hello DisposableHero, The Hero part is certainly very accurate!! Thank you so much for turning me in the correct direction, I don't think I could have been more off track with the direction I was going if I had tried. I appreciate you taking the time out of your day with pictures and a code example to help me out. Thank You so so much!!!
  11. Hi @ang143 What you want or seek is already a part of vmsAcars log entries, you can see an example below from one of my old reports. Every logged action was being reported back to your phpVMS with location, heading, altitude and speed value. And this is what it looks like nowadays with latest version of vmsAcars. Technically speaking, the values are still reported back and saved in your database, just the textual display is removed (and i think this is better because it gives us more control over the display). Depending on your needs you can still reach them via some custom work (like displaying only, evaluating etc.) As an example, by editing your pireps/show.blade.php you can have something like this. I just added some fields to show you the possibilities, location is there too. @foreach($pirep->acars_logs->sortBy('created_at') as $log) <tr> <td class="col-md-3">{{ $log->created_at->format('d.M.Y H:i') }}</td> <td>{{ $log->log }}</td> <td>{{ $log->altitude_agl.'ft agl | '.$log->altitude_msl.'ft msl' }}</td> <td>{{ $log->gs.'kt gs' }}</td> <td>{{ $log->ias.'kt ias' }}</td> </tr> @endforeach Hope this helps, safe flights.
  12. Hello, I'm hoping for a bit of nudge in the right direction, as the subject says I'd like VMSAcars to show the speed when certain events happen (gear raised/lowered flaps raised/lowered). I have read through the following pages, I managed to following the instructions and do the example, https://docs.phpvms.net/acars/customizing/customization & https://docs.phpvms.net/acars/customizing/tutorial To be honest I'm not really sure what I'm doing or if it is even possible. I have VMSAcars Premium & I am running the latest stable release of VMSAcars. Thank you for any help or pointers
  13. If you just want to add a link pointing to your WP, edit the menu/nav of your phpVMS theme then. This is just templating and basic html / stylesheet stuff. Check nav.blade.php of your theme, it will probably hold the menu items or at best it will guide you to the file holding menu items. Good luck
  14. Yeah…but lets say thats what I am working with atm, does anybody know how to link these pages?
  15. I'd suggest staying as far away from WordPress as you can to avoid the security and hacking concerns. You can easier design a landing page with links to additional static pages and also add a link to your phpVMS site for registration purposes and to allow crew access. Lots of other (non WordPress) options as well.
  16. I have been trying to link one of my wordpress pages to one of the menu options in my phovms site, can anybody hep?
  17. We do have some oAuth providers enabled (Discord, IVAO and VATSIM) but they do not provide automated registration, only sign in and account linking options are provided. https://docs.phpvms.net/oauth/discord
  18. Excuse me, what single sign-on types does PHPVMS support? CAS? OAuth? Or what? I have my own "unified identity authentication" system. Does it support docking? Is there any solution?
  19. That's fixed in 1.3.5, file-hash if someone gets a wrong package: 2660f290bd5c2248df987b379553b71c3e235c96
  20. fix for the flight assignments page and widget for page it is line 50 for widget it is line 30 widget: phpvms7_SPTheme_DSPack-1.3.5\resources\views\layouts\SPTheme\modules\DisposableSpecial\widgets\assignments.blade.php page: phpvms7_SPTheme_DSPack-1.3.5\resources\views\layouts\SPTheme\modules\DisposableSpecial\assignments\index.blade.php <a href="{{ route('frontend.airports.show', [$as->flight->arr_airport_id]) }}" title="{{ optional($as->flight->arr_airport)->name }}" class="badge badge-rounded badge-primary tooltiptop"><i class="ph-fill ph-airplane-landing"></i> {{ optional($as->flight->arr_airport)->name ?? $as->flight->arr_airport_id }}</a>
  21. Note: If you own all packages then please note the update order! SPTheme -> DBPack -> DSPack Note 2: If you changed the colors, for example, just backup the following file: /resources/views/layouts/SPTheme/config.json 05.APRIL.25 (v1.3.0 / 1.3.0 / v1.3.5) (v1.3.0 SPTheme) Fixed an issue where incorrect fuel/weight units were displayed Fixed an issue where users could not change their password Fixed some style discrepancies on macOS devices Fixed issues with VATSIM/IVAO user fields and OAuth link Fixed an issue where fares could not be entered when changing aircraft (v1.3.0 DBPack) Fixed an issue where some fleet images were not responsive Fixed an issue where cards did not have space between them Fixed a condition where the cruise profile CI/LRC could not be changed Fixed a label that had some typos Added a failsafe to the SimBrief form in case a profile could not be found Added a failsafe to the random flights Widget (v1.3.5 DSPack) Added a failsafe to the assignments if a flight was deleted Fixed a missing route to the missions area for flight details Fixed an issue with multiple airlines and the selected fleet on free flights Fixed name for the airline on assignments
  22. Resolved on discord Hi there I love this add on. It looks really well but something has happened to my dashboard page. It was working fine but now i get a 500 error. I checked the logs and got the following. I had changed the name of the airline yesterday in the admin section and all was working. Same airline just added a little. I have since changed it back to the original as the error on the page shows. Any help would be much appreciated. Thanks
  23. Great - just making sure.others have reported the issue with XP onlyaswell.
  24. Only on Xplane 12 after last simulator update. I never issued that in FS2020
  25. Is this in XP only? It is being looked at. It is an odd issue.
  26. Guys, I received a message from the administrator of my VA. This random pause are common for him too, so he acknowledge the bug and reported it to acars developement. For now we have expanded the consent pause time for every flight to get around the issue and we hope it will be fixed soon by developers... Thanks everybody for help Luca
  1. Load more activity
×
×
  • Create New...