Thread: login TTrader
View Single Post
  #2  
Old 26th December 2010, 01:57
Fynnon's Avatar
Fynnon Fynnon is offline
xxx
 
Join Date: Nov 2007
P2P
Posts: 984
Default
1. open index.php and find
PHP Code:
dbconn(true); 
add under it:
PHP Code:
loggedinonly(); 


2.
open account-login.php and find:
PHP Code:
dbconn(); 
add after it:
PHP Code:
$site_config["LEFTNAV"] = $site_config["MIDDLENAV"] = $site_config["RIGHTNAV"] = false


3.
open account-signup.php and find:
PHP Code:
dbconn(); 
add under it:
PHP Code:
$site_config["LEFTNAV"] = $site_config["MIDDLENAV"] = $site_config["RIGHTNAV"] = false


4.
open account-recover.php and find:
PHP Code:
dbconn(false); 
add under it:
PHP Code:
$site_config["LEFTNAV"] = $site_config["MIDDLENAV"] = $site_config["RIGHTNAV"] = false


5.
open themes/default/header.php and find:
PHP Code:
<table width="100%">
<
TR>
<
td align="middle" class="subnav" height="34">
<
a  href="index.php"><B>Home</B></a>  | <a  href=torrents-upload.php ><B>Upload Torrent</B></a>  | <a href=torrents.php ><B>Browse  Torrents</B></a> | <a href=torrents-today.php  ><B>Todays Torrents</B></a> | <a  href=torrents-search.php ><B>Search</B></a>
</
td>
</
TR>
</
table
replace it with:
PHP Code:
<?if($CURUSER){?>
<table width="100%">
<TR>
<td align="middle" class="subnav" height="34">
<a  href="index.php"><B>Home</B></a>  | <a  href=torrents-upload.php ><B>Upload Torrent</B></a>  | <a href=torrents.php ><B>Browse  Torrents</B></a> | <a href=torrents-today.php  ><B>Todays Torrents</B></a> | <a  href=torrents-search.php ><B>Search</B></a>
</td>
</TR>
</table>
<?}?>
TorrentialStorm@http://www.torrenttrader.org
Reply With Quote