i updated my site with a new style, plz check it out
2 2008-06-28 21:39
Topic: diablo 3 community (4 replies, posted in PunBB 1.2 show off)
heres my first forum and style
Diablo 3 Community
3 2008-06-16 21:07
Re: 1.3 Oxygen (Redesign) (23 replies, posted in PunBB 1.3 troubleshooting)
no, go to fluxbb.org for all your fluxbb needs
4 2008-06-16 15:31
Re: 1.3 Oxygen (Redesign) (23 replies, posted in PunBB 1.3 troubleshooting)
grudon66 wrote:Change to Fluxbb
what's fluxBB?????
basically punbb but by the original developers and is now called fluxbb
5 2008-06-14 04:01
Re: 1.3 Oxygen (Redesign) (23 replies, posted in PunBB 1.3 troubleshooting)
i like it!
6 2008-05-13 02:57
Re: This is what I want to do PLEASE Help. (22 replies, posted in General discussion)
pay someone?
7 2008-04-26 04:30
Re: Shop Mod (Item Shop 1.5) (3 replies, posted in PunBB 1.2 modifications, plugins and integrations)
i dont have permission to see it in action...
8 2008-04-20 22:58
Re: New MyPunBB support forum (4 replies, posted in PunBB 1.2 show off)
dashed lines ftw
9 2008-04-18 01:17
Re: point mod (4 replies, posted in PunBB 1.3 troubleshooting)
but you cant spend the cash
10 2008-04-17 23:38
Topic: point mod (4 replies, posted in PunBB 1.3 troubleshooting)
someone should make a point mod/hook as it encourages participation in a community as addressed here
[snip blogspam]
11 2008-04-04 23:46
Re: change layout (6 replies, posted in PunBB 1.3 troubleshooting)
"email" isnt inside .user
its inside the "post", but at least it is lined up properly
12 2008-04-03 23:06
Re: change layout (6 replies, posted in PunBB 1.3 troubleshooting)
im using firefox 3.0 beta 5 and im getting some alignment issues
Default
http://bayimg.com/cAjAOAAbF
New
http://bayimg.com/cajApaaBf
first there was a little gray box by the poster's name, dont know where that came from
the report, delete, edit, quote doesnt line up with email on the right like it does normally
13 2008-04-03 14:40
Re: change layout (6 replies, posted in PunBB 1.3 troubleshooting)
plz post how u do this, i changed the float from left to right for .user and that didnt work
14 2008-04-03 03:26
Topic: change layout (6 replies, posted in PunBB 1.3 troubleshooting)
i was wondering how i could change the layout when you view a post
i want all the user info, thats currently on the left side with the post on the right to be swapped
so post on left and user info on right
i dont really want to change the code in viewtopic.php so is it possible to do it with css?
15 2008-03-31 04:09
Re: My wow guild forum (4 replies, posted in PunBB 1.2 show off)
wow very warcraft like
i like it
16 2008-03-26 04:31
Re: vanilla style front page (active topics) (7 replies, posted in PunBB 1.3 troubleshooting)
well the script is suppose to show active topics
i just put in the hook part because the index file had them
do i really need hooks in my script? can i just take them out and it will still work?
i cant really test this out since im on vacation
17 2008-03-25 21:51
Re: vanilla style front page (active topics) (7 replies, posted in PunBB 1.3 troubleshooting)
it used the same names as index because thats where i copied them from, do i really need the hooks there?
im new to the 1.3beta so i dont know how to use the query builder yet (someone wanna do this for me??)
is making this extensible better? if not should i just take out the hooks?
18 2008-03-25 01:06
Re: vanilla style front page (active topics) (7 replies, posted in PunBB 1.3 troubleshooting)
lol i fixed it and it works
changed it to alexking's code
and made it display like the topics in the forum
<?php
if (!defined('PUN_ROOT'))
define('PUN_ROOT', './');
require PUN_ROOT.'include/common.php';
($hook = get_hook('in_start')) ? eval($hook) : null;
if ($pun_user['g_read_board'] == '0')
message($lang_common['No view']);
// Load the index.php language file
require PUN_ROOT.'lang/'.$pun_user['language'].'/index.php';
define('PUN_ALLOW_INDEX', 1);
define('PUN_PAGE', 'index');
require PUN_ROOT.'header.php';
$ak_limit = 25; // change this to the number of active topics you want to display.
$result = $db->query('
SELECT t.*
FROM '.$db->prefix.'topics AS t
INNER JOIN '.$db->prefix.'forums AS f
ON f.id=t.forum_id
LEFT JOIN '.$db->prefix.'forum_perms AS fp
ON (
fp.forum_id=f.id
AND fp.group_id='.$pun_user['g_id'].'
)
WHERE (
fp.read_forum IS NULL
OR fp.read_forum=1
)
ORDER BY t.last_post DESC
LIMIT '.$ak_limit
) or error('Unable to fetch topic list', __FILE__, __LINE__, $db->error());
require PUN_ROOT.'lang/'.$pun_user['language'].'/forum.php';
?>
<div id="pun-main" class="main">
<div class="main-head">
<h2><span>Active Topics</span></h2>
</div>
<div id="category1" class="main-content category">
<table cellspacing="0">
<thead>
<tr>
<th class="tcl" scope="col"><?php echo $lang_common['Topic'] ?></th>
<th class="tc2" scope="col"><?php echo $lang_common['Replies'] ?></th>
<th class="tc3" scope="col"><?php echo $lang_forum['Views'] ?></th>
<th class="tcr" scope="col"><?php echo $lang_common['Last post'] ?></th>
</tr>
</thead>
<tbody class="statused">
<?php
// If there are topics in this forum.
if ($db->num_rows($result))
{
while ($cur_topic = $db->fetch_assoc($result))
{
if ($cur_topic['moved_to'] == null)
$last_post = '<a href="viewtopic.php?pid='.$cur_topic['last_post_id'].'#p'.$cur_topic['last_post_id'].'">'.format_time($cur_topic['last_post']).'</a> <span class="byuser">'.$lang_common['by'].' '.htmlspecialchars($cur_topic['last_poster']).'</span>';
else
$last_post = ' ';
if ($pun_config['o_censoring'] == '1')
$cur_topic['subject'] = censor_words($cur_topic['subject']);
if ($cur_topic['moved_to'] != 0)
$subject = $lang_forum['Moved'].': <a href="viewtopic.php?id='.$cur_topic['moved_to'].'">'.pun_htmlspecialchars($cur_topic['subject']).'</a> <span class="byuser">'.$lang_common['by'].' '.pun_htmlspecialchars($cur_topic['poster']).'</span>';
else if ($cur_topic['closed'] == '0')
$subject = '<a href="viewtopic.php?id='.$cur_topic['id'].'">'.htmlspecialchars($cur_topic['subject']).'</a> <span class="byuser">'.$lang_common['by'].' '.htmlspecialchars($cur_topic['poster']).'</span>';
else
{
$subject = '<a href="viewtopic.php?id='.$cur_topic['id'].'">'.htmlspecialchars($cur_topic['subject']).'</a> <span class="byuser">'.$lang_common['by'].' '.htmlspecialchars($cur_topic['poster']).'</span>';
}
if (!$pun_user['is_guest'] && $cur_topic['last_post'] > $pun_user['last_visit'] && $cur_topic['moved_to'] == null)
{
$subject = '<strong>'.$subject.'</strong>';
$subject_new_posts = '<span class="newtext">[ <a href="viewtopic.php?id='.$cur_topic['id'].'&action=new" title="'.$lang_common['New posts info'].'">'.$lang_common['New posts'].'</a> ]</span>';
}
else
$subject_new_posts = null;
// Should we display the dot or not? :)
if (1 == 0 && !$pun_user['is_guest'] && $pun_config['o_show_dot'] == '1')
{
if ($cur_topic['has_posted'] == $pun_user['id'])
$subject = '<strong>·</strong> '.$subject;
else
$subject = ' '.$subject;
}
if ($cur_topic['sticky'] == '1')
{
$subject = '<span class="stickytext">'.$lang_forum['Sticky'].': </span>'.$subject;
}
$num_pages_topic = ceil(($cur_topic['num_replies'] + 1) / $pun_user['disp_posts']);
if ($num_pages_topic > 1)
$subject_multipage = '[ '.paginate($num_pages_topic, -1, 'viewtopic.php?id='.$cur_topic['id']).' ]';
else
$subject_multipage = null;
// Should we show the "New posts" and/or the multipage links?
if (!empty($subject_new_posts) || !empty($subject_multipage))
{
$subject .= ' '.(!empty($subject_new_posts) ? $subject_new_posts : '');
$subject .= !empty($subject_multipage) ? ' '.$subject_multipage : '';
}
?>
<tr id="forum1" class="odd normal">
<td class="tcl">
<span class="status normal" title="Forum"><img src="http://localhost/punbbbeta/style/Oxygen/status.png" alt="Forum" /></span><?php echo $subject."\n" ?>
</td>
<td class="tc2"><?php echo ($cur_topic['moved_to'] == null) ? $cur_topic['num_replies'] : ' ' ?></td>
<td class="tc3"><?php echo ($cur_topic['moved_to'] == null) ? $cur_topic['num_views'] : ' ' ?></td>
<td class="tcr"><?php echo $last_post ?></td>
</tr>
<?php
}
}
else
{
?>
<tr>
<td class="tcl" colspan="4"><?php echo $lang_forum['Empty forum'] ?></td>
</tr>
<?php
}
?>
</tbody>
</table>
</div>
<?php
($hook = get_hook('in_end')) ? eval($hook) : null;
require PUN_ROOT.'footer.php';
19 2008-03-25 00:41
Re: Active Topics (57 replies, posted in PunBB 1.2 modifications, plugins and integrations)
anyone wanna update this to work with 1.3?
20 2008-03-25 00:28
Re: vanilla style front page (active topics) (7 replies, posted in PunBB 1.3 troubleshooting)
ok i got rid of those errors but i think im missing some of those new hook codes but wateva, tell me where to add them if their important
<?php
if (!defined('PUN_ROOT'))
define('PUN_ROOT', './');
require PUN_ROOT.'include/common.php';
($hook = get_hook('in_start')) ? eval($hook) : null;
if ($pun_user['g_read_board'] == '0')
message($lang_common['No view']);
// Load the index.php language file
require PUN_ROOT.'lang/'.$pun_user['language'].'/index.php';
$page_title = htmlspecialchars($pun_config['o_board_title']).' / Active Topics';
define('PUN_ALLOW_INDEX', 1);
define('PUN_PAGE', 'index');
require PUN_ROOT.'header.php';
$day_limit = 2; // make this the auto number of days you want to be displayed.
$days = isset($_POST['days']) ? $_POST['days'] : $day_limit;
$posts_since = mktime(date("H"), date("i"), date("s"), date("m"), (date("d")-$days), date("Y"));
$latest = $db->query('SELECT t.id, t.poster, t.subject, t.posted, t.last_post, t.last_poster, t.num_replies, f.id
AS fid, f.forum_name
FROM '.$db->prefix.'topics
AS t INNER JOIN '.$db->prefix.'forums
AS f
ON t.forum_id=f.id
WHERE t.moved_to IS NULL
AND f.admmod_only=0
AND t.last_post>'.$posts_since.'
ORDER BY last_post DESC');
?>
<table class="punspacer" cellspacing="1" cellpadding="4">
<tr>
<td style="width: 14%;"><b><a href="index.php"><?php echo htmlspecialchars($pun_config['o_board_title']) ?></a> / Active Topics</b></td>
<td class="punright"><form method="post" action="">Days to show: <input type="text" name="days" value="<?php echo $days; ?>" size="3"> <input type="submit" value="Go"></form></td>
</tr>
</table>
<table class="punmain" cellspacing="1" cellpadding="4">
<tr class="punhead">
<td class="punhead"><?php echo $lang_common['Topic'] ?></td>
<td class="punhead" style="width: 5%; white-space: nowrap">Replies</td>
<td class="punhead" style="width: 14%; white-space: nowrap">Last Poster</td>
<td class="punhead" style="width: 14%; white-space: nowrap"><?php echo $lang_common['Last post'] ?></td>
</tr>
<?php
while ($ak_post = $db->fetch_assoc($latest)) {
$subject_new_posts = '[ <a href="viewtopic.php?id='.$ak_post['id'].'&action=new" title="'.$lang_common['New posts info'].'">'.$lang_common['New posts'].'</a> ]';
?>
<tr class="puntopic">
<td class="puncon2"><a href="viewtopic.php?id=<?php echo $ak_post['id'] ?>&action=new"><?php echo pun_htmlspecialchars($ak_post['subject']) ?></a> <?php echo $subject_new_posts; ?></td>
<td class="puncon2"><?php echo pun_htmlspecialchars($ak_post['num_replies']) ?></td>
<td class="puncon2"><?php echo pun_htmlspecialchars($ak_post['last_poster']) ?></td>
<td class="puncon2" style="white-space: nowrap"><?php echo format_time($ak_post['last_post']) ?></td>
</tr>
<?php
}
?>
</table>
<table class="punspacer" cellspacing="1" cellpadding="4"><tr><td> </td></tr></table>
<?php
($hook = get_hook('in_end')) ? eval($hook) : null;
require PUN_ROOT.'footer.php';
ok now no errors, but it doesnt show any of the active topics
21 2008-03-25 00:24
Topic: vanilla style front page (active topics) (7 replies, posted in PunBB 1.3 troubleshooting)
im looking to make a vanilla style front page (which has just the active topics aka new posts and ones that get replied) as my index.php while i renamed the old index as forum.php
im using this code found here
http://punbb.org/forums/viewtopic.php?pid=25650#p25650
did some editing since its not compatible with 1.3 but i still have errors
Notice: Use of undefined constant PUN_PAGE - assumed 'PUN_PAGE' in C:\xampplite\htdocs\punbbbeta\header.php on line 40
Notice: Use of undefined constant PUN_PAGE - assumed 'PUN_PAGE' in C:\xampplite\htdocs\punbbbeta\header.php on line 47
Notice: Use of undefined constant PUN_PAGE - assumed 'PUN_PAGE' in C:\xampplite\htdocs\punbbbeta\header.php on line 130
Notice: Use of undefined constant PUN_PAGE - assumed 'PUN_PAGE' in C:\xampplite\htdocs\punbbbeta\include\functions.php on line 478
Notice: Use of undefined constant PUN_PAGE - assumed 'PUN_PAGE' in C:\xampplite\htdocs\punbbbeta\include\functions.php on line 481
Notice: Use of undefined constant PUN_PAGE - assumed 'PUN_PAGE' in C:\xampplite\htdocs\punbbbeta\include\functions.php on line 505
Notice: Use of undefined constant PUN_PAGE - assumed 'PUN_PAGE' in C:\xampplite\htdocs\punbbbeta\include\functions.php on line 506
Notice: Use of undefined constant PUN_PAGE - assumed 'PUN_PAGE' in C:\xampplite\htdocs\punbbbeta\include\functions.php on line 506
Notice: Use of undefined constant PUN_PAGE - assumed 'PUN_PAGE' in C:\xampplite\htdocs\punbbbeta\include\functions.php on line 507
Notice: Use of undefined constant PUN_PAGE - assumed 'PUN_PAGE' in C:\xampplite\htdocs\punbbbeta\footer.php on line 39
Notice: Use of undefined constant PUN_PAGE - assumed 'PUN_PAGE' in C:\xampplite\htdocs\punbbbeta\header.php on line 75
Notice: Use of undefined constant PUN_PAGE - assumed 'PUN_PAGE' in C:\xampplite\htdocs\punbbbeta\header.php on line 83
Notice: Use of undefined constant PUN_PAGE - assumed 'PUN_PAGE' in C:\xampplite\htdocs\punbbbeta\header.php on line 88
Notice: Use of undefined constant PUN_PAGE - assumed 'PUN_PAGE' in C:\xampplite\htdocs\punbbbeta\header.php on line 119
so heres my new index.php with problems
plz help kthxbye
<?php
if (!defined('PUN_ROOT'))
define('PUN_ROOT', './');
require PUN_ROOT.'include/common.php';
($hook = get_hook('in_start')) ? eval($hook) : null;
if ($pun_user['g_read_board'] == '0')
message($lang_common['No view']);
// Load the index.php language file
require PUN_ROOT.'lang/'.$pun_user['language'].'/index.php';
$page_title = htmlspecialchars($pun_config['o_board_title']).' / Active Topics';
require PUN_ROOT.'header.php';
$day_limit = 2; // make this the auto number of days you want to be displayed.
$days = isset($_POST['days']) ? $_POST['days'] : $day_limit;
$posts_since = mktime(date("H"), date("i"), date("s"), date("m"), (date("d")-$days), date("Y"));
$latest = $db->query('SELECT t.id, t.poster, t.subject, t.posted, t.last_post, t.last_poster, t.num_replies, f.id
AS fid, f.forum_name
FROM '.$db->prefix.'topics
AS t INNER JOIN '.$db->prefix.'forums
AS f
ON t.forum_id=f.id
WHERE t.moved_to IS NULL
AND f.admmod_only=0
AND t.last_post>'.$posts_since.'
ORDER BY last_post DESC');
?>
<table class="punspacer" cellspacing="1" cellpadding="4">
<tr>
<td style="width: 14%;"><b><a href="index.php"><?php echo htmlspecialchars($pun_config['o_board_title']) ?></a> / Active Topics</b></td>
<td class="punright"><form method="post" action="">Days to show: <input type="text" name="days" value="<?php echo $days; ?>" size="3"> <input type="submit" value="Go"></form></td>
</tr>
</table>
<table class="punmain" cellspacing="1" cellpadding="4">
<tr class="punhead">
<td class="punhead"><?php echo $lang_common['Topic'] ?></td>
<td class="punhead" style="width: 5%; white-space: nowrap">Replies</td>
<td class="punhead" style="width: 14%; white-space: nowrap">Last Poster</td>
<td class="punhead" style="width: 14%; white-space: nowrap"><?php echo $lang_common['Last post'] ?></td>
</tr>
<?php
while ($ak_post = $db->fetch_assoc($latest)) {
$subject_new_posts = '[ <a href="viewtopic.php?id='.$ak_post['id'].'&action=new" title="'.$lang_common['New posts info'].'">'.$lang_common['New posts'].'</a> ]';
?>
<tr class="puntopic">
<td class="puncon2"><a href="viewtopic.php?id=<?php echo $ak_post['id'] ?>&action=new"><?php echo pun_htmlspecialchars($ak_post['subject']) ?></a> <?php echo $subject_new_posts; ?></td>
<td class="puncon2"><?php echo pun_htmlspecialchars($ak_post['num_replies']) ?></td>
<td class="puncon2"><?php echo pun_htmlspecialchars($ak_post['last_poster']) ?></td>
<td class="puncon2" style="white-space: nowrap"><?php echo format_time($ak_post['last_post']) ?></td>
</tr>
<?php
}
?>
</table>
<table class="punspacer" cellspacing="1" cellpadding="4"><tr><td> </td></tr></table>
<?php
require $pun_root.'footer.php';
22 2007-08-16 16:07
Re: Show support for Rivals Clan/Ladder/Tournament mod (4 replies, posted in PunBB 1.2 modifications, plugins and integrations)
hell yeah
tell him to make it
23 2007-08-15 05:43
Re: my designers forum (1 replies, posted in PunBB 1.2 show off)
nice, but kinda dark to me, but still nice
24 2007-08-14 22:56
Re: PunTracker 1.0.4 (2 replies, posted in PunBB 1.2 modifications, plugins and integrations)
very nice
25 2007-08-12 16:27
Re: i propose a contest to encourage making modifications (2 replies, posted in PunBB 1.2 discussion)
lol sweet