Jump to content

DisposableHero

Members
  • Posts

    761
  • Joined

  • Last visited

  • Days Won

    123

Everything posted by DisposableHero

  1. https://docs.phpvms.net/developers/addons Docs may help, at least explains the basic needs of v7 addon development and gives you nice directs to follow. Other than this I assume you already have some basic knowledge about html and php 'cause they are needed too. Good luck
  2. Ok, if you are going to create those flight groups and pilots will not be able to add/remove or do changes on that list then it should be easy. Just check the script above, you can pass an array of flight_id's along with user_id (of the pilot wishing to bid on that list) to a loop and all will be added to the bids. Or you can have your own controller doing the same, creating bid records for each flight. If you are trying to do assignments of some sort, or something like a tour system (group of flights) then I would not suggest using "bids" for this 'cause pilots have control over their own bids, so they can just delete something you assigned. Hope this helps, good luck
  3. https://github.com/nabeelio/phpvms/blob/dev/resources/views/layouts/default/flights/scripts.blade.php https://github.com/nabeelio/phpvms/blob/dev/app/Models/Bid.php Logically, if you disable multiple bids and do not allow flights to be bided by more than one pilot (both from admin > settings) then it will be hard to manage something like schedule bidding... Technically it is just a record for the Bid model, flight_id and user_id is mandatory if you want to add them to the model by your own code, if not the script above does it for you on the flight with a button click. Also you can add flights to an array on the fly and then run a batch command with your own code to add them to the model. What exactly are you after, maybe we can think on it and give you some hints about how it works in v7. Good luck
  4. Yes I know how to do that, if you can develop it on your own logic is simple * Get your live flights * Read their live position reports and build arrays for each flight * For each live flight you have, use it's last position as the last geo location, then draw lines between each geo location starting from the departure airport, preferably with a greenish color (completed part) * Then draw a geodesic line (great circle line) from the last position to arrival airport, preferably with a redish color (not completed part) * Also if you have enough data, you can draw a line for the planned route, preferably with a blueish color * Optimize your leaflet map, add some layers (like enabling / disabling the route or the plan) * Automate the updates if you wish to (like an auto refresh of the map data, re-reading everything an processing everything again, preferably find a nice way to do this to reduce server load) * Test your map while some of your pilots are flying All this can happen, depending on your skills. Nothing impossible, but not easy too. This also depends on your acars software, if it is not sending back live position data during flights then do not start even thinking about a live map, consider building a pirep map with the above logic (which will be a one time process as the flight will already be landed and finished) Good luck Important Note: Me knowing how to do it does not mean that I can do it for you, or willing to do it for you (or somebody else). I just answered your main questions with positive replies, rest is up to you (or your web developer).
  5. https://leafletjs.com/reference.html#polyline If you have the geo locations you can draw the line as you wish by using above reference.
  6. v7 is the same, (or at least similar) you can not have the same flight number with different times/days between same city pairs (unless you add a code to it) So from above example, in v7; (flt #105 KLGA-KSTL days of the week (12345)) // OK - this will be the first #105 (flt #105 KLGA-KSTL days of the week (0 and or 7)) // NOT POSSIBLE - above error will arise 'cause same city pairs used with different days and/or times (Flt#105 KSTL-KMDW days of the week (12345)) // OK - different city pairs (FLT#105 KPIT-KMDW days of the week ( 6)) // OK - different city pairs
  7. https://docs.phpvms.net/help Above page clearly states what to include when requesting help and gives you the log file locations, so please provide logs 'cause without them no one can help you Despite some hosting advise, I can say you that php8.1.xx is the best for v7 at the moment. If possible use latest development build and php8.1, double check your php/server settings (mostly hosting providers limit your ram to funny levels) v7 will run fine Good luck
  8. If you are asking about css/stylesheet changes, then you can use versioning trick. And when you are happy about your changes after self testing, just increase the version and every other visitor's browser will get the new/updated file. https://sebhastian.com/css-versioning/ Good luck
  9. Great news, glad somehow my examples helped Enjoy your new expenses
  10. I checked my own custom expenses (provided by my module), it is slightly different from the example <?php namespace Modules\DisposableSpecial\Listeners; use App\Events\Expenses; use App\Models\Enums\ExpenseType; use App\Models\Expense; // You can try this too If "App\Listeners\Expense" fails, try "App\Models\Expense" and see what happens. Good luck
  11. <?php namespace App\Listeners; use App\Contracts\Listener; use App\Events\Expenses; use App\Listeners\Expense; //This is missing // Rest looks ok That missing line is the reason for Class "App\Listeners\Expense" not found error. Hope it works
  12. Be advised, there may be people approaching you with some claims about installation, customization, special custom coding etc. Double check what you need and what they offer, do not spend your money without clear agreements and proper investigation. We (the users of v7 and vmsAcars) witnessed lots of bad experiences about (so called) "developers" not following licenses, not fulfilling customer needs and forcing you to use something different/old they already have in their hands. Again, good luck
  13. phpVMS v7 is free, vmsACARS is not. phpVMS v7 and vmsACARS do work together out of the box, no extra effort or development is needed to start, this is the easiest way to use both. Only simple steps during installation is required, to start operations / testing phase. Rest will be customizing things and admin work. No, as far as I know, there are no refunds. Once you buy and activate your license it is yours forever. Also there are no demo or test packages for vmsACARS with limited capabilities, time restrictions etc. vmsACARS is designed to work with phpVMS v7, this is important. Therefore your question regarding implementing vmsACARS to your current setup is a complex task, depends on your knowledge and skills. Technically it is possible, what you need to make is in simple terms; Have a module or system which can enable communications between your current VA Management software and vmsACARS. As you will not be able to change the way vmsACARS works, you have to re-design your current software's backend, during this task you may need to alter how your old system operates. If you are using phpVMS v2x/5x (classic series), it is easy to upgrade to v7 (current) series but for other systems like VAM, VaBase etc it will not be that easy (maybe it may not be possible without loosing some abilities) You can enhance capabilities (backend) of phpVMS v7, also the visuals/skin/theme (frontend) can be customized. This again depends on your PHP + Laravel skill. Hope this helps, either way you need to inspect specs and requirements of phpVMS v7, compare it to your current hardware (server) and cross check its capabilities according to your current system. This is a time consuming and detailed task... Good luck and God speed.
  14. Did you reverted back the filename ? Technically your install is not able to find the views (which is a part of laravel theme, the part causing problems before). Maybe cleaning the application cache manually may help (delete the contents of bootstrap folder manually, not the folder but the contents) and try visiting your site again. As I wrote before, we are not experiencing the issue, even not able to replicate to dig deep. This is really hard to for us to help
  15. Hi, Unfortunately you are 3rd or 4th person getting this error, which we believe is somehow hosting related but it is not clear too 'cause when hosting provider checks they will say server is ok and settings are fine. There are some workaround for this, but I am not sure if it will work or will provide a stable solution. Other users changed their hosting service providers and they did not faced the same error anymore (as far as I remember it was hostinger) Only workaround I remember was renaming the themes.php file under config folder to something different like themes-backup.php and try visiting your site. After finishing install you can change the filename back to its first state. Hope this helps
  16. https://docs.phpvms.net/help If you can provide some logs, maybe we can understand what is going on and try helping you out.
  17. Disable "flashing landing lights" (name may be slightly different) from Zibo options (in EFB), it causes problems in vmsAcars like CTD's and out of memory issues while trying to check their on/off - flashing state. Safe flights
  18. If you want something like `crew.yoursite.com/contact` (full url with separate functions, anything you need in that page) then you need a module, If you want a contact form with some entries and a button (which sends a message / mail to somewhere) and want to place it to more than one page then a widget will be logical, If you want to add a button to a page then editing the that blade is more than enough. I think this will explain the differences between the three. Good luck
  19. To have a route database, you do not need something more, it is just a route database... If you want to check your routes validity/legality for each airac cycle (like we do in real world) with some code/automation, then you will need some data for sure. Navigraph and Aerosoft are the only companies providing such data for simulator usage but you may need to check their licenses about possible different usage scenarios (they may not allow you to use their data like that). Anyway, this is more deeper than just a bunch of data and it is not our topic. It is not about sharing data or hiding information, it is about responsibility. If you are going to manage a VA, then you have to consider and cover all aspects of it. One should not build something with relying on external sources. So if a VA needs to have valid, current, usable route database, then that VA should not look outside. This is what I am saying, but you are still thinking about sharing routes between VA's Safe flights
  20. I was not talking about a shared, worldwide route database... I was thinking about a local, VA only database with some critical (dep-arr-route-airac-active) and optional (rwy-sid-star-remarks-validity etc) fields. Which will be maintained by the VA staff. I am not after something to hurt my own mental health like providing route to different VA's, if someone is creating a virtual airline, then that same someone should be able to handle all aspects of managing an airline (or be able to create an experienced team to do that). Personally I am already dealing with my own (real) airline's route database and it is a complex task. There are lots of people working in the background to support front line dispatchers on daily planning, so no, I am not that mad to do that for a bunch of VA's spread around the world Anyway, one day (hopefully after retiring) I will convert that idea to code, at least it will be enough to fulfill my own needs. Safe flights PS: There is no such thing called "best route", it depends on a lot of factors and that factors can change daily. So you can not have the "ultimate best" generated and saved somewhere, it is a dynamic process
  21. 1. Only if mandatory between city pairs, like a specific company route between DEP-ARR, or a route forced by ATS with special levels/speeds. 2. Only if mandatory between city pairs or needed by ATS ('cause Flight Level is subject to load-performance and wx along the route) So having YES/NO for questions 1 and 2 is not enough, it really depends on the situation. As an example to #1, you need to file RATVU UT35 BABSA for an IST-AYT flight, this is mandatory and published as RAD (Route Availability Document) by ATS. So I do have that route inserted to all of my IST-AYT flights (and have a similar one for the return leg). What v7 needs (in my opinion) is a detailed "Route Database", instead of inserting the same routes over and over, we should be able to have a table (with details and maintenance options) and it should offer pre-defined/saved routes between city pairs when planning (also frontend flight details page can use those stored routes on the map, which then will give ideas to pilots between options etc) What SimBrief gives you is another topic and should be checked before using (check SimBrief docs/forum) 'cause it does NOT auto generate always, to speed up things most of the time it gives you the last route planned between those city pairs so if someone tries a strange route (or sends in an old route from his company db) then you will have the same. Safe flights
  22. Use Laragon instead of Xammp, all will be fine
  23. "Any recommendations ?" Yes, please check the docs and inspect requirements, it will give you important clues about what you need/seek for at your hosting provider. Stay away from free hosting solutions, be sure you will get prompt support from your hosting, consider VPS (if your plans are big). Do your homework, define your requirements first, make your decisions, act later with a plan. What to use, how to use, when to use etc... Do NOT try to buy something without checking first. Like you can not use v5 with a new hosting, likewise you can not use v5 supporting acars solutions with v7, or hosting services providing support for v2/v5 will not run v7 etc. etc. And you can always use vmsHost for your hosting needs. At least you will always be sure about compatibility about stuff (phpVMS = vmsAcars = vmsHost) Good luck
  24. Here is the link if you can not find it easily https://forum.phpvms.net/forum/39-paid-services/
×
×
  • Create New...