Jump to content

DisposableHero

Members
  • Posts

    704
  • Joined

  • Last visited

  • Days Won

    113

Everything posted by DisposableHero

  1. Did you checked docs (Acars > User Manual section) for "Flight Phases" (states) ? https://docs.phpvms.net/acars/user-guide Pirep:mrMymp3anA00YB5p TAKE OFF reported Without ENR / Enroute, probably acars will not move on further. I do not think that reducing reporting times will change anything. Either you will fulfill the requirements described in user guide (also you may need to alter your schedule to eliminate those short flights) or vmsAcars needs to be updated (which will affect all users and this needs to be considered deeply) Good luck
  2. Well, considering v7 can support more than one airline (I have 26 in my setup) and their schedules and their fleet I do not think that this will be an issue. Regarding admin work (adjusting those schedules to reflect proper airlines / fleet), yes you need to work on that. No one can do it for you, this is a management task to be done. We all did it at some point, either from upgrading from v5 or creating new v7 installs. This is unavoidable at all. For smartCars I do fully agree with @ProAvia (also I do agree on switching to php5.6 too) it is a choice you need to make at some point, either now or later... Again no one can help you on that Good luck with v5.x and install
  3. Did you tried installing on php7.3 ? I do not think that there are plans for a specific php version, maybe with some fixes v5.x series can run on php7.3 and php7.4 but not php8. So a year later, or max two years there will be less than limited support for old php versions. You may need to seek for a VPS (in which you can install anything you need and it will be fully under your control) If you need to use v5.x of course, if not you may check phpVMS v7.x series (at least it runs on recent software and hardware, still being developed and supported)
  4. You have three solutions; Use an earlier version of fsuipc-lvar-module or, Update vmsAcars\FSUIPC_WAPID.dll file with the latest version (check FsUipc\Utils directory) or, Wait for a vmsAcars update. Safe flights
  5. Really ? There are options under each Airline, Airport, Subfleet and Aircraft to add files. Also there is an option under vmsAcars module designed to provide a download link separate from the above groups, just for vmsAcars itself as expected. But you can not see any options for an Admin to maintain files Looks like you are rushing, overlooking or not looking at all Hope this helps, good luck
  6. https://github.com/nabeelio/phpvms/blob/d96d936e0905423f2b6a28bbd53c1d215216717a/resources/views/layouts/default/widgets/live_map.blade.php#L116 I do not think that current logic of the map allows different icons used for different types of aircraft. It can be done of course but you need to go deeper and come up with an enhanced map solution (like defining icons for each item on the map at backend) and then compile the new script, adapt frontend to follow backend changes (like removing the generic icon usage etc).
  7. Latest development build is dated 06.FEB.2023, so you should assume that it will work with "current" technology.
  8. Import them again with proper subfleets. This will update the flights and their subfleet assignments. Or delete all flights (during import) and do NOT use any subfleet codes in the csv, then all your subfleets (current and future ones) will be available for all flights. Good luck
  9. @Nabeel log looks strange 02-01 19:32:03|ERROR; Could not write to base directory for configmaps.zip 02-01 19:43:07|ERROR; SimConnect_OnRecvException: $EVENT_ID_DUPLICATE 02-01 19:43:07|ERROR; ReceiveSimConnectMessage: Error in Simconnect: $0xC000014B 02-01 19:50:17|INFO; Starting PIREP, sim type=Microsoft Flight Simulator 02-01 19:50:18|ERROR; MSFS Connection Error: Error HRESULT E_FAIL has been returned from a call to a COM component. 02-01 19:50:18|ERROR; Acars.SimClient.SimClientError: Could not connect to MSFS: Error HRESULT E_FAIL has been returned from a call to a COM component. Acars.SimClient.SimClientError: Could not connect to MSFS: Error HRESULT E_FAIL has been returned from a call to a COM component. at Acars.SimClient.Clients.MSFS.MsFsClient.Connect(String address, Boolean enableRetry) at Acars.SimClient.SimManager.Connect(String address, Boolean throwError) acars Boolean Connect(System.String, Boolean) 02-01 19:50:18|INFO; Sim client disconnected 02-01 19:58:35|ERROR; SimConnect_OnRecvException: $EVENT_ID_DUPLICATE 02-01 19:58:35|ERROR; ReceiveSimConnectMessage: Error in Simconnect: $0xC000014B 02-01 19:58:36|ERROR; Simconnect error registering datastreams
  10. https://docs.phpvms.net/help https://docs.phpvms.net/help#vmsacars Please provide logs as described in above link, so then we can try to understand what is going on try to help. Safe flights
  11. My pleasure I was a developer, many years ago (while I was a teenager and a youngster around my twenties).That "basic" knowledge comes from those nice years, rest is 2+ years experience with v7 and some refreshed skills for v7 addon/theme development (I needed them, no one was around, so I started developing again), nothing more Enjoy v7
  12. Exclude rows with 0 (zero) expense or income (for GH Cost, it will be expense, debit) while you are in the foreach loop. As this is mostly a "theming" issue, you can check below example from my theme and apply the change in your duplicate (or your own) theme. https://github.com/FatihKoz/DisposableTheme/blob/e7e635a8d62c9aee90370c4c52104dc0fabb0747/resources/views/layouts/Disposable_v3/pireps/show_finance.blade.php#L58-L64 @foreach($pirep->transactions->where('journal_id', $pirep->airline->journal->id) as $entry) @if($entry->credit == 0 && $entry->debit == 0) @continue @endif <tr> <td class="text-start">{{ $entry->memo }}</td> <td>@if($entry->credit){{ money($entry->credit, $units['currency']) }}@endif</td> <td>@if($entry->debit){{ money($entry->debit, $units['currency']) }}@endif</td> </tr> @endforeach https://laravel.com/docs/9.x/blade#loops
  13. No problem, we all had the same feeling back in time There is a place at GitHub for "Feature Requests", if anything comes to your mind and if this is not a bug somewhere you are always welcome to create new request. And if this is good for all users, it gets attention. Not everything is implemented in and response is not lightning fast but it gets considered, been discussed with other users etc most of the time So use it please, otherwise your ideas will remain in your mind or get lost in the forum/discord channels etc. Safe flights
  14. Yes [short answer to your question, long answer follows below] Don't get me wrong, but I think you are just enabling disabling settings and hoping things to happen as you wish... Where did you read that flight list follows that setting ? Probably nowhere, it is just your wish And even you tested it with ranks and get the same result. So neither subfleets nor ranks are killing you, it is simply lack of knowledge and experience about v7 systems confusing you, or your expectations do not match with what v7 offers (and both are normal, nothing wrong with any of them) If you look closely to your admin settings area, you will see that "Restrict Aircraft By Type Ratings" (and the same for ranks are) listed under PIREPs section (and it is about aircraft as the name says), on the other hand "Only allow/show flights from current location" (like the one you left disabled) is listed under PILOTS (and it is about flights). With the info above and your current test, one can easily say that "Flight list is not limited according to user ranks (or type ratings)", as far as I remember this was discussed either in this forum or maybe in Discord, there may be a feature request about it at GitHub too (I am not sure about this). Maybe someday in future, somebody implements that feature by adding new settings to PILOTS section something like "Restrict Flights By Type Ratings" / "Restrict Flights By Rank" and then you can enable them to get your desired result. Or maybe that someone can use the settings at PIREPs section to achieve that goal (I do prefer having them separated though). Hope this help and clears your mind a little bit. As I wrote before, good luck and God speed
  15. As a professional aviator I am pretty aware of pilot and aircraft type ratings sir. Your country may not be issuing something for "Single Engine Piston" but there is something for it too and phpvms v7 is not designed only for FAA/US Well, if you do not want to use type ratings then do not enable it... If you want to use it, then you need to assign type ratings too as I explained above. When you do not assign ranks to your subfleets and enable its setting, same thing happens too. System checks what you are capable of. So as an example; You do have a B737-300/900 type rating assigned to your pilot, then he/she is ONLY allowed to use aircraft which requires that same type rating to operate. Good luck and God speed.
  16. You can use both if you wish to or you can use only one of them... In either solution you need to manage your subfleets, no matter what their maximum takeoff weight is. You need to assign a rank or type rating (or both) to them according to your wishes about managing this. And as far as I know, even a single engine piston (like lightweight Cessna 152) needs a type rating. Not a C152 type of course but you should hold something for SEP or MEP being used backwards. Safe flights
  17. Well, I am not using decoded weather and not a member of your VA anyway, so whatever you did on your end is ok for me. I would suggest opening a bug report for phpvms v7 (+your idea about double display mentioned above), maybe the developer (or someone else) fixes it for good. As you know this is not an addon/theme issue and related with phpvms v7 core itself, all should go through github. Developer will not see your problem or request here. Safe flights
  18. So you made every airport report visibility in miles ? Hope it does not mess up with peoples brains and non-us airport reports.
  19. Try cleaning your "view" cache if you are sure you edited the correct file... Admin > Maintenance > Reset Caches > Views (button) I already wishes you luck 2 times, if it is not enough then only "God Speed" can help you
  20. What you find is an example file, what I wrote above is the original file location (with the note you mentioned) What I still hardly suggest is following explained duplication procedure, edit that original or example according to your needs. What I do NOT suggest is what you plan to do (unzipping the example over the original) Good luck
  21. Considering that W11 is a polished W10, there is less chance that kAcars will be incompatible with OS, most probably your pilot is missing required .net packages (or maybe some vb runtimes). W11 does not come with old .net editions which are not supported anymore, this makes old software fail most of the time.
  22. You probably missed looking to : Resources\views\pages It is the default file location for it, shipped with Dispo Special, you need to duplicate that file under your own theme as explained in documentation (and here in this forum) Good luck
  23. Other two ? Premium only displays the Splash Screen Banner (during startup) and the Dashboard Logo (at home page of acars, top right section). If it is displaying only one check the files, check if you can reach them directly by entering the url to a browser window, check vmsacars module settings, and lastly check your acars log to see if there are any errors. Safe flights
  24. Weather decoding is not a part of Disposable Addons (neither Disposable Theme nor the modules), it is handled by phpvms v7 itself. As far as I remember, wx visibility is reported in statue miles in US (and FAA rules following countries), rest of the world uses meters. So a conversion to nautical miles (nmi) is not logical at all, it should be either miles or kilometers. (this may be the cause of non-conversion by the core) Safe flights
×
×
  • Create New...