Anyone has this? Link is down.

2

(41 replies, posted in PunBB 1.3 extensions)

Tnx, it works now.

dimkalinux wrote:

In any case, extension is not very carefully written and can create problems for both the server and for the forum and other extensions. I do not recommend to use the current version.

I know but there is really no alternative out there so i'm stuck.

3

(41 replies, posted in PunBB 1.3 extensions)

Any news on getting this to work on new fancy jquery?

KeyDog wrote:
Killerius wrote:

Hope it's not to late, I did it like this and it works  wink

With things like pun_user set in code etc you have it working on PunBB 1.3.x?
Do you have a link to your site?

Yea have a look:
http://www.pokerpro.si/forum/index.php

Hope it's not to late, I did it like this and it works  wink

#
#---------[ 1. UPLOAD TO / ]---------------------------------------------------
#

img/
include/


#
#---------[ 2. OPEN ]----------------------------------------------------------
#

header.php


#
#---------[ 3. FIND line:121]-------------------------------------------------
#

// Include stylesheets
require FORUM_ROOT.'style/'.$forum_user['style'].'/'.$forum_user['style'].'.php';



#
#---------[ 4. AFTER ADD ]-----------------------------------------------------
#

$forum_head['razsiri'] = '<script type="text/javascript" src="'.$base_url.'/include/global.js"></script>';


#
#---------[ 5. OPEN ]----------------------------------------------------------
#

index.php


#
#---------[ 6. FIND (line:88)]-------------------------------------------------
#

$forum_page['cur_category'] = $forum_page['cat_count'] = $forum_page['item_count'] = 0;


#
#---------[ 7. AFTER ADD ]-----------------------------------------------------
#

// stuff for toggling categories
$cat_ids = (isset($_COOKIE['collapseprefs']))? ','.$_COOKIE['collapseprefs'].',': FALSE;


#
#---------[ 8. FIND (line:117)]-------------------------------------------------
#

?>
<div class="main-head">
        <h2 class="hn"><span><?php echo forum_htmlencode($cur_forum['cat_name']) ?></span></h2>
    </div>
    <div class="main-subhead">
        <p class="item-summary"><span><?php printf($lang_index['Category subtitle'], implode(' ', $forum_page['item_header']['subject']), implode(', ', $forum_page['item_header']['info'])) ?></span></p>
    </div>
    <div id="category<?php echo $forum_page['cat_count'] ?>" class="main-content main-category">


#
#---------[ 9. REPLACE WITH ]--------------------------------------------------
#

        // Setting varibles for toggling categories
        $div_box = strstr($cat_ids, ','.$cat_count.',')? ' style="display:none"' : '';
        $exp_img = (is_file('img/'.$pun_user['style'].'/exp_down.png')? 'img/'.$pun_user['style'].'/': 'img/') . (strpos($div_box,'none') ? 'exp_down.png' : 'exp_up.png');
?>

<div id="idx<?php echo $forum_page['cat_count'] ?>" class="blocktable">
    <h2 class="hn">
        <span class="conr"><a href="javascript:togglecategory(<?php echo $forum_page['cat_count']?>);"><img src="<?php echo $exp_img?>" alt="Collapse" id="img_<?php echo $forum_page['cat_count']?>" /></a></span>
        <span><?php echo forum_htmlencode($cur_forum['cat_name']) ?></span>
    </h2>
    <div class="main-subhead">
        <p class="item-summary"><span><?php printf($lang_index['Category subtitle'], implode(' ', $forum_page['item_header']['subject']), implode(', ', $forum_page['item_header']['info'])) ?></span></p>
    </div>
    <div class="main-content main-category" id="category<?php echo $forum_page['cat_count'] ?>" <?php echo $div_box?>>
    
    
#
#---------[ 10. SAVE/UPLOAD ]--------------------------------------------------
#

6

(41 replies, posted in PunBB 1.3 extensions)

Meddler wrote:

This doesn't work for me sad
I had to removed the code that checked that I had JQuery installed. Once I'd done that the installation worked fine and I could see the chatbox on my index page. I could type something into the text box but when I clicked send nothing would happen but the page refreshed.

Any tips?

I have the same problem. Whe I tried to install it on a fresh copy of punbb, just jQuery and jQuery chat the same thing happens.

7

(35 replies, posted in PunBB 1.3 extensions)

Does this work for anyone in 1.3?

Hey I was just wondering if it's possible to use hyperlink in topic subject? I've searched the forum but couldn't find anything useful.

Tnx