Jump to content

DisposableHero

Members
  • Posts

    692
  • Joined

  • Last visited

  • Days Won

    112

DisposableHero last won the day on October 6

DisposableHero had the most liked content!

Profile Information

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

Recent Profile Visitors

7542 profile views

DisposableHero's Achievements

Proficient

Proficient (10/14)

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

Recent Badges

208

Reputation

  1. Best way to understand this is checking the cron log @Imanol , they are placed alongside with your laravel logs under storage/logs folder. If it is not there, or there but nothing in it are clear signs of cron problems (95% hosting limitations, 5% user error / server misconfiguration) And if it is running properly, you may need to wait until UTC midnight, (nightly cron) for user checks (active / leave switch) Good luck
  2. Additionally, be sure your cron command is running the exact same php version with your hosting account/domain where phpvms runs. Running phpvms with php8.1 but trying to run cron with php8.0 or php8.2 will cause failure. So whenever you try different php versions, or update them be 100% sure that cron is using the same php executable. Good luck
  3. I shared my thoughts already at Discord. Looks like your install is not good and you have file/folder access problems.
  4. No, they are not and vmsAcars is telling you exactly this with a message box whenever you try to scan your sceneries. 09-13 17:32:26|INFO; Found UserOpt file in C:\Users\PC GAMER\AppData\Local\Packages\Microsoft.FlightSimulator_8wekyb3d8bbwe\LocalCache\UserCfg.opt 09-13 17:32:26|ERROR; UnauthorizedAccessException: Access to the path 'C:\Users\PC GAMER\AppData\Local\Packages\Microsoft.FlightSimulator_8wekyb3d8bbwe\LocalCache\UserCfg.opt' is denied. 09-13 17:32:26|INFO; MessageBox, message=There was an error trying to access the path, permissions denied. Run as admin or check the folder security https://docs.phpvms.net/acars/user-guide#permission-denied-errors Good luck
  5. You can use two different loops to display different awards according to your setup @Imanol @foreach($user->awards->whereIn('id', [1,2,4,5,7,90]) as $awards) https://laravel.com/docs/10.x/collections#available-methods may help Or you can use some basic php functions to check the name, like if it contains some specific words to separate then @if(str_contains($award->description, 'Medal')) Good luck
  6. https://github.com/nabeelio/phpvms/blob/dev/modules/Awards/Awards/PilotFlightAwards.php You can check the default award classes to have a better understanding how it works, and then you can create your own classes as you wish. For displaying them separately in pilot profile you need to edit the blade file(s) of your theme as you wish. You can use some filtering within the loops or anything else matching your needs. https://github.com/nabeelio/phpvms/blob/dev/resources/views/layouts/default/profile/index.blade.php Good luck
  7. Already did as we speak Issue Link : https://github.com/nabeelio/phpvms/issues/1873 Solution Link (Pull Request) : https://github.com/nabeelio/phpvms/pull/1874 So when this gets merged, a new dev build will be released and this will not be problem anymore for anyone I hope Have a nice night.
  8. Ok, Now disable (dash out) the dump by adding two dashes before it followed by a space as below. // dd($point, $attrs); Map should be working now
  9. I saw it, thanks Here 0 and 1 is ok, they are floats but 2 is a string (notice the double quotes and display difference) and it is the altitude. So line 42 is causing trouble. Would you please change it as below and save the file (keep the dd for now) $point[] = floatval($attrs['alt']);
  10. A simple way to debug this error can be done by adding below text to line 44 of the mentioned file (app/Models/GeoJson.php) and saving it dd($point, $attrs); With this, instead of erroring out code will dump the data (contents) of $point and $attrs and stop there (die), hence the helper is called dump and die "dd". Good luck again
  11. Also the error is simple (this is why I am suspecting the client and/or communications in between) GeoJson expects a value like "12345" (which is an integer) or "12345.67" (which is a float). So a value like "N 12345" (notice the N and space which is a string) or "12345,67" (notice the comma, which makes this a string too) or the value is just an empty string "" (thus can not considered as null in some cases) will create the above error We saw in some European servers, comma is being used as the decimal separator instead of a point, which was creating a problem in monetary values, same can be happening here too (a server forcing comma can mess up internal easily) Good luck
  12. As the error is related with a core feature (direct communication between acars client and phpvms v7 itself), it can not be related with any Dispo addon as my addons do not alter core/communication files. Dispo Theme only displays the map created by phpvms, only the look of the page is different. In the other topic same/similar error was reported, and the admin did not provided any details for debugging What I can assume from the error is, somehow the coordinates are not being recorded at all or not being recorded properly (faulty9, by the acars software being used (either vmsAcars or any other solution) thus the map is failing to create a geographic location properly. To better understand this error, we need to re-create or live debug during a flight (while the error is happening) @Aorly1, the data transferred by acars client and the data recorded to the database needs to be checked live (by some debug lines added to some files and then then inspecting the log to spot the differences). Additionally we can suspect the server dropping/altering http post data during a forced redirect (imagine like the server uses https, server has a forced redirection from http to https, client is configured to use http by the pilot). This needs to be checked too. Hope this helps.
  13. Probably you still have the same config error somewhere, your docker image is not able to load up the application at all.
  14. You probably created a new airline (automatically) when creating new schedules (by csv import) thus now you have both SKB and SKYBU airlines in your system.
×
×
  • Create New...