hi -- this is really exciting, would this plugin work for WPMU2.7?

This will make me switch to punBB again!
Would this plugin work on WPMU 2.7?

thanks

is there any punbb-phpizabi bridge out there? i know there is one smf bridge but i really want to stick to punbb as the community forum.

smf bridge here> http://online.phpizabi.net/?X=dist.modu … amp;id=111

willing to pay smile

4

(7 replies, posted in Feature requests)

i dont know if there was further development to this. it looks awesome tho' with lots of info.

anyway / any mod to have this done at admin panel?

6

(5 replies, posted in PunBB 1.2 discussion)

a separate censorlist for usernames?

duh! Feeds with DTDs are not supported.

that sie is probably using vbulletin 'similar thread' search feature ported to punbb. try also phpbb similar topics mod.

did anyone try AJAX on this? ie, online list being updated.. say every 15 seconds without refreshing the page.?

tobi -- i probably messed up the script somewhere but cant figure out where. I tried posting text + oversized image and I get the error msgs related to img as expected. But then, the message is posted with no text in it (empty).. from the database, the post is being registered as having last_post_id as ZERO. any idea?

Yeah... AJAX!
Here's a sample of AJAX on chatbox + AJAX latest post on main page here > http://kadus.bambooborneo.com/index.php
Using pokemon_jojo chatbox + extern.php with ajax.

Dr.Jeckyl wrote:

the last couple of version of firefox have done this to me. not sure if this helps tho.

i am pretty sure 1.5.0.6 did this to me as well on the perfectly running punbb esp viewtopic.php in one or two instances.
will update to 1.5.0.7.. oh it is downloading now..

tobi, with this mod i just realized that when user upload a file bigger than the set maxsize or unallowed ext, the user gets error msg as intended; but still the topic id is registered in database and thus creates an entry in the forum. How to prevent this? i have to manually erase each of this "empty" post everytime. thanks.

faax wrote:

i don't need "smilar" like this... see post located here [url]http://punbb.org/forums/viewtopic.php?pid=67268#p67268[url]there is my rss.php ... so i need something in format like this

TOPIC NAME
Author: USERNAME wrote: MESSAGE

i have done with TOPICNAME and MESSAGE line but how to add author USERNAME ?
sorry about my bad english hope to understeand

how about this?

                $result = $db->query('SELECT t.id, t.poster, t.subject, t.posted, t.last_post, t.last_poster, f.id AS fid, f.forum_name 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=3) WHERE (fp.read_forum IS NULL OR fp.read_forum=1) AND t.moved_to IS NULL'.$forum_sql.' ORDER BY '.$order_by.' DESC LIMIT '.$show) or error('Unable to fetch topic list', __FILE__, __LINE__, $db->error());
        
        while ($cur_topic = $db->fetch_assoc($result))
        {
            if ($pun_config['o_censoring'] == '1')
                $cur_topic['subject'] = censor_words($cur_topic['subject']);

            if (pun_strlen($cur_topic['subject']) > $max_subject_length)
                $subject_truncated = trim(substr($cur_topic['subject'], 0, ($max_subject_length-5))).' ...';
            else
                $subject_truncated = $cur_topic['subject'];

            echo '<li><a class="topic" href="'.$pun_config['o_base_url'].'/viewtopic.php?id='.$cur_topic['id'].'&action=new" title="'.pun_htmlspecialchars($cur_topic['subject']).'">'.pun_htmlspecialchars($subject_truncated).'</a>- '.$cur_topic['last_poster'].' [Forum: <a href="'.$pun_config['o_base_url'].'/viewforum.php?id='.$cur_topic['fid'].'">'.$cur_topic['forum_name'].'</a>]</li>'."\n";
        }

Hmm this thread has the info .. you can just read through it.

Dolphin anyone...
Anyone managed to integrate ?punbb forum with doplhin (http://www.boonex.com) ?

ango -- how to show more than one tophighscorers? For example, if one game there are two users having the same score. This is reflected in the Top Highscore champion count but the additional user is not indicated in the top highscores column.

Set permission in your forum option so that guests can reply/post message. This should be in your admin menu under Forums.

pokemon_jojo wrote:

@faax : Hummmmm aie aie aie,
Your solution is for users who use the modification of PBBChatbox 1.0 (AJAX) from CodeXP.
Your solution is not compatible with PBBChatbox 2.0 (AJAX).

pokemon, any hacks so far to make the v2.0 displays on index.php? I am using faax solution using codexp mod, would be great if your v2.0 can be used instead -- more features that i can use i.e. autorefresh etc and admin panel. tq

I faced similar problems before -- empty pages. Smartys found out that the problems were due to language files either missing of incomplete. Other possible could be due to uploading in Binary instead of ASCII for text files.

FreAkErZ wrote:

Here's a zip with the files I modified.. I did a install_mod.php to add the config values needed..

http://www.freakerz.com/PBBChatBox1.0-Summary.zip

Enjoy!

Great script! big_smile User love it!

freakerz, the dl link is not working.

This is what I like about punbb, not only the script itself but the people behind it and those like you Smartys... ever helpful.
And yes, the index.php for the malaysia pack which was accidentally deleted was causing all this!

Can't thank you guys enough.. but thanks.

Smartys:
Once you login as gilu, empty page appears. So the only way for me to logout is, to manually type http://kadus.bambooborneo.com/userlists.php so that the menu to logout appears. If you login as punbb, all ok.

Also, if you login as admin, all ok. Do you need an admin login?

I hope this is only due to my pc screwed up.. but the other members are facing similar problems.
Thanks

Rickard, did that ... and the problems persist.

a) I can only get redirected to index.php if logging in as admin; with other users, once logged in, an empty page appears during redirect to index.php
b) Guests have no problems accessing pages i.e. index.php etc
c) Newly registered users (after the fresh install), have no problems accessing pages, index.php etc.

Getting frustated with this punbb thing. I did a fresh install on old database but the problem persists. So it could be the database??

a) I can only get redirected to index.php if logging in as admin; with other users, an empty page appears.
b) Guests have no problems accessing pages tho'.
c) Newly registered users (after the fresh install), have no problems accessing pages.

????????

My config.php

<?php

$db_type = 'mysql';
$db_host = 'localhost';
$db_name = 'bamboo_kadus';
$db_username = 'XXXXX';
$db_password = 'XXXXX';
$db_prefix = 'kadus_';
$p_connect = false;

$cookie_name = 'punbb_cookies';
$cookie_domain = '.bambooborneo.com';
$cookie_path = '/';
$cookie_secure = 0;
$cookie_seed = 'c0a9fb60';

define('PUN', 1);