Jump to content

DisposableHero

Members
  • Posts

    766
  • Joined

  • Last visited

  • Days Won

    123

DisposableHero last won the day on March 22

DisposableHero had the most liked content!

Profile Information

  • Gender
    Male
  • Location
    Antalya, TR
  • Interests
    Aviation, Flight Planning, Electronics

Recent Profile Visitors

31314 profile views

DisposableHero's Achievements

Experienced

Experienced (11/14)

  • Posting Machine Rare
  • Well Followed Rare
  • Very Popular Rare
  • Reacting Well Rare
  • Conversation Starter Rare

Recent Badges

235

Reputation

  1. 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
  2. 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
  3. 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.
  4. 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
  5. 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
  6. @Nabeel, I noticed some unexpected pauses in my VA logs too, from XP12 as @Potus88 mentioned. Will try to test myself during weekend (I will have some free time and public holiday afterwards)
  7. Acars logs would be great, if you can upload them to somewhere and share a link we can investigate. (Kindly check Documents\vmsAcars\logs folder) Also kindly check the AcarsConnect.txt file, which is located at the root of your XP installation, share the contents of it too As far as I remember, whenever you go to any menu XP sends a "sim pause" signal, which is understandable. If this is the case, like you opened a menu and then adjusted settings or some other stuff this can happen (imagine like you do this 7 times and each is around 1 minute, then it will be a total of 7 minutes pause for phpVMS). While sharing the logs, would you please think about the above logic, did you "unintentionally" paused your sim for doing settings etc? Safe flights https://docs.phpvms.net/help#vmsacars
  8. You should use "Paid Services" section or clearly explain your problem/question to get public help.
  9. Hi @IFL442, Of course I know the error, it is generic one and the logic of it is already posted in "most common errors" topic. Basically it says that you have a problem in your assignments (like a deleted / missing flight) and that blade of SPTheme is missing a failsafe. Just check line 27 of SPTheme/modules/DisposableSpecial/widgets/assignments.blade.php and if possible try renaming that file (which will allow the default blade I shipped with DispoSpecial to be used). If the error comes up with my original blade, I can try to debug but if it is only happening on the modified ones shipped by @PaintSplasher, he may need to investigate too {{ optional($as->flight->dpt_airport)->name ?? $as->flight->dpt_airport_id }} This is from my original blade, it checks for the airport and uses its name, if not it uses the dpt_airport_id. But before all these optional stuff I do have a generic @if($as->flight) check, which eliminates deleted / missing flights. Looks like SPTheme version may be missing this. Unfortunately I do not see that generic check in SPTheme version of the blade. Either you may need to wait for Thorsten to publish an update or you can replicate my wider check manually on that blade too. https://github.com/FatihKoz/DisposableSpecial/blob/main/Resources/views/widgets/assignments.blade.php Hope this helps
  10. Hmmm, I think I added a defined space to footer and used some space above it both were in stylesheet (to be compatible with Mac/iPad devices)
  11. No bad feelings and no need to get confused with ?!?! or ! I am just asking, you can simply reply or not reply too. Looks like, what you are doing is wasting your own time to develop/convert something already present in phpVMS v7 itself For me it is ok, people will also wonder what it does when you do not provide explanations. Like maybe you can have a different weather source (which can be extremely useful then as a backup tool) And if you are not happy about questions regarding your addons, why are you publishing them anyways?!?! I wish you have a good day too
  12. Also, if you like to store those times as local values, conversion to UTC would still be possible. Like displaying the local times directly from the flight (as you entered them), then converting the value to UTC as additional display (opposite of the example above)
  13. As everything else in aviation, all departure - arrival times should be in UTC too. @ProAvia is right, the flights table only stores those values as text, not datetime values (timestamps etc.), thus you can use them as you wish. Considering that people use them as UTC times and prepare their schedules in UTC format, some addon themes provide UTC to Local conversions for those values. What those addons do is basically convert those "texts" to "time values" (by default they are in UTC as expected) then convert the utc to local time of the airport. You can check the example below for that conversion. https://github.com/FatihKoz/DisposableTheme/blob/main/resources/views/layouts/Disposable_v3/flights/table.blade.php#L42-L43 Good luck
  14. Would you please explain the purpose of this addon ? phpVMS v7 already have built in metar/taf retrieval and translation services, each airport page provides wx data, also weather widget can be placed anywhere required (like dashboard, simbrief forms, briefing pages, flight pages etc.) What will this converted v5 module add to phpVMS v7 or what does it offer different than v7's internal systems ? Thanks
×
×
  • Create New...