Jump to content

Kyle

Moderators
  • Posts

    2282
  • Joined

  • Last visited

Everything posted by Kyle

  1. Like what you mean, mark. Like having many bunch of things over the place, EX. Teamspeak Panel or whatever?
  2. Ha, ok. I thought so.
  3. Truemo9 did you read carefuly that codes that i posted? read carefuly i told you in the other post.
  4. Ok, here the thing. You really need to look and read this careful This is the part of a code to block non-members to not see the pages. /* Block non-members to access this page */ if(!Auth::LoggedIn()) { $this->set('message', 'You are not logged in!'); $this->render('core_error.tpl'); return; } /* End of access denined */ In the modules folder, like for a example, Schedules.php in the Schedules folder. (core/Modules/Schedules/Schedule.php) Find this line 26 - 35 public function view() { if(isset($this->post->action) && $this->post->action == 'findflight') { $this->FindFlight(); return; } $this->showSchedules(); } Say this is accessible for non-members. Now you want to add the first code above i posted it..... Now here is the new code that non-members won't see the page. public function view() { /* Block non-members to access this page */ if(!Auth::LoggedIn()) { $this->set('message', 'You are not logged in!'); $this->render('core_error.tpl'); return; } /* End of access denined */ if(isset($this->post->action) && $this->post->action == 'findflight') { $this->FindFlight(); return; } $this->showSchedules(); } Then it will block non-members to see the page. This applies to all skins. Hope this helps. Just the same as other pages, but put it after public function view just like i posted the code.
  5. I know how to. Let me get my coding and i'll post it here for you. Give me a few mins to make sure it works.
  6. There might be one coming soon there Roger. what makes you interested in Boob Virtual?
  7. giorgi, if you won't stop ripping off from Mark's site. I won't even help you to fix your site. This is the last warning. I do not help anyone who keeps ripping off from someone's site. So if you still want me to help you, then change it. I won't help you till you change it.
  8. I'll be on 24/7 possible. Keep your eyes out for a WestJet 737-700 flying around Canada. I hate to see this server to be a waste for no one to come in. That's why it's there for us to use it.
  9. Kyle

    help!!!!

    We got it fixed. IT's good now.
  10. Kyle

    help!!!!

    Yup please, PM it to me and i'll look into it for you
  11. Kyle

    help!!!!

    giorgi, when you downloaded the the add on files, the add-on files should be following the structures to phpvms files. Here for example core templates example.tpl classes exmaple.class lib images my image.jpeg my image.jpeg. Just like that follow the add on folder you downloaded. If you need help still, let me know.
  12. Kyle

    help!!!!

    giorgi, you putted in the wrong lines for the core_navigation.tpl Here this will work with your core_navigation <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> <a href="<?php echo url('/Exams') ?>">EXAMCenter</a> <?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 } ?> This will work. clean out of your core_navagation.tpl and put the code above it in.
  13. Kyle

    HELP!!

    Let me get my windows PC started up. I'll be there
  14. Yes there is free hostings, i used one with phpvms and worked very well and i can't rememebr which one i used. It's been a while i shutted down my old free hosting VA,
  15. Well you could try but it's not recommend. So much limits on php things though on free hostings.
  16. Kyle

    HELP!!

    HEY! Welcome aboard! I can help you if you have MSN or YAHOO or we can do it here. I'm good to help you for a no charge!
  17. Kyle

    pireps viewreport

    hey. Roger makes that skin and he siad he will be making it compellable to phpVMS 2.1. But it's been a while since he hasn't came on yet.
  18. Flightguy123 is very right. don't use free host for phpVMS. They don't even work under free host.
  19. Kyle

    Showing Pages

    Hey i saw your VA site and you have a limit of numbers to showing navigation links. You could create a link in the pilot centre for all pilots to see. Hope this helps. But i'm not really sure about you skinning though,
  20. giorgi, if you still need help, let me know and we'll get this fix quickly.
  21. You would hacking, watch out the laws. Even your ISP or the States. Just a warning
  22. Good Idea to have this for you simpilot.
  23. hey joeri, You might said over clocked and it gave me a idea to see if it worked and it did, but i'm not sure yet, but i'll keep checking.
  24. Kyle

    Any Tutorials?

    You will have to pay for it. Contact lothran but he's away at the momment.
  25. Tom, it's a damn sneek peek! Like the sims 3 or other. It gets people movatied to see the new Flight Sim.
×
×
  • Create New...