Jump to content

servetas

Moderators
  • Posts

    1726
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by servetas

  1. The first error means that a page of your website is trying to call function phpVMS of class Profile and it does not exist (by defualt it does not exist. You should search on your phpVMS files to see which of them is calling this function. I would start with modules I recently installed and proceed backwards. As for the second error, could you please share with us your website url?
  2. Changed, you should be able to login now.
  3. Yes, you can remove it but it is not something I would suggest to as you will get a lot of spam registrations. Recaptcha is there for some reason. No offense but in our days web hosting is not that expensive and if you do not have at least 5€ for your virtual airline website per month then it might not be for you... It is just my personal opinion and I do not mean to offend you in this but there is not any successfull VA in any free web hosting plan.
  4. The registration form includes a recaptcha field which seems that is not shown in your registration form. That's why your pilots are not able to proceed with their registrations. As some others have suggested to you, it would be preferable to move from free hosting to a payware provider.
  5. Hello, I am not offering support for the payware modules in the forum. Please open a support ticket through PHP-Mods billing system via your account and I will be happy to assist you. George
  6. I do not think that this is the issue. His main page shows 8 while in reality his virtual airline has 7 pilots. I would suggest checking the phpvms_groupmembers database table because it seems that you deleted a pilot but the pilot's entry in the phpvms_groupmembers table was not removed.
  7. In the statistics part, what is the script that is calculating your total pilots? What does your admin center indicate? 7 or 8?
  8. The module has been developed for phpVMS 5.5. I might give it a try and implement it in phpVMS 2.1 considering that the two system are calculating pilot money different.
  9. This does not have to do with phpVMS itself. It is a php error and it is based on your web hosting plan php settings. I would suggest getting in touch with your web hosting provider. tutmeister was correct about free hosts.
  10. Can you try replacing: $last_location = PIREPData::getLastReports(Auth::$userinfo->pilotid, 1, PIREP_ACCEPTED); with this: $last_location = PIREPData::getLastReports(Auth::$userinfo->pilotid, 1, PIREP_ACCEPTED); $last_location = isset($last_location->arricao) ? $last_location->arricao : Auth::$userinfo->hub; Also, replace this: if($last_location->arricao != $schedule->depicao) continue; with this: if($last_location != $schedule->depicao) continue; In case the pilot does not have any validated pirep, the system will take into consideration the pilot's hub.
  11. I will think of it for a future update maybe. Do you know any api provider for the real world stocks?
  12. During all these years, I have noticed that va administrators are keen on finding a way to allow their pilots to use their virtual money. I have already released a Piloy Shop module but in reality, purchasing things in Pilot Shop does not give you extra capabilities except the downloadable items. There were a lot of virtual airline who had come back to me and a wide number of custom solutions has been offered. Solutions which can't be released to the public because most of them require special knowledge and several updates inside the core of the phpVMS system. Approximately one year ago, a virtual airline got in touch with me and requested the development of a property system. A system which will allow the va pilots to purchase airports, aircraft and other property types. Pilots will purchase properties and they will make money from them based on their usage inside the virtual airline. I developed a system based on their needs and I started thinking that this is something most of the virtual airline owners will like to have. And this is it, I finally managed to clean up its code from several custom things the VA requested and I believe that this is something some of you would like to have. I am not proceeding with the release for now. The module is initially shared with the PHP-Mods va partners but I would really love to hear your thoughts about it. I have written a manual which includes several information about the module. It can be found here. Also, I have uploaded a demo phpVMS website from where you can login as an administrator or as a user to check the module. You can do whatever you want in the demo system and let me know in case you have any question or in case you spot any issue. I would be really glad to hear a feedback from the community. Thank you!
  13. What about this? <?php echo date('d', strtotime($data->date)); ?> More information can be found here: http://php.net/manual/en/function.date.php
  14. Have you tried getting in touch with crazycreatives? As soon as we do not have access to the core of these modules, I do not believe we can assist you nor are you able to publish the modules to allow us help you.
  15. phpVMS v2.1 was developed by Nabeel but it is almost compatible with php versions up to 5.3. phpVMS v5.5 was developed by simpilot and it is compatible with php versions up to 5.6. I believe it took its name because David tried to make v2.1 compatible with the latest php versions (such us 5.5-5.6) and as a result it took its versioning from PHP. phpVMS v3 is based on a complete different framework and it is currently under development.
  16. Are you sure about phpVMS 5.3? There are 2.1 and 5.5.. Open your admin/maintenance.php and check line 46 (approximately). It should include something like this: if(Config::Get('CLOSE_BIDS_AFTER_EXPIRE') === true) { Does it?
  17. Are the bids shown in your website? If yes, I would suggest pasting the part of code which shows the bids to identify the source of the data (considering that you have empty the bids table).
  18. Let's see how many of you are using phpVMS 5.5 and 2.1.
  19. I believe that you would be able to use it. I haven't purchased it but it should be compatible. Bare in mind that making a module compatible with phpvms 5.5.2 is very easy as soon as it is not. You will just have follow a few standard steps. 1) Open the module file in the common folder and check that all of its functions are "public static function" instead of "public function". 2) Change the extensions of the template files from .tpl to .php (just rename it from blahblah.tpl to blahblah.php). And voilà!
  20. Basically you can update the schedule_searchform.tpl or .php template file and completely remove the "By Departure Airport" tab considering that your pilots will only be able to view schedules departing from one specific airport only so the search by departure airport is useless.
  21. What about the bids database table of your phpVMS website? You can review it using phpmyadmin.
  22. Oh gosh. Ok, you will have to open your schedule_results.tpl or .php file and find this: foreach($schedule_list as $schedule) { You might have $schedules instead of $schedule_list in your file as per your phpVMS version. Before the above code and after the php opening tag (<?php), add this: $last_location = PIREPData::getLastReports(Auth::$userinfo->pilotid, 1, PIREP_ACCEPTED); and below the foreach statement add this: if($last_location->arricao != $schedule->depicao) continue; Let us know if you come up with any issue.
  23. Could you please let us know if you can view the bids in your admin center? admin center -> pilots & groups -> view bids If yes, then I believe that your acars system did not deleted the bids.
  24. I had posted my reply yesterday but it seems that it has been lost. @mattsmish had you seen it?
×
×
  • Create New...