Jump to content

Kyle

Moderators
  • Posts

    2282
  • Joined

  • Last visited

Everything posted by Kyle

  1. Sun Country Virtual Airlines is currently looking for people who are interested into a staff position in the virtual airlines. We are currently looking for KMSP Crew Base Manager and Events Manager! If you’re interested, then have a look in our site news here at http://www.suncountryvirtual.net/! Cheers!
  2. Thanks Nabeel. That did the trick. Cheers!
  3. I got this error when going to that link "admin/index.php/plugins" Warning: opendir(modules/Plugins/uploads/,modules/Plugins/uploads/) [function.opendir]: The system cannot find the file specified. (code: 2) in \htdocs\testing\admin\modules\Plugins\Plugins.php on line 42 Warning: opendir(modules/Plugins/uploads/) [function.opendir]: failed to open dir: No such file or directory in \htdocs\testing\admin\modules\Plugins\Plugins.php on line 42 Warning: readdir() expects parameter 1 to be resource, boolean given in \htdocs\testing\admin\modules\Plugins\Plugins.php on line 44 Warning: closedir() expects parameter 1 to be resource, boolean given in \htdocs\testing\admin\modules\Plugins\Plugins.php on line 71 But the rest shows the page and stuff. UPDATE Got this error when I uploaded your Airmail module in the Plugin manager. Warning: move_uploaded_file(modules/Plugins/uploads/webbyDavidClark-phpVMS-AirMail-bb84dfd.zip) [function.move-uploaded-file]: failed to open stream: No such file or directory in \htdocs\testing\admin\modules\Plugins\Plugins.php on line 544 Warning: move_uploaded_file() [function.move-uploaded-file]: Unable to move '\tmp\phpB11.tmp' to 'modules/Plugins/uploads/webbyDavidClark-phpVMS-AirMail-bb84dfd.zip' in \htdocs\testing\admin\modules\Plugins\Plugins.php on line 544 UPDATE: With those errors. You forgot to create an uploads folder in the admin module, then all of the errors goes away
  4. Question? Is this like a module manager or am I missing something? EDIT: Nevermind, I know what it is now. My eyes are tired. lol. Thanks for the share! Do you mind if I can use that module to help easily install my modules for the others?
  5. Hey, I need some help here dealing with multiple parameters code. I have 6 retired status, but I want to look for pilots who has a status of 2 and 4 together I tried the following but not a success $params = array('retired' => 2,4); $params = array('retired' => 2 AND 4); Hopefully someone can help me to achieve that. Cheers!
  6. Where's the Airports Look Up come from? They might blocked your website?
  7. Pretty Interesting events you have over there.
  8. Since you have the Custom kACARS, do you have the module from your custom kACARS Package? Be sure to upload it into core/modules. Because I went directly to the module, and it tells me the module isn't uploaded. Also, next time if you are having issues with your custom kACARS, please let the developer know in email. I don't know what's going on with your number 1 issue. Gotta leave that for the experts.
  9. I gotta say so far, I gotta love Github right now. It can even easily track your file changes as well even message the commits. Very handy and I definitely recommend for add-on developers to use it. It's easy to use, but you just gotta learn how to use the SSH Bash stuff. It's easy to learn as well.
  10. We keep all rejected applications on records, just in case if someone joins with different name or different email. For the inactive pilots, we also do the same thing, keeping them, and that way we don't lose our PIREPs and that way the pilot won't have to start over as well if they come back. We also, manually go though pilots who hasn't flown a flight within our requirements, we easily set their status to Termination Warning and that way, the auto mailer will send the notification and they will have 7 days to re-meet the requirements. If they do not, then we set them inactive and keep them in the database. That's the way we do it, so we can easily track and not lose everything. Plus, we even built a custom account history recorder system, so we can see what the pilot's past history was. Like for example - "Pilot Application Rejected" "Pilot Issued Termination Warning" "Pilot Terminated For Inactive" or "Pilot Account Restored".
  11. Module Updated Files Changed: core/common/PilotLoginsData.class.php View Changes Download Here
  12. Okay, found the bug. Why the heck did I remove the table prefix from the SQL? LOL. Go to core/common/PilotLoginData.class.php and go to line 21-24 - find the code... $sql = 'SELECT l.*, p.* FROM pilotlogins l LEFT JOIN pilots p ON p.pilotid = l.pilotid '; And replace with that new code.... $sql = 'SELECT l.*, p.* FROM pilotlogins l LEFT JOIN '.TABLE_PREFIX.'pilots p ON p.pilotid = l.pilotid '; That should fix the issue. Will release a new build in a sec.
  13. Give a few mins. I'll download my module and see what I can debug. I'll let you know what the issue is. Thanks!
  14. Do me a favour... Go to core/common/PilotLoginData.class.php and go to line 21-24 See if these lines are the same to this code? $sql = 'SELECT l.*, p.* FROM pilotlogins l LEFT JOIN pilots p ON p.pilotid = l.pilotid '; If not, then remove the following lines and put the one as I posted the code.
  15. There was a table changes. If the table "phpvms_pilotlogins" is that. Then run this query in phpMyAdmin to change the database table title. Be sure your in your phpVMS database and run that SQL Query. RENAME TABLE phpvms_pilotlogins TO pilotlogins
  16. Module Updated Files Changed: admin/modules/PilotLogins/PilotLogins.php View Changes Download Here
  17. Ekkk!!! I almost forgot to put it in the update! I'll fix that right away. Thanks!
  18. Who always gets ticked off when you have a bunch of inactive members or people with age less than 13 years old joining the VA and faking birthdays in their application? Or an inactive pilot wants to rejoin but won't still fly? This is my question to the inactive pilots, why did you join the VA and all the suddenly you don't want to fly? Waste of my time sending them the auto termination warning emails and terminating them. Kids joining the VA, oh boy... That's a hellish thing to deal with. At SCX VA, we usually get few applications with age under 13, and we have to reject/delete their application and ban their IP address in our ACP. Right now, we have about 10 banned IP's in our IP Ban system with kids under 13 years old having their application rejected and kept in the database. They obsivoly can't read the handbook or our policy. My question, how do you deal with inactive pilots and kids under the age 13?
  19. You will need to run the install/install.php to install phpVMS
  20. It is the live fuel price look up to vaCentral. Check your local.config.php file and make sure they have those and the same value set. That'll stop the issue hopefully. Config::Set('VACENTRAL_ENABLED', false); Config::Set('FUEL_GET_LIVE_PRICE', false); Config::Set('CHECK_RELEASE_VERSION', false); Config::Set('CHECK_BETA_VERSION', false); The attachments are disabled and it's still being recovered by Nabeel right now.
  21. Module now has been uploaded to Github : https://github.com/Vansers/phpVMS_PilotLogin Download Here
  22. Module has now been uploaded to Github. - https://github.com/Vansers/phpVMS_phpBB_Auto Download Here
  23. Module Moved to Github here at https://github.com/Vansers/phpVMS_Airport_Charts/tree/ Download is here
  24. But, the thing that will concern me is the security with external SQL connections and ETC. You know. I'll have to think about it.
  25. What's wrong with Google Maps?
×
×
  • Create New...