Hey guys!
Im now developing a friends vb forum, and before i did alot of smf development. and well,
On smf it whas pretty simple with requiring a login session to a blank page around public_html.
Here is a example of how it works with smf:
but how do i make one for vbulletin?
if you can help me i would really appreciate it)
Dondxon.
Im now developing a friends vb forum, and before i did alot of smf development. and well,
On smf it whas pretty simple with requiring a login session to a blank page around public_html.
Here is a example of how it works with smf:
PHP Code:
<?php
require("SSI.php");
$ssi_ban = true;
$ssi_theme = 1;
$ssi_layers = array('body','main');
ob_start();
if ($context['user']['is_guest']) { echo '<b><center>Acess denied</center></b>'; // this will show up if your not logged in... }else { echo 'Welcome ', $context['user']['name'], ''; // this will show up if its actually logged in... }?>
if you can help me i would really appreciate it)
Dondxon.
Comment