Jump to content

servetas

Moderators
  • Posts

    1726
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by servetas

  1. I will try to check how it works exactly. If i find out anything, i will offer a free "personal" update for those who may want.
  2. Version 1.3 has been uploaded. I have also added a rank check based on the aircraft which has been selected for each one schedule.
  3. As i stated above, i do not want to built my modules based on other modules which will might get updated by their developers. It the developer decides to change its module's database tables structure then my module might not work correctly. I can only hook my modules to this module. Of course, i can create an updated version for each one client based on his own needs. As for the Tour Module made by Simpilot, i do not think that i can hook it in any way...
  4. Today, i restarted working on the project as i had stopped it for a couple of days. I have already added the following functions: Hours Check Flights Check Landing Rate Check Days of Membership Check Any other suggestions?
  5. You can add them via your phpmyadmin. The table is named (your db tables prefix)_pilots .
  6. You will have to get in touch with your web hosting company in order to increase this limit.
  7. Does you site run bootstrap? Check this please: http://forum.phpvms.net/topic/9746-bootstrap-and-google-maps-fix/
  8. Check this please: http://forum.phpvms.net/topic/18860-i-have-a-xxxxxxtpl-file-not-found-error/
  9. Problem solved. TourData.class.php file should be: public function get_sog_schedules() { $sql = "SELECT * FROM ".TABLE_PREFIX."schedules WHERE flightnum>='SOG00001' AND flightnum<='SOG00015' ORDER BY flightnum"; return DB::get_results($sql); }
  10. Pilot Academy v2.2 Some of the headers showed Greece Airways Virtual. Edited these files and everything should be ok The new version is available by Simpilotgroup. I am open to any suggestion or request you may have.
  11. Please upload and send me the files in order to check them. Send the to info(at)php-mods(dot)eu . I will check it and i will let you know...
  12. I have uploaded version 1.2 . There were some other problems with the aircraft on the main table of the module. Now everything work correctly. Thanks to @aarbee for the debugging.
  13. The problem is that i am not able to hook my module so easily to other's modules. Of course i can hook it with my own modules. If the developer of the hooked module decide to update its module, this means that my module might not work correct... What to you mean about membership awards?
  14. First of all remove this from the tour_schedules_sog.tpl file (line 14): $schedules=DB::get_results($query); Check if it works now...
  15. Go to core/common/PilotData.class.php file and find this (in my file it's in line 219); public static function getLatestPilots($count=10) { $sql = 'SELECT * FROM '.TABLE_PREFIX.'pilots ORDER BY `pilotid` DESC LIMIT '.$count; return DB::get_results($sql); } and replace it with this: public static function getLatestPilots($count=10) { $sql = 'SELECT * FROM '.TABLE_PREFIX.'pilots ORDER BY `joindate` DESC LIMIT '.$count; return DB::get_results($sql); }
  16. Probably yes. I would suggest you to get in touch with your hosting provider.
  17. Try WHERE flightnum > '00000' and flightnum < '00004' "; Â Just to test
  18. I would suggest you ti create a TourData.class.php file on you common folder and include the select function there. Personally, I do know why it does not work and i do not suggest including database functions on your .tpl files.
  19. Thank you Ryan. Will try to add them also.
  20. I just uploaded version 1.1. There were some wrong functions in the previous version which have now been corrected. The download link can be found on the first post. Please let me know if you have any problem, question or suggestion.
×
×
  • Create New...