Ahmad Posted May 26, 2011 Report Share Posted May 26, 2011 Dear Forum Members hi i just wanted to ask that i have created Fleet Pages wit downloading link in it so how i can protect downloads from out siders i wanted to allow downloads only for Registered Pilots i have created different pages from admin center what should we need to put in those pages so it will show downloading link to Pilots only. for example page created like http://www.websitename/index.php/pages/Fleet Any IDea Regards Ahmad Quote Link to comment Share on other sites More sharing options...
Moderators mark1million Posted May 26, 2011 Moderators Report Share Posted May 26, 2011 If you have created a page in the admin section then you have the option to make it public, ie logged in or not. Then just make sure there is no tick in the box and that page can only be accessed by members. Quote Link to comment Share on other sites More sharing options...
Moderators mark1million Posted May 26, 2011 Moderators Report Share Posted May 26, 2011 If not you can modify this code below to suite your needs. <?php if(Auth::LoggedIn() == false) { echo 'Please login to view this page.'; echo '<br /><br /><br />'; Template::Show('login_form.tpl'); return; } ?> Quote Link to comment Share on other sites More sharing options...
Ahmad Posted May 26, 2011 Author Report Share Posted May 26, 2011 mark you mean i should put that code on pages which i created and create another .tpl file to show them? Ahmad Quote Link to comment Share on other sites More sharing options...
Moderators mark1million Posted May 26, 2011 Moderators Report Share Posted May 26, 2011 Just put that code at the top of any tpl you only want logged in pilots to access. If they are not logged in then it will display them the login form, you can if you want create another login form to redirect them to the requested page. Quote Link to comment Share on other sites More sharing options...
Ahmad Posted May 26, 2011 Author Report Share Posted May 26, 2011 thanks mark..... go it Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.