Jump to content

DisposableHero

Members
  • Posts

    624
  • Joined

  • Last visited

  • Days Won

    97

Everything posted by DisposableHero

  1. I use Laragon (the full version if that matters), works just fine ... Tried and installed multiple php , apache and mysql/maria versions (for development testing) . Even you can install phpvms 5.x series with proper versions What i needed was to update the composer it has (for v7 composer install of vendors, which is an optional thing). It can run v7 without any changes, out of the box (but works better when you have full control over it)
  2. When you export from Database, you should import from database too ... Exporting from A and then trying to import it from B does not work, cause the data format is different. Just a simple example for flights: Export/Import from admin : Airlines are exported/imported with their icao codes Export/Import from database : Airlines are exported/imported with their id numbers Export/Import from admin : Flight days are human understandable like 12345 Export/Import from database : They are masked values Export/Import from admin : You can import/export subfleets and fares of flights Export/Import from database : None of the above would be possible (unless you are really good at sql querries and excel etc) You can export from database, then work on the file to make it compatible for admin side import, this will take time and needs upmost attention to detail.
  3. I had similar errors with XAMPP, thus used WAMP first (with virtual host configuration) then switched to Laragon (which is much faster and capable of things compared to XAMP and WAMP). Though i saw some friends using XAMMP for their local tests but I never asked how they managed to get it work. If possible try Wamp or Laragon.
  4. Check FontAwesome website and look for the icon gallery (or something like that, i forgot the name of that page). Hope this helps
  5. Upload your own logo to your server... Then edit the blade files to use your logo files instead of the pre-defined / default ones. Original Logo (example) <img src="{{ public_asset('/assets/img/logo_blue.svg') }}" class="rounded img-mh50"> Your Logo (example) <img src="{{ public_asset('/myfolder/myanotherfolder/mylogo.jpg') }}" class="rounded img-mh50"> or <img src="{{ public_asset('/myfolder/mylogo_big.png') }}" class="rounded img-mh100"> Commonly, editing app.blade.php of your theme would be enough to apply your logo to all other blades. ( This depends on the theme you use, default / disposable / stisla uses the same logic but others may be different )
  6. This is not v5 so do not expect them to behave the same It works as I described above, sorry if it does not fulfill your expectations or needs but it is how it is developed for v7. "Live" Map will not show completed flights, that setting description may be a little bit confusing, i understand that (i thought the same way at first, and set mine to 0, then I realized how it works and how it got related with cron etc and set mine to 1).
  7. This is something not developed yet, unless you build your own module and interact with aircraft state directly, all members of your fleet will always be available for flight regardless of their current situation.And as you pointed out, aircraft location will be updated according to the last valid pirep recieved. Also a similar thing happens when a diversion occurs, which is harmless but knowing it may prevent surprises. Flight from a to b , diverts to airport c , both pilot and aircraft will be placed at airport b (but there will be pirep field entry about the diversion destination) Hope both gets developed soon.
  8. It is how it works, it is a Live Map They will show up when the pilots starts the flight and will be gone when the pirep is filed (flight finished). And when an error occurs and flights got frozen, like acars crash, sim crash, dropped connection etc then the Acars Live Time kicks in (with cron) and removes any frozen pireps from the map according to your settings. If it is not acting like above, for example if the live flights not being shown on the map or being invisible suddenly (during cruise or so) and then being visible again, it may be related to your server though (or the api calls between acars client and your phpvms). I faced a similar behaviour once and realized that there was a server update ongoing (which i skipped to add my calendar/reminder) thus the connections was being dropped etc (not related to phpvms)
  9. DisposableHero

    Ranks

    Nice , thanks for sharing your work with other users ...
  10. Then it is something with your hosting / server ... If you are able to visit your site and your pirep is displayed at the site, then this means that you are able to send data but not able to get proper response back. This may be the reason acars keeps the button file flight enabled. And if you really did not changed nothing on your server and phpvms install/configuration, then you may need to consult your hosting provider. It may be a security measure kicking in and blocking api responses going out somehow.
  11. Seems like you are not able to connect to your site ... Either it may be a server issue or a local issue (firewall , router, security software etc) blocking connection (and api access) 04-20 20:58:47|INFO; Connection to phpVMS timed out, trying again 04-20 20:58:47|ERROR; AcarsLib.Errors.RequestError: Connection timed out
  12. Logs of acars (check acars logs folder), not logs of your phpvms/laravel. And things do change ... I was not sick 2 days before somebody passed me the famous covid-19
  13. Unfortunately yes That part is not developed yet ... I hope and wish to have it soon
  14. Just have look to this module; Until you build your own or phpvms offers a better solution, you can use this to display your pireps, airlines and fleet etc. Safe flights,
  15. Normally not. I am really out of suggestions, there is something strange and wrong going on your install ... Please do open a bug report (at GitHub), attach your laravel logs, config details etc and request support from developer himself. (He may be busy but he will know and help better for sure)
  16. That last line gives the clue ... You are trying to use smtp, by editing the env.php file but it is not being read by your phpvms and it still tries to use the default mail function (probably from config/mail.php). What i can think of is; 1. You did not updated your phpvms and still using something old (but trying to use env.php) 2. You tried to update your phpvms but it was not finished or completed or the migration failed (visit admin area after uploading files or just visit yoursite.com/update) 3. Your files under config folder are not updated (or somehow reverted back to older coppies) and your config/mail.php is not reading the env.php file properly. Rest is up to the developer @Nabeel, he may give you more details or support about this.
  17. what is the error in your laravel/phpvms log ? ( check your log from storage/logs folder, there should be some error about mails ) did you tried MAIL_ENCRYPTION='tls'
  18. # EMAIL SETTINGS # Look at the available mail configs in config/mail.php # Also refer to the Laravel docs here: https://laravel.com/docs/8.x/mail MAIL_DRIVER='smtp' MAIL_FROM_NAME='Your VA Name maybe' MAIL_FROM_ADDRESS='noreply@yoursite.com' // MAKE A NEW EMAIL WITH HOSTINGER MAIL CONTROL PANEL AND USE IT HERE MAIL_HOST='smtp.hostinger.es' MAIL_PORT=587 MAIL_ENCRYPTION= MAIL_USERNAME='noreply@yoursite.com' // SAME EMAIL USED ABOVE MAIL_PASSWORD='password for that email' I think this will work You are sending email so you need smtp and outbound port ... If above does not work, try MAIL_ENCRYPTION='tls'
  19. https://docs.phpvms.net/config/files#recaptcha
  20. Use Google Recaptcha We are at 2021, you should be using latest dev which is 210413.f5e834 ( dated 13 April 2021 = 210413 )
  21. So you are still using an unsupported php version for v5 Hope everything goes well and it works as you expected. Best wishes DH
  22. Until i realized that DH is DisposableHero , i tried to make a connection between the error and the Decision Height (DH) 🙃 Glad that did not lasted long. "Dispo" or "Hero" is what people use as nicknames for my nickname, but "DH" is good too. More aviation related at least Thanks ProAvia.
  23. Just saw the cause of your error ... Are you really sure that you are on the correct php version for v5 series ? Because that `Deprecated: define(): Declaration of case-insensitive constants is deprecated` error belongs to php versions 7.3 and higher. So being on a non compatible version of php may result more error if you continue, you may even not be able to complete the install or if it continues, you may not be able to setup / config it properly. And this may be the root cause of the config editing issue you faced earlier Side Note: I just tried Laragon, with changed php and mysql version to test it. It is really easy to configure the php version (install new ones or old ones), switching between them etc is pretty straightforward. If you did not done until now, please do check the Laragon support link from my first post and make your Laragon fully compatible with v5 series before doing anything else and wasting your time to solve errors.
  24. I think I saw this somewhere, somebody got the same errors ... Let me check again but as far as i remember, he was told to continue
×
×
  • Create New...