Jump to content

DisposableHero

Members
  • Posts

    624
  • Joined

  • Last visited

  • Days Won

    97

Posts posted by DisposableHero

  1. 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)

     

     

  2. 1 hour ago, matheusm said:

     

    hello,

     

    I use the 737 PMDG in FS2020.

     

    none of the aircraft's lights are recognized by acars. All appear as off (false) in the Debug Window , beacon, taxi, landing light...

     

    Thank You!

     

    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

  3. 13 hours ago, LesJar said:

    I want to add the ACARS.ZIP to my website in PHPVMS7. I cannot see any option in ADMIN to MAINTAIN a downloads section.

    Anybody set this up can you please give details thank you.

    Screenshot 2023-03-09 at 12.25.53.png

     

    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

  4. 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).

  5. On 3/1/2023 at 11:28 PM, Boogace said:

    Good day to you all I seem to be at a crossing where I have imported 22 pages of flights in with a default aircraft ie 737-800 now it shows up in all thoose flights, but when I add a new subfleet or aircraft it seems I have to manually edit all the fligths to add the new aircraft  for the other pilots to choose from on all the flights, is there an easier way to do this ? otherwise if you have a massive schedule you have to edit each flight to add the aircraft, and to be honest im not looking forward to doing that.

     

    cheers

     

    Wazza

     

    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

  6. @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

     

  7. 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

  8. 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

     

  9. 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.

     

    image.thumb.png.fc882a8de92ee3661fa10c58173e77e8.png

     

    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

  10. 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 ;)

  11.  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.

  12. 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

  13. 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

  14. 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

  15. 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.

  16. 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

  17. 2 hours ago, sgraypgh said:

    I have distance set to NM in admin, but weather pages are showing Visibility in km. Any way to have that use either NM or Miles?

     

    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

  18. Upload and use this version, keep the file somewhere safe along with my v3.0.19 addons 

     

    Once you upload, please clean your cache (follow docs for manual deletion of cache if necessary) then visit yoursite.com/update to trigger any migrations etc.

     

    Then if you encounter errors please do provide logs ;)

     

    Good luck and God speed

×
×
  • Create New...