Jump to content

All Activity

This stream auto-updates

  1. Yesterday
  2. Just to add to this, about 20 min after the flight, I used the Dispo Module to 'Ground' the aircraft, and when I did this, the PIREP files but as cancelled (as expected as the mod cancels the flight, I just wanted to ground the aircraft) but all the data pulled through. So I guess just an issues with FSUIPC killing the flight before I could end it. My sim was still open. Help!
  3. This error is coming from the connection between ACARS and MSFS. You shouldn't have lost your flight progress, though. Which aircraft?
  4. Hey. Just did the first flight with vmsACARS. Flight went well, tracked on the map and looked great. Then, when I ended the flight, about 3 seconds later, it killed the tracker, so I couldn't actually file it. When I reopened tracker, it would reopen for 3 seconds then quit, so sadly, that's my flight progress lost. Anyone else had this issue and any advice? Thankyou!
  5. Looks like this is a classic CORS (Cross Origin Scripting) error to me, check your browser console when the error happens, you will see the error live. Also please check the forum for problems regarding airport dropdowns, discord has the same/similar solutions provided. Main reasons: http vs https difference, app_url definition, ssl redirection, wrong url being used etc. Good luck
  6. I explained the reasons of that error to your VA's Admin... You have scenery scanning problems. Send your acars log to your admin for support Safe flights
  7. the issue of the acars opening and closing is gone but im having this error again
  8. Are you using the latest dev version of phpVMS available in the discord v7-releases channel? If you can go to your website in a browser, your database settings are correct. You could possibly be missing the departure and/or arrival airport in your database.
  9. Hello everyone, I need help and don't know how to proceed. When I try to fill in a manual PIREP, I get the following error in the Aport column (Departure/Arrival) The results could be loaded The days it worked and once, I don't know what I did. But it does not work. I have packed all data from PHPVMS into the main folder. I suspect that this is not the fault. I suspect that it has something to do with these settings, but I don't know exactly where? ## DATABASE SETTINGS DB_CONNECTION=mysql DB_HOST='92.204.222.108' DB_PORT=3306 DB_DATABASE='phpvms' DB_USERNAME='phpvms' DB_PASSWORD=**my correct PW** DB_PREFIX='' DB_SOCKET= Maybe someone has an idea and can help me so that I can finally fly relaxed again Thank you for help!!
  10. As ProAvia wrote, there a no stored html pages for anything in v7, almost everything is dynamic and database driven (except fixed stuff to deal with the data provided and render the end results). Only way to edit those "pages" is the admin panel, which offers you a simple WYSIWYG (What You See Is What You Get) type editor. You can prepare something outside (in an html editor) maybe and then copy paste the code to that editors "code" section. Other than this, you need to design is visually. What can be done, at best, is editing the relevant file rendering those pages, put some conditional checks in it and when a page is loaded then it can behave differently according to that page. Imagine it like, when you create a page named "fleet" and another one named "rules", you can have a different design for these two with this. Data will be provided by v7 but the look of the page will be different (up to a point of course) If you want real fixed pages, with separate and hand coded blade/php files (yes, they need to be like mypage.blade.php) then you need to have your own custom module for them. Hope this helps, good luck
  11. ProAvia

    Stored pages

    Each page is stored separately in the database. You can edit them thru the admin panel or (after backing up the database) directly using phpmyadmin - although it is safer via the admin panel. They are NOT stored in a file like they were in previous versions as far as I can tell.
  12. FSVKenny

    Stored pages

    I found what you are talking about, but I'm not seeing where the html pages are stored. Can I get to them through my ftp client? I want to edit them from the html side.
  13. ProAvia

    Stored pages

    However you access your v7 database. Different hosts use different panels or access methods.
  14. Last week
  15. FSVKenny

    Stored pages

    phpmyadmin database??
  16. ProAvia

    Stored pages

    Look in that database table - your answer is there.
  17. FSVKenny

    Stored pages

    Are the pages stored as html?
  18. ProAvia

    Stored pages

    Database, 'pages' table
  19. FSVKenny

    Stored pages

    Hello, When I add a new page in the "add New", where does phpvms 7 store the page?
  20. What does the log says ? You need to share it to get support I am trying to help one of your friends, probably the admin for the same error. Simply your server is not accepting requests (according to the log your friend provided), so if you can share your log, which can be found on acars/logs folder, we can have a look and compare it for similarities.
  21. So my VA has recently switched from vamsys to phpvms. At first, i was able to use the acars normally but after 2 days i encountered a problem with it saying that i hadn't entered ICAO code and showing the boxes yellow even though it was full. And now a new issue has risen with the acars showing that i am not logged in even though the crew site and my API key were both there. This just also occurred with the VA owner and we can't find a fix. Any help would be appreciated.
  22. Simple logic to see what is needed is to create a manual pirep or check an acars pirep directly from the database, then you can prepare your old data to match the new fields and import via some sql queries. Or of course you can write a custom module, utilizing laravel features to make it more complex if you wish. Most important things is the data units, flight (pirep) times are in minutes and all weight / fuel values are in pounds (lbs) for phpvms v7 database (regardless what you select for display). Also you may need to match your old pilot id's in those pireps with new user_id's you have in your system (don't mix them up with idents, I am talking about the real database indexed id numbers of users) Then you may need to match your old airline codes with your new airline_id's to have more matches / reflecting details. You can probably use the same timestamps for created_at, submitted_at, updated_at fields of v7, it will not harm the system but if you have detailed times you can use them too (created_at is the time a flight is started, submitted_at is the the it gets filed etc.) Pirep type (manual/acars), pirep state, pirep status can be same for all these imported all pireps. In theory if you can match the pilot id's with their old pireps, nightly cron can re-calculate their pirep counts and times according to that data (pilots will be happy). What you will lose is financial details of those pireps (can be done if you want to go that deep but I think this is not important compared to the pirep itself), and detailed acars data (like logs, flown points etc) you may have in that old system. Good luck
  23. Hi, I know this question is 5 years old. However, It would be very useful to get a list of required fields to be imported into MySQL. From IBEva, we also have the data exports about the former system we are still using. We can eventually do some ETL on this data and transform it to the same format as required by PHPvms 7. I know that Fleets, Pilots, and other types of data could be imported successfully using CSV. However, we know that this option is not available for Pireps. Is there any proper method to import this data into the system using a proper Laravel class to do this? Or the only valid method to import the data is writing the data directly into the database as a db import? Also, putting data directly into the Pireps table would not affect calculations for hour count for each pilot and also for fleets.
  24. No worries. I will do some digging to see what I did wrong somewhere else. Thanks for your time. I really appreciate it.
  25. Well then there is something else is going wrong, I know it works as designed by defining your route code there
  1. Load more activity
×
×
  • Create New...