Version: 1.00, by Brad
Developer Last Online: Nov 2023
Version: Unknown
Rating:
Released: 12-01-2002
Last Update: Never
Installs: 0
No support by the author.
Kousetsu Welcome Panel
|- because every hacker needs to release at least one .
This modification adds a new table to your index.php, its ment to welcome the user/guest and make everything look neater on forumhome. Check out the Screenshots in the next two post for a preview or view Kousetsu
This modification also includes a hackless verson of fireflys Avatar on homepage hack.
Ive used this on 2.2.5 rc - 2.2.9 final with no problems, all install docs and images in zip. If you use this please click the Install button in this thread, thank you.
Add-on: since your last visit XX posts and XX threads
This modification will add the amount of new post/threads in the welcome panel. Be aware this adds 2 queries to index.php and they are processer intensive. Ive released this modification in stand alone format here.
Install doc: (welcome panel must be installed frist)
---------------------------------------
Open the phpinclude template
---------------------------------------
## find
if (strpos($_SERVER['PHP_SELF'], 'index.php') != false)
{
if ($bbuserinfo[userid]!=0) {
$avatarurl=getavatarurl($bbuserinfo[userid]);
if ($avatarurl=='') {
$avatarurl='images/noavatar.gif';
}
$avatarimage='<img src="'.$avatarurl.'">';
} else {
$avatarimage='<a href="register.php?s='.$session[sessionhash].'&action=signup"><img src="images/guestavatar.gif"></a>';
}
}
## Replace with:
if (strpos($_SERVER['PHP_SELF'], 'index.php') != false)
{
if ($bbuserinfo[userid]!=0) {
$avatarurl=getavatarurl($bbuserinfo[userid]);
if ($avatarurl=='') {
$avatarurl='images/noavatar.gif';
}
$avatarimage='<img src="'.$avatarurl.'">';
} else {
$avatarimage='<a href="register.php?s='.$session[sessionhash].'&action=signup"><img src="images/guestavatar.gif"></a>';
}
// Start new threads/posts
$loonewthread=$DB_site->query_first("SELECT COUNT(*) AS threads FROM thread WHERE lastpost > '$bbuserinfo[lastvisit]'");
$loonewpost=$DB_site->query_first("SELECT count(*) AS posts FROM post WHERE dateline > '$bbuserinfo[lastvisit]'");
}
---------------------------------------------------
Open template forumhome_welcometext
---------------------------------------------------
## Find:
You last visited: $bbuserinfo[lastvisitdate].<br>
## Replace with:
You last visited: $bbuserinfo[lastvisitdate].<br />There have been <b>$loonewthread[threads]</b> threads and <b>$loonewpost[posts]</b> posts since your last visit!<br />
They since last visit add-on is nice. Too bad it requires a nasty index on the dateline field to be usable on large forums. I added this to SitePoint and the query for this alone added two seconds to the processing time.