Jump to content

mark1million

Moderators
  • Posts

    2283
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by mark1million

  1. This is a browser specific problem i think, we used to have the same thing but it fixed its self without any input from us.
  2. I managed to replicate this where it would not open, there is a hidden file for the settings that you need to remove, i will have a look to see if i can find it again.
  3. Of course you can but the way you have done it is not in the spirit of phpVMS. Just let users know that when your link is clicked they will be presented with an ad then your module.
  4. Im not too keen that you are routing every click there through an ad system making you money......
  5. This usually indicates you have a white space in one of your files, check the config files for a whitespace at the beginning.
  6. Just Google for certificates then you could photoshop them to your needs
  7. You could always just post here and we could move to releases..
  8. You can use pure sql to pull latest posts, create your own query.
  9. I am being lazy here and just hoping someone has the code to display the active pilots, pilots retired and pilots on holiday Is this available already or do i need to write a a query?
  10. Have you tried running winmtr see if you are suffering packet data loss?
  11. If you have a look in your site you can download a csv import template.
  12. I think removing the schedules are OK, just dont remove aircraft or airports.
  13. For the time being i would close your registrations for a few days, clearly someone has targeted your site for some reason.
  14. Sometimes it can take up to a minute to receive back the filed message, it depends on how big your site is i believe. Just send the pirep and wait to see what happens, it is successfully filed to the system before receiving back the Ok message i have noticed.
  15. I think Dave is rewriting the system, it is not possible with the current one.
  16. Twitter change a while ago, in the latest beta phpVMS fully supports either push or pull from your twitter account, only one way will work not both.
  17. Im currently going through the same thing with easyjet's solicitors and managed to open up the biggest can of worms ever. Its getting interesting to say the least We all know how aggressive they are
  18. Hard crowd to please us va creators lol. Ok so stop the bashing please chaps.
  19. My bad, Jon had it with <li><a href="<?php echo SITE_URL ?>/Watercooler">Forum</a></li>
  20. It looks pretty easy to setup just had a look myself. Looks like you upload the files to your webserver configure a database and run the install, then check out the getting started guide
  21. Look at their IP address and ban it from your server.
  22. This is the existing core_navigation.tpl in teh core/templates folder <li><a href="<?php echo url('/'); ?>">home</a></li> <?php if(!Auth::LoggedIn()) { // Show these if they haven't logged in yet ?> <li><a href="<?php echo url('/login'); ?>">Login</a></li> <li><a href="<?php echo url('/registration'); ?>">Register</a></li> <?php } else { // Show these items only if they are logged in ?> <li><a href="<?php echo url('/profile'); ?>">Pilot Center</a></li> <?php } ?> <li><a href="<?php echo url('/pilots'); ?>">Pilots</a></li> <li><a href="<?php echo url('/acars') ?>">Live Map</a></li> <?php echo $MODULE_NAV_INC;?> <?php if(Auth::LoggedIn()) { if(PilotGroups::group_has_perm(Auth::$usergroups, ACCESS_ADMIN)) { echo '<li><a href="'.fileurl('/admin').'">Admin Center</a></li>'; } ?> <li><a href="<?php echo url('/logout'); ?>">Log Out</a></li> <?php } ?> Just change it and add this, <li><a href="<?php echo url('/'); ?>">home</a></li> <?php if(!Auth::LoggedIn()) { // Show these if they haven't logged in yet ?> <li><a href="<?php echo url('/login'); ?>">Login</a></li> <li><a href="<?php echo url('/registration'); ?>">Register</a></li> <?php } else { // Show these items only if they are logged in ?> <li><a href="<?php echo url('/profile'); ?>">Pilot Center</a></li> <?php } ?> <li><a href="<?php echo url('/pilots'); ?>">Pilots</a></li> <li><a href="<?php echo url('/acars') ?>">Live Map</a></li> <li><a href="<?php echo SITE_URL ?>/Watercooler">Forum</a></li> <?php echo $MODULE_NAV_INC;?> <?php if(Auth::LoggedIn()) { if(PilotGroups::group_has_perm(Auth::$usergroups, ACCESS_ADMIN)) { echo '<li><a href="'.fileurl('/admin').'">Admin Center</a></li>'; } ?> <li><a href="<?php echo url('/logout'); ?>">Log Out</a></li> <?php } ?> So create a file in your active skins folder called core_navigation.tpl copy the above in to it and save. Your link should now be present and you can delete the page you created forum.
  23. Grey area, wouldn't want to really comment to be honest.
  24. Ok simple things you can check is reupload the install folder and check all teh files are OK by running install/checkinstall.php, if they are good then its a php server configuration so contact the host.
×
×
  • Create New...