Jump to content

simpilot

Administrators
  • Posts

    2773
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by simpilot

  1. Your example works for me. Are you sure you are giving it a valid number? A cleaner way to do it and avoiding any left to right character conflict may also be: $FlightNum = strtr($ReplaceText, $Numbers);
  2. Just copy the lines from the app.config.php file and place them in your local.config.php file then update your keys. /* Keys for recaptcha, you can change these if you want to your own but it's a global key so it should just work */ Config::Set('RECAPTCHA_PUBLIC_KEY', '6LcklAsAAAAAAJqmghmMPOACeJrAxW3sJulSboxx'); Config::Set('RECAPTCHA_PRIVATE_KEY', '6LcklAsAAAAAAMeQy5ZBoDu8JOMTP-UL7ek1GedO');
  3. You can take a look here -> https://github.com/DavidJClark/phpvms_5.5.x/commit/bff6cd07674635a389c0336264664506644bf489 <- I made some changes to allow the functions from phpVMS to work with newer versions of jquery, not pretty right now but it does work. You may want to take a look at that and see if you can work it into your site.
  4. When the main part of the site was updated to allow skins to automatically check the skin folder and then go to the default if the template is not there, the admin side was not updated. You would need to change the coding in the index file for the admin side mainly to operate like the main site.
  5. You can send the post to the moderators using the "Report To Moderators" button on the topic and state what the reason you want it deleted. A moderator will look at it the next time one is on. I will say that I usually do not delete topics or posts unless they are inflammatory, illegal, or another truly valid reason. I myself have a couple of posts that I would rather not admit to posting but they are there, think before we speak, or in this case type.
  6. You can include it in a controller, or make your own (preferred) so it does not get overwritten in an update. If you are just trying to make sure pilots do not show on the map after a flight is completed you could just set the config for ACARS_LIVE_TIME to a minimum, something like 3 minutes. This will cause any flight that has not been updated in the last 3 minutes be dropped from the display. # ACARS options # Minutes, flights to show on the ACARS # Default is 720 minutes (12 hours) Config::Set('ACARS_LIVE_TIME', 720);
  7. If this is the payware version purchased from my site, which I don't think it is, please open a ticket in your client center. If this is for the freeware version here in the forum, I did not develop it, you will need to use the thread for it here -> http://forum.phpvms.net/topic/8898-vstaff-v10/ <- and see if there is a solution or the developer can give you a hand.
  8. You can remove it if you want. It is a security feature of the later versions to help protect template files.
  9. I would guess it is a php 5.5+ issue although I have not seen it before. Have you tried reverting to an older php version and see if you still get this behavior?
  10. I would try uploading the associated files again. I just checked my development install and the drop down is there without issue. That is an item that has remained unchanged at this point as well.
  11. The information is in the thread on the second page.
  12. I updated my extended version registration and contact forms to this today. You can take a look at how it is done here -> https://github.com/DavidJClark/phpvms_5.5.x/commit/754a24f7619327fa027ab958f45be818e948d96c
  13. It looks like the data is getting to VaCentral by your VA page -> http://www.vacentral...piensairvirtual It must be something is either blocking that particular map data from your site. There have been occurrences of the script timing out and never getting to the portion that sends the data for the live map. It could also be something on the map side but Nabeel is the only one with access to VaCentral.
  14. It looks like the module must overwrite the schedulesData.class.php file Check to see if the file was actually overwritten with the modified file, if not go ahead and let your FTP client overwrite the existing file. Remember that when/if an update is ever performed on the system this file will most likely be overwritten and the modifications will have to be made again.
  15. The native email system is actually set up to send to multiple recipients, you just have to supply the addresses in array form. From util.class.php - start line 293 //allowing function to send to an array of email addresses, not just one if(is_array($email)) { foreach($email as $emailrec) { $mail->AddAddress($emailrec); } }
  16. Without access to the system or some type of error log I'm afraid there isn't much more I can think of to look at.
  17. Have you been assigned admin rights for the exam center? Does the pilot with database id #1 have access?
  18. Does the mass email page with tinymce work or does it do the same thing?
  19. You are correct, it has everything but. Looks like it would have to be customized to get a search for flight time.
  20. Yes there is a file with approximately 42,000 included available here on the forum.
  21. <div class="btn"><a href="<?php echo url('/module and function goes here'); ?> title="Thing" style="border-color: #831029;">Thing</a>
  22. Have you tried re-uploading the files? Maybe they are corrupted?
  23. What are you using as a link? I would normally say that the files are not there and need to be uploaded but it seems odd that it is looking for template ""
  24. Those are the linux and windows line endings. They will not show up normally in html mail but if they are using text they may show in the email.
×
×
  • Create New...