Jump to content

servetas

Moderators
  • Posts

    1726
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by servetas

  1. servetas

    blueIce

    In that case it is not an issue with the template. It is a phpVMS issue and you should open a new topic in the support forum.
  2. servetas

    blueIce

    What do you mean that "nothing change"? Does the acars map show flights or not with the default template?
  3. servetas

    blueIce

    Switch back to the default template. Does it work? If yes, then we do confirm that it is a template issue. If no, then it is something else. I have installed this template in phpVMS 5.5 and the acars map works.
  4. I am using the same code (approximately) and the only issue is with the drop down fields in the administration section. This issue is solved by replacing (in the admin/templates/pilot_details): $sel = ($field->value === $val) ? 'sel="selected"' : ''; with: $sel = ($field->value === $val) ? 'selected="selected"' : ''; Does the above solved the issue in the admin part?
  5. Can you paste here or send me in any way the following files: admin/templates/pilot_details.php -and- core/templates/profile_edit.php or lib/skins/your_skin/profile_edit.php (if exists)
  6. Write the email in quotation marks ("YOUR_EMAIL"). Something like: Util::SendEmail("myemail@domain.com", $subject, $message);
  7. Which phpVMS version are you using? Can you share any screenshots? Do you refer to the user part or the admin part of your phpVMS system?
  8. I remember that it has been requested in the past too. Unfortunately, there is not any way (as far as I know) to get the FSEconomy data because they are not offering any API to communicate with their database. Could you please explain to us which part of the FSEconomy would you like to have in your virtual airline?
  9. Unfortunately you are posting your issue in the wrong board of the forum. I would suggest getting in touch with simpilot through his billing system because as far as I know support for the payware modules is offered through support tickets only.
  10. That is correct, if what web541 suggested does not work, you will have to edit your php.ini. If your website is hosted on a shared hosting server, you might not be able to change it. You will have to get in touch with to request such a change or move to a shared hosting provider who has UTC set.
  11. After reviewing your website, i can say that there might be an issue with the remember me check box. Can you please open login_form.php and find this? <label> <input name="remember" type="checkbox" value="Remember Me">Remember Me </label> replace it with this: <label><input name="remember" type="checkbox">Remember Me </label></div> George
  12. No, properties generate income to their owners as soon as a PIREP is getting submitted in your virtual airline system. You are able to select what is the profit the pilot gets. Airports and other properties can generate a percentage profit based on the pirep revenue or a standard amount as soon as a pirep gets submitted. Aircraft can generate a percentage profit based on the pirep revenue, a standard amount or a standard amount per hour. Everything is based in your system settings. George
  13. Property System has been developed by PHP-Mods and it is compatible with phpVMS. This module allows the pilots of your virtual airline use their virtual airline money via purchasing several types of properties. The basic property types are airports and aircraft. The airports and the aircraft are based on the data you have added in your phpVMS database. You are able to add several other types of properties which are based on the airports. The pilots do not only spend their money, they can make profit of their properties based on your virtual airline's PIREPs. Demo System URL: http://php-mods.eu/demo/property Pilot ID: DEV0002 Password: testing Useful Links Module Information Module Manual Purchase it Feel free to share with me any questions you may have!
  14. After a lot of development, I am glad to announce to you that the module has been released. More information can be found here: http://php-mods.eu/phpvms.php?module=property-system I will be happy to answer to any questions you may have.
  15. Which PHP version are you running on your phpVMS system and which has your cPanel installed?
  16. I do not believe that this is possible.
  17. hahaha Indeed! Having already written hundreds or thousands lines of code since morning. Thanks for noting that. Updated my post accordingly.
  18. Which phpVMS are you referring to? Do you mean phpVMS v3? You can download phpVMS via here: https://github.com/DavidJClark/phpvms_5.5.x
  19. In your PIREPData.class.php file there should be something like: $ret = self::editPIREPFields($pirepid, array('accepted' => $status)); it is on the changePIREPStatus function. You can add something like this before the line stated above: $pilot_details = PilotData::getPilotData($pirep_details->pilotid); if($status == PIREP_ACCEPTED) { $email = $pilot_details->email; $subject = "pirep accepted"; $message = "Your pirep #'.$pirep_details->id.' from '.$pirep_details->depicao.' to '.$pirep_details->arricao.' has been accepted."; Util::SendEmail($email, $subject, $message); } elseif($status == PIREP_REJECTED) { $email = $pilot_details->email; $subject = "pirep rejected"; $message = "Your pirep #'.$pirep_details->id.' from '.$pirep_details->depicao.' to '.$pirep_details->arricao.' has been rejected."; Util::SendEmail($email, $subject, $message); } I did not test it but it should be working as far as I can understand, it should be working.
  20. Have you tried enabling firebug in your user's firefox to review if any errors get popped up?
  21. First of all, to all of you who are posting their questions in this forum. Your website url is very IMPORTANT. Each website is different and this helps the users who want to support you to troubleshoot or review any issue. Which browser do these 2 users use? Have you checked this?
  22. 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?
×
×
  • Create New...