Jump to content

Strider

Members
  • Posts

    1824
  • Joined

  • Last visited

  • Days Won

    53

Everything posted by Strider

  1. I don't quite understand what you mean? phpvms by default puts the roster into hubs and shows them. This module lets you click on a hub and get more detail about the hub. Especially if you have set the roster to not show by hub.
  2. Regardless of phpvms version in the local.config file you need to change the lines that have been mentioned above. The module you are using should use that. But if I understand what you mean, you want to bid on more then 1 flight. Check the settings of the module in the admin side for that module. The code mentioned above just changes the ability for pilots to bid on the same flight.
  3. By the sounds it, the code is getting the information sent to it wrong, and instead of showing the flights, it is showing the no routes found. Sometimes it is just a simple change of code in the if/else statement. I have had that happen loads of times. Change where the "no routes found" to either the first part of the if/else and the other code to the other. so if it is: if($schedule = "true") { *code for schedules } else { echo = "No routes Found"; } Change that to: if($schedule = "true") { echo = "No Routes Found"; } else { *schedule code } I know the code i used most likely doesn't match the code in the module, but it is just to illustrate my point.
  4. During the reinstall, did you delete the tables created the first time? If not did you change the prefix when installing? If you use the same prefix it can cause errors. Either use a different prefix or remove the tables created. As above don't remove recaptcha, make sure you have correct keys, and have put the right key in the right place. Also have you changed the php version?
  5. Can anyone share their navdata table with t he latest cycle?
  6. View File Export Pilot List This is just an edit to the import module in the admin side, that allows you to download the pilots list in CSV format, without the need of going to phpmyadmin. Submitter Strider Submitted 05/11/20 Category Addons
      • 1
      • Like
  7. Version 1.0.0

    438 downloads

    This is just an edit to the import module in the admin side, that allows you to download the pilots list in CSV format, without the need of going to phpmyadmin.
  8. It doesn't give all the details from the pilots table, but it can be edited to do that. I will be working on the import function so if you have a server failure, and have lost details but you have downloaded the CSV you should be able to recover the pilots from that.
  9. Strider

    Export Pilot

    https://github.com/Strider2/export_pilot There you can export your pilots list.
  10. I have created the code, and it works https://github.com/Strider2/export_pilot There it is.
  11. Where is that located? so I can see how it is coded.
  12. Is there away to export the pilots list into CSV format? Rather then going through the db as it makes it very difficult. Something like the way exporting the schedules can be done. I use currently phpvms 5.5.2
  13. In the simbrief.apiv1.js change the url of your site in that to https, it should work then. And any other link in the module to https.
  14. I have fixed that problem, if you have the module, just download and replace the template file codeshare.php, edit it before uploading, as you will need to replace SKIN NAME HERE on line 63 with your skin name.
  15. The size of the DB i doubt is causing your load times to be terrible, that is usually down to heavy graphics. But instead of deleting that table, just empty it. it might force people to logout. Try also optimising your tables and deleting cache.
  16. You may need to do a restore on your db, it may have gotten corrupted maybe by a bad update, or an incomplete update. If you are on a VPS or dedicated you can do that in cpanel yourself, if on shared hosting, you will need to contact your host about doing a db restore or reboot.
  17. I have released version 1.4 You can now include flight numbers of the airline operating the flight. So if you have a codeshare flight and have it under your own companies flight number you can show the flight number of the operating company.I have also removed the image inputting input box in the add a new codeshare, as it is not required, as the airline code will suffice. Download: https://github.com/Strider2/codeshare
  18. Why is moving to anothr host not an option?
  19. phpvms 5.5.2 will work with php 7.1 it wont work with any php version any higher.
  20. It will work in php 7.1 but it will not work in 7.2 without a lot of editing.
  21. It only seems to have trouble with submitting data to t he db, it can read the db
  22. tried a fresh install, even tried nabeels updated phpvms that returns to tpl's but no it didn't work either.
  23. Simpilot 5.5.2 I litteraly just transfered the files and db over from the backup I got before my last host closed up shop. I am not sure it is reading the DB, as if I try manually from a bid it says the schedule doesn't exist, but it does.
  24. That has gotten that error gone, but the pirep still doesn't submit. It is telling me the schedule doesn't exist now, even though the schedule does exist. And it seems to be accepting pireps from smartcars and my custom kacars, but the pirep does not show in the admin or the db. It is triggering the a pirep has been submitted email but nothing shows. The php version my server is using is 5.6, I can go back to 5.4 but that doesn't seem to help.
  25. Is anyone going to help???
×
×
  • Create New...