9
   

phpBB Search Engine Optimization - Sessions, static ( SEO )

 
 
Craven de Kere
 
  1  
Sat 17 Apr, 2004 11:08 pm
cruspring, look for this and wrap it in user logged in switches.

Code:<table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline">
<tr>
<td class="catHead" colspan="2" height="28"><span class="cattitle"><a href="{U_VIEWONLINE}" class="cattitle">{L_WHO_IS_ONLINE}</a></span></td>
</tr>
<tr>
<td class="row1" align="center" valign="middle" rowspan="2"><img src="templates/subSilver/images/whosonline.gif" alt="{L_WHO_IS_ONLINE}" /></td>
<td class="row1" align="left" width="100%"><span class="gensmall">{TOTAL_POSTS}<br />{TOTAL_USERS}<br />{NEWEST_USER}</span>
</td>
</tr>
<tr>
<td class="row1" align="left"><span class="gensmall">{TOTAL_USERS_ONLINE}   [ {L_WHOSONLINE_ADMIN} ]   [ {L_WHOSONLINE_MOD} ]<br />{RECORD_USERS}<br />{LOGGED_IN_USER_LIST}</span></td>
</tr>
</table>

<table width="100%" cellpadding="1" cellspacing="1" border="0">
<tr>
<td align="left" valign="top"><span class="gensmall">{L_ONLINE_EXPLAIN}</span></td>
</tr>
</table>
0 Replies
 
cruspring
 
  1  
Sun 18 Apr, 2004 01:29 am
Code:<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline">
<tr>
<th colspan="2" class="thCornerL" height="25" nowrap="nowrap"> {L_FORUM} </th>
<th width="50" class="thTop" nowrap="nowrap"> {L_TOPICS} </th>
<th width="50" class="thTop" nowrap="nowrap"> {L_POSTS} </th>
<th class="thCornerR" nowrap="nowrap"> {L_LASTPOST} </th>
</tr>
<!-- BEGIN catrow -->
<tr>
<td class="catLeft" colspan="2" height="28"><span class="cattitle"><a href="{catrow.U_VIEWCAT}" class="cattitle">{catrow.CAT_DESC}</a></span></td>
<td class="rowpic" colspan="3" align="right"> </td>
</tr>
<!-- BEGIN forumrow -->

Above is the code from the 2.0.8a package. Beyond the second line, the code you cite just isn't here.


C.
0 Replies
 
Craven de Kere
 
  1  
Sun 18 Apr, 2004 01:33 am
cruspring,

I just downloaded 2.0.8 and the code IS there. Spacing differences will mean a find and replace in a text editor might miss it but this is unavoidable so you need to be able to search without relying entirely on the text editor's function.

The code you are posting is the beginning of the forum table. That's only the first instance of the first line of the code I posted. Look for the next ones and you will find the mentioned code.

Below this are other tables and the code I posted (which comes directly from a vanilla 2.0.8 download) is the second table after the main forum table if I remember correctly.

Tell ya what, look for "{LOGGED_IN_USER_LIST}" and post the whole table that contains it if it is different from the above.
0 Replies
 
cruspring
 
  1  
Sun 18 Apr, 2004 01:41 am
Here you go:

Code:
<table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline">
<tr>
<td class="catHead" colspan="2" height="28"><span class="cattitle"><a href="{U_VIEWONLINE}" class="cattitle">{L_WHO_IS_ONLINE}</a></span></td>
</tr>
<tr>
<td class="row1" align="center" valign="middle" rowspan="2"><img src="templates/subSilver/images/whosonline.gif" alt="{L_WHO_IS_ONLINE}" /></td>
<td class="row1" align="left" width="100%"><span class="gensmall">{TOTAL_POSTS}<br />{TOTAL_USERS}<br />{NEWEST_USER}</span>
</td>
</tr>
<tr>
<td class="row1" align="left"><span class="gensmall">{TOTAL_USERS_ONLINE}   [ {L_WHOSONLINE_ADMIN} ]   [ {L_WHOSONLINE_MOD} ]<br />{RECORD_USERS}<br />

{LOGGED_IN_USER_LIST}</span></td>
</tr>
</table>

<table width="100%" cellpadding="1" cellspacing="1" border="0">
<tr>
<td align="left" valign="top"><span class="gensmall">{L_ONLINE_EXPLAIN}</span></td>
</tr>
</table>

<!-- BEGIN switch_user_logged_out -->
<form method="post" action="{S_LOGIN_ACTION}">
<table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline">
<tr>
<td class="catHead" height="28"><a name="login"></a><span class="cattitle">{L_LOGIN_LOGOUT}</span></td>
</tr>
<tr>
<td class="row1" align="center" valign="middle" height="28"><span class="gensmall">{L_USERNAME}:
<input class="post" type="text" name="username" size="10" />
   {L_PASSWORD}:
<input class="post" type="password" name="password" size="10" maxlength="32" />
     {L_AUTO_LOGIN}
<input class="text" type="checkbox" name="autologin" />
   
<input type="submit" class="mainoption" name="login" value="{L_LOGIN}" />
</span> </td>
</tr>
</table>
</form>
<!-- END switch_user_logged_out -->

Different cellpadding values are one difference I noticed (didn't really check further).


C.
0 Replies
 
Craven de Kere
 
  1  
Sun 18 Apr, 2004 01:44 am
That's half of the table and then the table below it. The table below it is the log in table and is not what you need to find.

Look for the table tag before "{LOGGED_IN_USER_LIST}" and the table tag after it.

Those tags and what is between is what you are looking for.
0 Replies
 
cruspring
 
  1  
Sun 18 Apr, 2004 01:55 am
This is what I have:
Code:<table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline">
<tr>
<td class="catHead" colspan="2" height="28"><span class="cattitle"><a href="{U_VIEWONLINE}" class="cattitle">{L_WHO_IS_ONLINE}</a></span></td>
</tr>
<tr>
<td class="row1" align="center" valign="middle" rowspan="2"><img src="templates/subSilver/images/whosonline.gif" alt="{L_WHO_IS_ONLINE}" /></td>
<td class="row1" align="left" width="100%"><span class="gensmall">{TOTAL_POSTS}<br />{TOTAL_USERS}<br />{NEWEST_USER}</span>
</td>
</tr>
<tr>
<td class="row1" align="left"><span class="gensmall">{TOTAL_USERS_ONLINE}   [ {L_WHOSONLINE_ADMIN} ]   [ {L_WHOSONLINE_MOD} ]<br />{RECORD_USERS}<br />{LOGGED_IN_USER_LIST}</span></td>
</tr>
</table>
0 Replies
 
cruspring
 
  1  
Sun 18 Apr, 2004 02:08 am
Ok,


In 2.0.8, the {L_ONLINE_EXPLAIN} part has a table of its own:

Code:<table width="100%" cellpadding="1" cellspacing="1" border="0">
<tr>
<td align="left" valign="top"><span class="gensmall">{L_ONLINE_EXPLAIN}</span></td>
</tr>
</table>



C.
0 Replies
 
Craven de Kere
 
  1  
Sun 18 Apr, 2004 02:33 am
That's not the code I saw. I downloaded it a few hours ago to check.

Just post the code for your index_body.tpl and I'll tell you what to modify.
0 Replies
 
ccb056
 
  1  
Sun 18 Apr, 2004 02:07 pm
are you guys going to submit this new version to phpbbHacks?
0 Replies
 
Craven de Kere
 
  1  
Sun 18 Apr, 2004 05:03 pm
I might, when I have a free moment.
0 Replies
 
rhollin1
 
  1  
Sun 18 Apr, 2004 07:59 pm
title tag
Which file is it that you edit to change the title? Is it overall_header.tpl??
0 Replies
 
Craven de Kere
 
  1  
Sun 18 Apr, 2004 08:23 pm
Yes, it's in the mod isn't it?
0 Replies
 
rhollin1
 
  1  
Sun 18 Apr, 2004 11:58 pm
I'm attempting to install this mod and i've got through every section. On the very last piece of code that it ask to change, I can't seem to find the specific piece of code it's asking for. I see some of it. I'm referring to the code in the templates/subSilver/index_body.tpl. What is recommended?
0 Replies
 
Craven de Kere
 
  1  
Mon 19 Apr, 2004 12:02 am
Post your index_body.tpl code and I'll tell you what to change.
0 Replies
 
rhollin1
 
  1  
Mon 19 Apr, 2004 12:05 am
Here it is

Code:<table width="97%" cellspacing="0" cellpadding="2" border="0" align="center">
<tr>
<td align="left" valign="bottom"><span class="gensmall">
<!-- BEGIN switch_user_logged_in -->
{LAST_VISIT_DATE}<br />
<!-- END switch_user_logged_in -->
{CURRENT_TIME}<br />
</span><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td>
<td align="right" valign="bottom" class="gensmall">
<!-- BEGIN switch_user_logged_in -->
<a href="{U_SEARCH_NEW}" class="gensmall">{L_SEARCH_NEW}</a><br />
<a href="{U_SEARCH_SELF}" class="gensmall">{L_SEARCH_SELF}</a><br />
<a href="{U_SEARCH_UNANSWERED}" class="gensmall">{L_SEARCH_UNANSWERED}</a>
<!-- END switch_user_logged_in -->
</td>
</tr>
</table>
<table width="97%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="1%" align="left" background="templates/WebInspect/images/catty_r1_c2.gif"><img name="catty_r1_c1" src="templates/WebInspect/images/catty_r1_c1.gif" width="2" height="31" border="0" alt=""></td>
<td width="98%" background="templates/WebInspect/images/catty_r1_c2.gif"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="53%" align="left" class="forumtext">Forum</td>
<td width="10%" align="center" class="forumtext">Topic</td>
<td width="10%" align="center" class="forumtext">Posts</td>
<td width="22%" align="center" class="forumtext">Last Post </td>
</tr>
</table></td>
<td width="1%" align="right" background="templates/WebInspect/images/catty_r1_c2.gif"><img name="catty_r1_c4" src="templates/WebInspect/images/catty_r1_c4.gif" width="2" height="31" border="0" alt=""></td>
</tr>
</table>
<!-- BEGIN catrow -->
<table width="97%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="1%" align="left" background="templates/WebInspect/images/catty2_r1_c2.gif"><img name="catty2_r1_c1" src="templates/WebInspect/images/catty2_r1_c1.gif" width="3" height="28" border="0" alt=""></td>
<td width="99%" align="left" background="templates/WebInspect/images/catty2_r1_c2.gif"><span class="cattitleWhite"><a href="{catrow.U_VIEWCAT}" class="cattitleWhite">{catrow.CAT_DESC}</a></span></td>
<td width="0%" align="right" background="templates/WebInspect/images/catty2_r1_c2.gif"><img name="catty2_r1_c4" src="templates/WebInspect/images/catty2_r1_c4.gif" width="4" height="28" border="0" alt=""></td>
</tr>
</table>
<!-- BEGIN forumrow -->
<table width="97%" cellpadding="2" cellspacing="1" border="0" class="forumline">
<tr>
<td width="1%" align="center" valign="middle" class="row1"><img src="{catrow.forumrow.FORUM_FOLDER_IMG}" width="30" height="30" alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" title="{catrow.forumrow.L_FORUM_FOLDER_ALT}" /></td>
<td width="50%" align="left" class="row2" onMouseOver="this.style.backgroundColor='#FAFAFA'; this.style.cursor='hand';" onMouseOut=this.style.backgroundColor="#F5F5F5" onclick="window.location.href='{catrow.forumrow.U_VIEWFORUM}'"><span class="forumlink"> <a href="{catrow.forumrow.U_VIEWFORUM}" class="forumlink">{catrow.forumrow.FORUM_NAME}</a><br />
</span> <span class="genmed">{catrow.forumrow.FORUM_DESC}<br />
</span><span class="gensmall">{catrow.forumrow.L_MODERATOR} {catrow.forumrow.MODERATORS}</span></td>
<td width="10%" align="center" valign="middle" class="row2"><span class="gensmall">{catrow.forumrow.TOPICS}</span></td>
<td width="10%" align="center" valign="middle" class="row2"><span class="gensmall">{catrow.forumrow.POSTS}</span></td>
<td width="22%" align="center" valign="middle" nowrap="nowrap" class="row2"> <span class="gensmall">{catrow.forumrow.LAST_POST}</span></td>
</tr>
</table>
<!-- END forumrow -->
<!-- END catrow -->
<table width="97%" cellspacing="0" border="0" align="center" cellpadding="2">
<tr>
<td align="left"><span class="gensmall"><a href="{U_MARK_READ}" class="gensmall">{L_MARK_FORUMS_READ}</a></span></td>
<td align="right"><span class="gensmall">{S_TIMEZONE}</span></td>
</tr>
</table>
<br>
<table width="97%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="1%" align="left" background="templates/WebInspect/images/catty_r1_c2.gif"><img name="catty_r1_c1" src="templates/WebInspect/images/catty_r1_c1.gif" width="2" height="31" border="0" alt=""></td>
<td width="98%" background="templates/WebInspect/images/catty_r1_c2.gif"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="left"><span class="cattitle"><a href="{U_VIEWONLINE}" class="cattitle">{L_WHO_IS_ONLINE}</a></span></td>
</tr>
</table></td>
<td width="1%" align="right" background="templates/WebInspect/images/catty_r1_c2.gif"><img name="catty_r1_c4" src="templates/WebInspect/images/catty_r1_c4.gif" width="2" height="31" border="0" alt=""></td>
</tr>
</table>
<table width="97%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="1%" align="left" background="templates/WebInspect/images/catty2_r1_c2.gif"><img name="catty2_r1_c1" src="templates/WebInspect/images/catty2_r1_c1.gif" width="3" height="28" border="0" alt=""></td>
<td width="99%" align="left" background="templates/WebInspect/images/catty2_r1_c2.gif"><span class="gensmall2">{L_ONLINE_EXPLAIN}</span></td>
<td width="0%" align="right" background="templates/WebInspect/images/catty2_r1_c2.gif"><img name="catty2_r1_c4" src="templates/WebInspect/images/catty2_r1_c4.gif" width="4" height="28" border="0" alt=""></td>
</tr>
</table>
<table width="97%" cellpadding="3" cellspacing="1" border="0" class="forumline">
<tr>
<td class="row1" align="center" valign="middle" rowspan="2"><img src="templates/WebInspect/images/whosonline.gif" alt="{L_WHO_IS_ONLINE}" /></td>
<td class="row1" align="left" width="100%"><span class="gensmall">{TOTAL_POSTS}<br />
{TOTAL_USERS}<br />
{NEWEST_USER}</span> </td>
</tr>
<tr>
<td class="row1" align="left"><span class="gensmall">{TOTAL_USERS_ONLINE}   [ {L_WHOSONLINE_ADMIN} ]   [ {L_WHOSONLINE_MOD} ]<br />
{RECORD_USERS}<br />
{LOGGED_IN_USER_LIST}</span></td>
</tr>
</table>
<br>

<!-- BEGIN switch_user_logged_out -->
<form method="post" action="{S_LOGIN_ACTION}">
<table width="97%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="1%" align="left" background="templates/WebInspect/images/catty_r1_c2.gif"><img name="catty_r1_c1" src="templates/WebInspect/images/catty_r1_c1.gif" width="2" height="31" border="0" alt=""></td>
<td width="98%" background="templates/WebInspect/images/catty_r1_c2.gif"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="left"><span class="cattitle">Login</span></td>
</tr>
</table></td>
<td width="1%" align="right" background="templates/WebInspect/images/catty_r1_c2.gif"><img name="catty_r1_c4" src="templates/WebInspect/images/catty_r1_c4.gif" width="2" height="31" border="0" alt=""></td>
</tr>
</table>
<table width="97%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="1%" align="left" background="templates/WebInspect/images/catty2_r1_c2.gif"><img name="catty2_r1_c1" src="templates/WebInspect/images/catty2_r1_c1.gif" width="3" height="28" border="0" alt=""></td>
<td width="99%" align="left" background="templates/WebInspect/images/catty2_r1_c2.gif"><span class="gensmall2">Please take a moment to log yourself in. </span></td>
<td width="0%" align="right" background="templates/WebInspect/images/catty2_r1_c2.gif"><img name="catty2_r1_c4" src="templates/WebInspect/images/catty2_r1_c4.gif" width="4" height="28" border="0" alt=""></td>
</tr>
</table>
<table width="97%" cellpadding="3" cellspacing="1" border="0" class="forumline">
<tr>
<td class="row1" align="center" valign="middle" height="28"><span class="gensmall">{L_USERNAME}:
<input class="post" type="text" name="username" size="10" />
   {L_PASSWORD}:
<input class="post" type="password" name="password" size="10" maxlength="32" />
     {L_AUTO_LOGIN}
<input class="text" type="checkbox" name="autologin" value="ON" />
   
<input type="submit" class="mainoption" name="login" value="{L_LOGIN}" />
</span> </td>
</tr>
</table>
</form>
<!-- END switch_user_logged_out -->
<br>
<table cellspacing="3" border="0" align="center" cellpadding="0">
<tr>
<td width="20" align="center"><img src="templates/WebInspect/images/folder_new_big.gif" alt="{L_NEW_POSTS}"/></td>
<td><span class="gensmall">{L_NEW_POSTS}</span></td>
<td>  </td>
<td width="20" align="center"><img src="templates/WebInspect/images/folder_big.gif" alt="{L_NO_NEW_POSTS}" /></td>
<td><span class="gensmall">{L_NO_NEW_POSTS}</span></td>
<td>  </td>
<td width="20" align="center"><img src="templates/WebInspect/images/folder_locked_big.gif" alt="{L_FORUM_LOCKED}" /></td>
<td><span class="gensmall">{L_FORUM_LOCKED}</span></td>
</tr>
</table>
<br>
0 Replies
 
Craven de Kere
 
  1  
Mon 19 Apr, 2004 12:13 am
Here is your modified code:

Code:<table width="97%" cellspacing="0" cellpadding="2" border="0" align="center">
<tr>
<td align="left" valign="bottom"><span class="gensmall">
<!-- BEGIN switch_user_logged_in -->
{LAST_VISIT_DATE}<br />
<!-- END switch_user_logged_in -->
{CURRENT_TIME}<br />
</span><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td>
<td align="right" valign="bottom" class="gensmall">
<!-- BEGIN switch_user_logged_in -->
<a href="{U_SEARCH_NEW}" class="gensmall">{L_SEARCH_NEW}</a><br />
<a href="{U_SEARCH_SELF}" class="gensmall">{L_SEARCH_SELF}</a><br />
<a href="{U_SEARCH_UNANSWERED}" class="gensmall">{L_SEARCH_UNANSWERED}</a>
<!-- END switch_user_logged_in -->
</td>
</tr>
</table>
<table width="97%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="1%" align="left" background="templates/WebInspect/images/catty_r1_c2.gif"><img name="catty_r1_c1" src="templates/WebInspect/images/catty_r1_c1.gif" width="2" height="31" border="0" alt=""></td>
<td width="98%" background="templates/WebInspect/images/catty_r1_c2.gif"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="53%" align="left" class="forumtext">Forum</td>
<td width="10%" align="center" class="forumtext">Topic</td>
<td width="10%" align="center" class="forumtext">Posts</td>
<td width="22%" align="center" class="forumtext">Last Post </td>
</tr>
</table></td>
<td width="1%" align="right" background="templates/WebInspect/images/catty_r1_c2.gif"><img name="catty_r1_c4" src="templates/WebInspect/images/catty_r1_c4.gif" width="2" height="31" border="0" alt=""></td>
</tr>
</table>
<!-- BEGIN catrow -->
<table width="97%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="1%" align="left" background="templates/WebInspect/images/catty2_r1_c2.gif"><img name="catty2_r1_c1" src="templates/WebInspect/images/catty2_r1_c1.gif" width="3" height="28" border="0" alt=""></td>
<td width="99%" align="left" background="templates/WebInspect/images/catty2_r1_c2.gif"><span class="cattitleWhite"><a href="{catrow.U_VIEWCAT}" class="cattitleWhite">{catrow.CAT_DESC}</a></span></td>
<td width="0%" align="right" background="templates/WebInspect/images/catty2_r1_c2.gif"><img name="catty2_r1_c4" src="templates/WebInspect/images/catty2_r1_c4.gif" width="4" height="28" border="0" alt=""></td>
</tr>
</table>
<!-- BEGIN forumrow -->
<table width="97%" cellpadding="2" cellspacing="1" border="0" class="forumline">
<tr>
<td width="1%" align="center" valign="middle" class="row1"><img src="{catrow.forumrow.FORUM_FOLDER_IMG}" width="30" height="30" alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" title="{catrow.forumrow.L_FORUM_FOLDER_ALT}" /></td>
<td width="50%" align="left" class="row2" onMouseOver="this.style.backgroundColor='#FAFAFA'; this.style.cursor='hand';" onMouseOut=this.style.backgroundColor="#F5F5F5" onclick="window.location.href='{catrow.forumrow.U_VIEWFORUM}'"><span class="forumlink"> <a href="{catrow.forumrow.U_VIEWFORUM}" class="forumlink">{catrow.forumrow.FORUM_NAME}</a><br />
</span> <span class="genmed">{catrow.forumrow.FORUM_DESC}<br />
</span><span class="gensmall">{catrow.forumrow.L_MODERATOR} {catrow.forumrow.MODERATORS}</span></td>
<td width="10%" align="center" valign="middle" class="row2"><span class="gensmall">{catrow.forumrow.TOPICS}</span></td>
<td width="10%" align="center" valign="middle" class="row2"><span class="gensmall">{catrow.forumrow.POSTS}</span></td>
<td width="22%" align="center" valign="middle" nowrap="nowrap" class="row2"> <span class="gensmall">{catrow.forumrow.LAST_POST}</span></td>
</tr>
</table>
<!-- END forumrow -->
<!-- END catrow -->
<table width="97%" cellspacing="0" border="0" align="center" cellpadding="2">
<tr>
<td align="left"><span class="gensmall"><a href="{U_MARK_READ}" class="gensmall">{L_MARK_FORUMS_READ}</a></span></td>
<td align="right"><span class="gensmall">{S_TIMEZONE}</span></td>
</tr>
</table>
<br>
<table width="97%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="1%" align="left" background="templates/WebInspect/images/catty_r1_c2.gif"><img name="catty_r1_c1" src="templates/WebInspect/images/catty_r1_c1.gif" width="2" height="31" border="0" alt=""></td>
<td width="98%" background="templates/WebInspect/images/catty_r1_c2.gif"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="left"><span class="cattitle"><a href="{U_VIEWONLINE}" class="cattitle">{L_WHO_IS_ONLINE}</a></span></td>
</tr>
</table></td>
<td width="1%" align="right" background="templates/WebInspect/images/catty_r1_c2.gif"><img name="catty_r1_c4" src="templates/WebInspect/images/catty_r1_c4.gif" width="2" height="31" border="0" alt=""></td>
</tr>
</table>
<table width="97%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="1%" align="left" background="templates/WebInspect/images/catty2_r1_c2.gif"><img name="catty2_r1_c1" src="templates/WebInspect/images/catty2_r1_c1.gif" width="3" height="28" border="0" alt=""></td>
<td width="99%" align="left" background="templates/WebInspect/images/catty2_r1_c2.gif"><span class="gensmall2">{L_ONLINE_EXPLAIN}</span></td>
<td width="0%" align="right" background="templates/WebInspect/images/catty2_r1_c2.gif"><img name="catty2_r1_c4" src="templates/WebInspect/images/catty2_r1_c4.gif" width="4" height="28" border="0" alt=""></td>
</tr>
</table>
<!-- BEGIN switch_user_logged_in -->
<table width="97%" cellpadding="3" cellspacing="1" border="0" class="forumline">
<tr>
<td class="row1" align="center" valign="middle" rowspan="2"><img src="templates/WebInspect/images/whosonline.gif" alt="{L_WHO_IS_ONLINE}" /></td>
<td class="row1" align="left" width="100%"><span class="gensmall">{TOTAL_POSTS}<br />
{TOTAL_USERS}<br />
{NEWEST_USER}</span> </td>
</tr>
<tr>
<td class="row1" align="left"><span class="gensmall">{TOTAL_USERS_ONLINE}   [ {L_WHOSONLINE_ADMIN} ]   [ {L_WHOSONLINE_MOD} ]<br />
{RECORD_USERS}<br />
{LOGGED_IN_USER_LIST}</span></td>
</tr>
</table>
<!-- END switch_user_logged_in -->
<br>

<!-- BEGIN switch_user_logged_out -->
<form method="post" action="{S_LOGIN_ACTION}">
<table width="97%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="1%" align="left" background="templates/WebInspect/images/catty_r1_c2.gif"><img name="catty_r1_c1" src="templates/WebInspect/images/catty_r1_c1.gif" width="2" height="31" border="0" alt=""></td>
<td width="98%" background="templates/WebInspect/images/catty_r1_c2.gif"><table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td align="left"><span class="cattitle">Login</span></td>
</tr>
</table></td>
<td width="1%" align="right" background="templates/WebInspect/images/catty_r1_c2.gif"><img name="catty_r1_c4" src="templates/WebInspect/images/catty_r1_c4.gif" width="2" height="31" border="0" alt=""></td>
</tr>
</table>
<table width="97%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width="1%" align="left" background="templates/WebInspect/images/catty2_r1_c2.gif"><img name="catty2_r1_c1" src="templates/WebInspect/images/catty2_r1_c1.gif" width="3" height="28" border="0" alt=""></td>
<td width="99%" align="left" background="templates/WebInspect/images/catty2_r1_c2.gif"><span class="gensmall2">Please take a moment to log yourself in. </span></td>
<td width="0%" align="right" background="templates/WebInspect/images/catty2_r1_c2.gif"><img name="catty2_r1_c4" src="templates/WebInspect/images/catty2_r1_c4.gif" width="4" height="28" border="0" alt=""></td>
</tr>
</table>
<table width="97%" cellpadding="3" cellspacing="1" border="0" class="forumline">
<tr>
<td class="row1" align="center" valign="middle" height="28"><span class="gensmall">{L_USERNAME}:
<input class="post" type="text" name="username" size="10" />
   {L_PASSWORD}:
<input class="post" type="password" name="password" size="10" maxlength="32" />
     {L_AUTO_LOGIN}
<input class="text" type="checkbox" name="autologin" value="ON" />
   
<input type="submit" class="mainoption" name="login" value="{L_LOGIN}" />
</span> </td>
</tr>
</table>
</form>
<!-- END switch_user_logged_out -->
<br>
<table cellspacing="3" border="0" align="center" cellpadding="0">
<tr>
<td width="20" align="center"><img src="templates/WebInspect/images/folder_new_big.gif" alt="{L_NEW_POSTS}"/></td>
<td><span class="gensmall">{L_NEW_POSTS}</span></td>
<td>  </td>
<td width="20" align="center"><img src="templates/WebInspect/images/folder_big.gif" alt="{L_NO_NEW_POSTS}" /></td>
<td><span class="gensmall">{L_NO_NEW_POSTS}</span></td>
<td>  </td>
<td width="20" align="center"><img src="templates/WebInspect/images/folder_locked_big.gif" alt="{L_FORUM_LOCKED}" /></td>
<td><span class="gensmall">{L_FORUM_LOCKED}</span></td>
</tr>
</table>
<br>



I added the user logged in switched on this table:

Code:<!-- BEGIN switch_user_logged_in -->
<table width="97%" cellpadding="3" cellspacing="1" border="0" class="forumline">
<tr>
<td class="row1" align="center" valign="middle" rowspan="2"><img src="templates/WebInspect/images/whosonline.gif" alt="{L_WHO_IS_ONLINE}" /></td>
<td class="row1" align="left" width="100%"><span class="gensmall">{TOTAL_POSTS}<br />
{TOTAL_USERS}<br />
{NEWEST_USER}</span> </td>
</tr>
<tr>
<td class="row1" align="left"><span class="gensmall">{TOTAL_USERS_ONLINE}   [ {L_WHOSONLINE_ADMIN} ]   [ {L_WHOSONLINE_MOD} ]<br />
{RECORD_USERS}<br />
{LOGGED_IN_USER_LIST}</span></td>
</tr>
</table>
<!-- END switch_user_logged_in -->
0 Replies
 
rhollin1
 
  1  
Mon 19 Apr, 2004 12:22 am
Something is wrong. All of the images are screwed up. When I click on a thread it's dead and it has sessions in it when it didn't b4.
0 Replies
 
Craven de Kere
 
  1  
Mon 19 Apr, 2004 12:39 am
There's no way the change I posted above can change sessions. But if you are having errors restore your backups and see what's wrong.
0 Replies
 
rhollin1
 
  1  
Mon 19 Apr, 2004 12:40 am
All is fine now except that my images are not working on the index page. I can't seem to figure out why.
0 Replies
 
rhollin1
 
  1  
Mon 19 Apr, 2004 12:41 am
i have no backups...the forum is new...i have about 100 post but i haven't backed up yet.
0 Replies
 
 

Related Topics

SEO - Going from 0 PR on up - Discussion by jespah
How Rich Pins work ??? - Question by OnceUponAtime
Need a bit of Google advice - Question by bible quizzer
Google Indexing Issue - Question by brainstudioz
Bing Search results - Discussion by iankyra
What is best way for Off-Page seo in 2017? - Question by honesttravel1
 
Copyright © 2024 MadLab, LLC :: Terms of Service :: Privacy Policy :: Page generated in 0.04 seconds on 05/17/2024 at 07:24:29