SEO-Board: Free, Fast and Search Engine Optimization Friendly Forum Script
»User: »Password:   Remember Me? 
Posted:  20 May 2006 12:47
OK folks. Alot of time spent modding hristo's great code! That is why this forum is great. unlike other forums it is very simple, and you can add on to it and still feel like you coded it ()

What i've added:
<li>Top 5 Posters
<li>Members page
<li>Topic notification (email)
<li>Image attachment/upload
<li>Avatars
<li>Signatures
<li>New skin:
-No more tables. all divs
-Got rid of 'submit' style navigation (??)

Try it out : username "test" password "test"

RCHQ.org

And in answer to hristo's last topic: skins.
The skin editing you have done is great. However, i do not think you should put it in a MYSQL database, as there are no real reasons for doing it. You have to remember, many people are restricted in their database size.
However i think a web-based editor should be available; so admins without access to FTP can edit skins.

Keep up the great work hristo! But don't sell out. Keep the forum simple.
Posted:  20 May 2006 14:55
Your design is broken under firefox.

The submit style navigation has a little SEO value (it prevents inflating the number of non-content pages on a site and thus each content page gets more value from some ranking factors such as link popularity, usage pop etc.). I may get rid of it though, since it is difficult for some people to skin.

As for the skins, I will really think about it. I will be traveling for 10 days now and will be meditating around what to put in the new version.
Posted:  20 May 2006 15:17
i'm against firefox.
yes it is a good and much safer browser
but - why couldn't they just make it so it renders pages the same as IE? pfft
Posted:  20 May 2006 16:35
frazels,

Do you have the coding to add for the following?

Top 5 Posters
Members page
Topic notification (email)
Posted:  21 May 2006 12:56   Last Edited By: frazels
yeh...
--this code is rrrrrrreallly bad. i would like it if someone cleaned it up :)--

hmm it would be nice if i made some auto inserting code but i cbf.

Members Page:
create file in your base forum dir (where index.php is located) 'members.php'
Code:

<?
if(!defined('SEO-BOARD'))
{
  die($lang['fatal_error']);
}
require('forumheader.php');
require ('smilies/smilies.php');


$v = mysql_query("SELECT user_name, user_numposts, user_regdate, user_avatar, user_bio FROM `seo_board_users`  ORDER BY `user_numposts`  DESC");
$x=0;
while($x < 7){
/*user_name, user_timezone, user_numposts, user_regdate, user_allowviewonline, user_lasttimereadpost, user_lastsession, user_banned, user_avatar*/
$posts = sprintf("%s", mysql_result($v,$x,"user_numposts"));
$name = sprintf("%s", mysql_result($v,$x,"user_name"));
$date = date("M \\t\h\e d, Y", sprintf("%s", mysql_result($v,$x,"user_regdate")));
$bio = sprintf("%s", mysql_result($v,$x,"user_bio"));
$bio = str_replace(">","<li>",$bio);
$bio = format_bbcodes($bio);
$bio = fix_tabs_spaces($bio);

$bio = str_replace($sm_search, $sm_replace, $bio);
print eval(get_template('members'));
$x++;
}

?>


and den...
add file to your 'skin' directory 'members.htm'
REMEMBER it's .htm not .html . many potential tears over this mistake
Code:

<div style="width:100%; padding-bottom:40px;">
  <div style="width:120px; float:left;padding-right:20px;">
  <img src="upload/avatars/{$name}.jpg" alt="{$name}'s avatar"/></div>
  <div style="float:left; width:300px;">
  <h3>{$name}</h3>
  <div style="float:right;color:#666666; font-family:Arial; font-size:12px;">Registered since {$date}. {$posts} posts</div><br/>
  <hr/>
  {$bio}
  <hr/>

  <a href="{$forumscript}?a=search&s=&postsby=&postauthor={$name}">[Click to find {$name}'s past posts]</a>
  </div>
</div>


and then all we have to do is let index.php allow our little mod

Find:
Code:

if (!isset($a) ||
    !in_array($a, array


Insert into this array
Code:

'members'


i.e.
Code:

'register','vforum','members',


If that doesn't work get back to me. I've muddled the code up so much i just don't know these days... [confused]
Posted:  21 May 2006 12:59   Last Edited By: frazels
P.S. Hristo - i had to disable smilies in that post. They appear in 'code' bbcode... you may want to clean it up. (Strange- not doing it now.)
Posted:  06 Aug 2008 11:46
Not working