Jump to content

magicflyer

Members
  • Posts

    381
  • Joined

  • Last visited

  • Days Won

    4

Everything posted by magicflyer

  1. Yeah, that's right! I was going to mention that, but I didn't get a chance to. Glad you got it fixed.
  2. Auth::UserInGroup($groupname); Would return a boolean, either true or false pertaining to whether a logged in user is in a group or not. Use it accordingly within an if statements as such: if(Auth::UserInGroup('retired_pilots')){ echo "User is retired"; }
  3. Interesting. Let me get back to you on that. It's an Android, correct?
  4. Can you screenshot the view you get? Also, are you able to zoom in/zoom out?
  5. Unfortunately our current template doesn't support that statistic, but I am sure there's a module out there capable of gathering that information. The file you're going to want to look at is frontpage_main.tpl, under the "Statistics" heading in the file. Be wary of the code that's on there, so create a backup before experimenting.
  6. With the latest version? Are you editing something in it?
  7. I should have just PMd him privately...
  8. $slideshow_images = array( "URL FOR IMAGE 1", "URL FOR IMAGE 2", "URL FOR IMAGE 3" ) The instructions are in the comments just above it. Just replace the URL FOR IMAGE tag with your actual link for your image. You can also add as much images as you wish by just separating each by commas, and enclosing them in quotes.
  9. The slider can now be configured via the settings/settings.php file in the skins folder.
  10. Hey, you might want to be careful. This template exists here under a license that may not allow you to resell for profit: https://wrapbootstra...iness-WB0NPLR53 Edit: It looks like the licenses don't allow you to redistribute this, even if it's for free. Unless you got the Extended License, which costs $1000. If that's the case...Thank you for your extremely generous contribution.
  11. Admin is not a module, it is in a separate directory usually example.com/admin, in your case it's - http://www.canadianarcticvirtual.net/phpvms/admin Note the absence of index.php
  12. Updated to Version 1.1 Preview is back up and running + Download link is fixed and fully operational Changelog Page Width set to 75%, Changing it from the original full-width design Responsiveness added(Site adapts to various device sizes) Code Indenting and Structure upgraded to our 2015 Standards. Much, much easier for the end-user to experiment with Slideshow made easier to edit by adding in a settings.php file. Instructions on how to edit can be found on the main post. Changed basic styling for text fonts Fixed "Add to Bid" issue New link: http://zumeweb.com/e...w?target=Arctic
  13. You're using a skin with phpVMS' 5.5 by Simpilotgroup. The template files are probably ending in .tpl as file extension, but the phpVMS version you're using requires they end in .php. Go to your skin folder, and change all .tpl extensions to .php.
  14. Hey, Could just be the skin you're using. Try going to [Your root url]/admin, so if phpVMS was installed on example.com, go to example.com/admin
  15. Assuming that you're using smartCARS(I don't know if you are) You'll find that file inside the "SmartCARS" folder that you placed in your phpVMS installation upon downloading the software. If you used another ACARS software, then you would have to personally consult with the developer of that software to determine where the status strings can be edited.
  16. Do not take any action before backing up your files Browse to your smartcars directory in your phpVMS installation Open up the file "interface.php" On line 636 you should see an array "$phases", the contents of this array would be your flight status. Change as needed. NOTE: You may not add or remove array elements, you may only edit them
  17. Good Morning to you as well, Please have a look here - http://forum.phpvms.net/topic/5394-complete-flight/page__hl__percent#entry36013
  18. Bonjour, Vérifiez que il on à un fichier dans le directoire /core/commons qui correspond au nom "StatsData.class.php". Se il ne est pas, en créer un et coller le contenu suivant - http://docs.phpvms.net/internals/de/dd3/v2_2core_2common_2_stats_data_8class_8php_source.html ## Good Morning, Check if there's a file by the name of "StatsData.class.php" in your core/commons subdirectory. If there is not, Create one and copy/paste the following code in it - http://docs.phpvms.net/internals/de/dd3/v2_2core_2common_2_stats_data_8class_8php_source.html
  19. We're working on an update that addresses most issues that have been posted here. Please check this post again, in 3 days.
  20. The autozoom was an alternate solution to your issue. You definitely have something else going on in your phpVMS but it seems to me that It may be nearly impossible to locate without comparing each file to the original. The plane is off screen, and that's because autozoom was set to false which means that google maps will not change the center coordinates so that your aircraft is visible. If you were to click, hold and drag the map around you'll find the plane. My best suggestion is to Zoom out by setting the zoom parameter in the code above to a lower value(Or greater, not sure...whichever lets you zoom out - experiment.) Another Alternative is the following code - var acars_map_defaults = { autozoom: true, zoom: 4, center: new google.maps.LatLng("<?php echo Config::Get('MAP_CENTER_LAT'); ?>", "<?php echo Config::Get('MAP_CENTER_LNG'); ?>"), mapTypeId: google.maps.MapTypeId.ROADMAP, refreshTime: 10000 }; The code above would reset to the normal autozoom, but those black images would disappear. They would instead be replaced with a roadmap of the region.
  21. Change autozoom to false. This is how it would look like - var acars_map_defaults = { autozoom: false, zoom: 4, center: new google.maps.LatLng("<?php echo Config::Get('MAP_CENTER_LAT'); ?>", "<?php echo Config::Get('MAP_CENTER_LNG'); ?>"), mapTypeId: google.maps.MapTypeId.HYBRID, refreshTime: 10000 };
  22. Copy/Paste your code of acarsmap.tpl that's in your skins folder, onto this website called pastebin.net. Then, post the link here so we can take a look at the code.
  23. Open up your core/app.config.php, and check your MAP_ZOOM_LEVEL, make sure it's at "12"
  24. In your core/app.config.php, change the line: Config::Set('ACARS_LIVE_TIME', 720); to a lower value.
  25. You need to call it in this way - <?php MainController::Run('finances', 'index'); ?>
×
×
  • Create New...