-
Posts
769 -
Joined
-
Last visited
-
Days Won
124
Content Type
Profiles
Forums
phpVMS Resources
Downloads
Everything posted by DisposableHero
-
Please help me installing phpvms for my virtual airlines
DisposableHero replied to StefanoIJ's topic in Support
Hi, There is a section in the forum for paid services, if you can not install the software then you can check that section and request services. https://forum.phpvms.net/forum/39-paid-services/ Good luck -
Airport List Not Showing in Multiple Areas for Some Users
DisposableHero replied to CartesianPixels's topic in Support
Some servers do DROP data (especially http post data) when doing that forced redirection, thus it can cause more/deep problems. Soft redirection still allows http being used. Therefore it is strongly advised to inform people, force them to do their vmsAcars (or any flight tracking software) profile settings right, check their favorites etc. and always use https://.... in their records. Good luck to all -
Airport List Not Showing in Multiple Areas for Some Users
DisposableHero replied to CartesianPixels's topic in Support
In simple terms, those users are not using correct url while visiting your site and using your services. This is a very well known issue and discussed here in this forum and in phpvms discord several times, so yes some others also encountered similar results... Both ended up checking / fixing their settings and advising their pilots to use proper addresses Good luck @CartesianPixels -
Don't enable Disposable Basic/Special expenses and income, Don't define Fuel prices, Don't define Ground Handling prices, Don't define Subfleet costs, Don't define Pilot salaries, Don't define Fare Price/Cost, Simply set everything as 0 usd/eur if leaving them empty is not possible. Then you may need to remove some stuff from frontend blade files to hide cost/balance related information. Good luck
-
Do this with laravel relationships and by only using the `Pirep` model please Then add a csv export to that code, there you go, you have something built for phpvms v7 as an addon. (A widget will do the trick, no need to go for a full scale module) Condiser this as a learning target. Good luck
-
There is a setting at admin side for this, works only if your cron is working properly. Admin > Settings ... Acars group, Live Time Set it to something like 2 or 3 (hours) according to your needs.
-
Flights don't show when I assign fleet to flights
DisposableHero replied to CartesianPixels's topic in Disposable Hero Addons
Hi @CartesianPixels, The "issues" you mention are all related to your phpvms v7 settings and not theme or addon related (also not related with acars), therefore I would kindly request you to spare some time and pay attention to the guides published here in this forum about initial setup. Most probably you are restricting yourself with settings thus not able to see any flights or aircraft. Hope this helps -
And if that settings is enabled, it works (during calculations) so nothing wrong in there. Displaying them combined is theme related.
-
[SKIN] Disposable Theme (Current)
DisposableHero replied to DisposableHero's topic in Disposable Hero Addons
My pleasure, good luck with the update. -
[SKIN] Disposable Theme (Current)
DisposableHero replied to DisposableHero's topic in Disposable Hero Addons
This topic may help to get download links of latest dev (development) builds -
[SKIN] Disposable Theme (Current)
DisposableHero replied to DisposableHero's topic in Disposable Hero Addons
It is clearly stated in theme readme (literally it is the third line), that it needs a much recent build compared to your phpvms v7 (which is beta.5 and almost a year old). So in theory, you have two options; 1. Keep your current build (beta5) and stick with default theme (or you can use older builds of Disposable Theme which are compatible with beta5) 2. Update your phpvms v7 to the latest development build and use latest addons/themes I would prefer the second option Good luck -
Cargo and weights direct interactions with msfs
DisposableHero replied to Trony70's topic in Development
No It is not possible at the moment (and I am not sure about future development for this). vmsAcars does not write values , it only reads them from the simulator whenever needed. It is a pilots responsibility to load his/her aircraft properly before starting a flight and releasing parking brakes for pushback (or similar in helicopter ops) -
[resolved] I don't receive registration confirmation emails!
DisposableHero replied to vFAB's topic in Support
Then either they are not telling the truth or you are missing something! Because when configured properly mails do work, I can say you that and provide evidence to prove that Check your logs for errors and please follow the docs for required details when requesting help. Good luck -
[resolved] I don't receive registration confirmation emails!
DisposableHero replied to vFAB's topic in Support
https://docs.phpvms.net/config/email#smtp-configuration It simply says ; For detailed settings about host, port and encryption details please check your hosting control panel (or VPS). These settings are not generic and can differ between hosting companies, even on a custom VPS these settings are local to your install (packages installed etc.) Therefore there a no generic examples for SMTP and mail settings. Just don't forget to clear application cache when you make .env changes. -
Nice idea and tool for keeping stuff (and staff) under control
-
The setting is at vmsAcars module at phpvms admin area, and it should be disabled until MSFS/Asobo provides a solution for the bug so 3rd party application can track (and allow) pauses.
-
[ADD-ON] Disposable Extended Pack
DisposableHero replied to DisposableHero's topic in Disposable Hero Addons
Everything explained, including Frequently Asked Questions (FAQ), in downloads section. Please spare some time and read it carefully. https://forum.phpvms.net/files/file/39-disposable-extended-pack/ -
No, I am not sure what you want to do with DispoBasic but you still need to use the phpvms v7 admin to do management stuff. My modules are not replacing core features, they add new features, outputs and pages only.
-
You are doing something wrong then Double check the folders, folder names etc. It is pretty much simple and straight forward stuff.
-
You need to do only one of them, Either you download the latest release manually and upload contents manually Or you pull everything from GitHub Or you use the phpvms module installer method with the downloaded file Pick only one method, not both or all
-
List of pilots on a page external to PHPVMS 7
DisposableHero replied to vFAB's topic in General Discussions
Hi, for this to happen you need to use API (best way) and external calls to those endpoints, or you need to load a laravel application instance in your homepage to get what you need (uses more server resources and less practical), also you can define an external connection and pull data out from the db directly (worst way, you will lose lots of stuff). For some basic examples and pre-built API solutions you can check DisposableBasic addon, it provides some endpoints for VA admins to pull data out of v7. LiveMap is a different subject, it runs with java/rivet calls, so it is already possible to implement it somewhere outside phpvms v7, check how the map widget works and mimic something outside. Good luck -
Export/import is only two steps, which can be done easily via command line interface (aka command prompt) of the server or via your web based / graphical sql workbench. I would prefer using the command line interface (CLI) if possible, it is much faster and practical. // Exporting a DB mysqldump your-database-name-here > the-name-you-want-to-use-for-the-export.sql // Importing a DB mysql -u your-db-username -p < the-name-of-the-dump-file-you-exported.sql For GUI / workbench solutions you can find lots of guides (even videos to watch) via Google, your current hosting may have one matching the tools they offer. Using a GUI solution may be slow and risky due to timeouts, upload limits etc, therefore you may want to export each table separately and then import one by one. Takes time and effort but works. Editing the settings/config of phpvms v7 is again a one step task, just change the database server/user details in your .env file, save it, done. Nothing special needed except cleaning the application cache for the changes to take effect. Just be sure the database solution you are going after is allowing external connections and properly configured for it, you can (should) test it beforehand with a new/fresh install too to see it works and performance is acceptable for you. Good luck
- 1 reply
-
- 1
-
-
For the WASM/LVAR module to be installed by FsUipc main package, it needs to be selected (or a full install needs to be completed). Therefore installing FsUipc does NOT mean that LVAR module is installed automatically. Be sure that user has "fsuipc-lvar-module" folder under the community folder @Alexan, if not it needs to be manually downloaded and installed as per docs. If you are not debugging stuff "FsUipc WASM Module 1.0.4" is enough for download and install, otherwise the one + WAPI 1.0.4 is needed. Safe flights
-
Ok, then there were some changes between my log checks and yours Glad it is sorted out.