Jump to content

Parkho

Moderators
  • Posts

    1381
  • Joined

  • Last visited

  • Days Won

    6

Everything posted by Parkho

  1. If the module is written to comply with 5.5x then you shouldn't have any issues unless you have bad installation. I'd contact the author of the module for help.
  2. What's the version of your phpVMS? The latest stable version is 5.5x by Simpilot. Also, please clarify when you say you're using current sql.
  3. Ok then check to see if your names are all the same as the system is case sensitive.
  4. The reason you get that error is that you actually haven't defined your module for the system. What you need to do is to create a folder in "core/modules" named "shoutbox" inside the folder you'll need a file named "shoutbox.php" inside that you'll need to add the following code: class shoutbox extends CodonModule { public function index() { $this->show('/shoutbox.php'); } } Then you'll need to create another file named "shoutbox.php" and place it in your "lib/skins/yourskinfolder" inside that file you'll need to add whatever codes you want. This is how you make a module that actually works. Cheers
  5. you'll need to do a cron job in your cpanel after setting "BID_EXPIRE_TIME". What I did instead was I added a code to frontpage_main.php to cancel the old bids once my website was opened by anyone. Here is the code. Just add it to the top of your "frontpage_main.php" after setting "BID_EXPIRE_TIME": <?php SchedulesData::deleteExpiredBids();?>
  6. If your pilots submit charter flights to your website through kACARS and you receive them in your admin panel then its income should be calculated automatically once you accept the PIREP.
  7. Are you using phpVMS? Cause in the link you provided it seems to be using something other than phpVMS. If the answer is yes then you might want to check your installation or better yet re-install the software.
  8. Open local.config.php in Core folder and look for the following: Config::Set('ACARS_LIVE_TIME', 720); 720 is the number you need to change and is equal to 12 hrs.
  9. The easiest way to fix this is to create an email account with your host and use it for phpvms.
  10. It came across my mind that in order to simulate pilot jump seat, you'll have to have some kind of a location system or module otherwise it's just something useless since the schedules and flights are not based on pilot location by default but if you just want this to be there then Web541's module is your answer.
  11. I will need access to your site to find out what's wrong. If you're willing to do so, please send me your cpanel login info in private message and I will fix that for you.
  12. What about pilot location is it set?
  13. Have you added your airports and aircraft in admin?
  14. It's already there. There must be a slight difference between the aircraft names that causes that.
  15. Are you on a free hosting?
  16. You need to open dashboard.php file inside your admin folder and add them there.
  17. I'm unable to view your attached image!!!
  18. Latest version is 5.5x by Simpilot
  19. Noted and images added. Please download and replace "lib" folder at github
  20. I removed all the styles because of the use of different skins by VAs, so yes that's the way it looks.
  21. There is an update. Please download and replace modules/wthr/wthr.php and templates/weather/weather.php from github. Change log: -The use of phpVMS built-in functions has been avoided. Reason Some airfields are not yet added to phpVMS DB and that makes the module to not showing the results for all ICAOs.
  22. I always wonder why some of Airline mangers avoid upgrading their phpVMS and insist of using the old versions!!!!!!!! Everyone, I am creating these new modules with the latest version of phpVMS which is 5.5x by Simpilot. Since I'm creating these modules as my hobby and never get paid for them and still am willing to give support for my creation, I will not be able to make them for the old versions and support them too. So, I will much appreciate it if you guys upgrade your software to avoid further issues with my modules. Thanks
  23. Aviation Weather V1.0 ---------------------------------------- A module to retrieve weather information for a specific station using airfield ICAO ---------------------------------------- Source: https://www.aviationweather.gov API Install: 1. Download the repository from Git-hub 2. Unzip and upload in folders order 3. Access it by <?php echo url('/wthr') ;?> 4. Enjoy!!!! ----------------------------------------- Demo & Support: Visit www.parkho.ir and use contact me form for support and pilots-modules for demo. ------------------------------------------------------------------- Screen shots:
  24. Not sure what you're trying to achieve here but kACARS only sends one report at a time. When you say both airlines, each airline you create has a unique code that is later used in creating schedules. kACARS can only load one schedule with the airline code and then sends the report to your site for further processing which is the way it's supposed to be. I If you mean saving multiple reports for later to send them all at once for different airlines, yes that's possible but you'll have to pay kACARS developer to add the saving feature to your client.
  25. Yes it's doable but you're gonna have to either create an admin module or change some major core files to achieve that.
×
×
  • Create New...