1

(39 replies, posted in News)

Hallelujah big_smile

2

(6 replies, posted in News)

Thank you, I just download at the moment smile

3

(5 replies, posted in News)

Great !!!

4

(35 replies, posted in Supported extensions)

\o/ ok  big_smile
No worries, it can happen wink

5

(35 replies, posted in Supported extensions)

Hello,

Sorry for the long answer, but I was pretty busy in recent days.
I am currently installing this extension, after enabling the option for the guests, it works.

Eg: http://nonante.eu/post/80284/

The problem would therefore be one of the extensions installed, at least that's what seems most plausible.


Thank you dimkalinux

6

(115 replies, posted in Supported extensions)

Hi,

Foremost, thanks you !

Bug report : Multiple twices " in FORUM_ROOT.'extensions/pun_poll/functions.php';
---------------

line 9 :

<div class="sf-set set<?php echo ++$forum_page['item_count'] ?>"">

line 37 :

<div class="sf-set set<?php echo ++$forum_page['item_count'] ?>"">

line 81 :

<div class="sf-set set<?php echo ++$forum_page['item_count'] ?>"">

line 94 :

<div class="sf-set set<?php echo ++$forum_page['item_count'] ?>"">

Edit: I just found another bug, I'm looking to rectify that immediately

<th> misplaced in <table>. Creating <tr> and putting <th> inside it.


Reedit :

If you want ...
I made the change in the file, i have corrected too manifest and i have changed : version to 1.1.12, maxtestedon to 1.3.4.
I uploaded the edited file here : http://punbb.informer.com/wiki/_media/p … n_poll.zip


Regards.

7

(35 replies, posted in Supported extensions)

wandy wrote:

does anyone else have this problem or is it just me?

Hello,
I have not tested this extension, but I install it tonight, I will give my feedback if nobody did it wink

Report bug : twices " in dictionary.php

echo '<ul id="suggest_users"">';

to

echo '<ul id="suggest_users">';

Thank you, works perfectly wink

Yes, I doubt that it's funny that now ^^.
Indeed, it will be wise to add a note on what can be inserted.

However, this is not a reason to stay on this failure, even if you were afraid smile.
It is by making mistakes that we learn best smile

Regards.

10

(4 replies, posted in General discussion)

Thanks a lot !
Merry Christmas PunBB http://images1.vefblog.net/vefblog.net/w/w/www/vefblog/photos_gros/2005/03/vefblog111191871412_gros.gif

Sorry, I have come too late neutral

- Never try a script on a christmas day
- Never enter a script in thé additionnal navlinks form

big_smile


Merry Christmas  tongue

12

(0 replies, posted in PunBB 1.3 bug reports)

Hello,

I have a problem with the extension "Pun_pm" on this site.
When I wanted to delete all my outbox messages, I was redirected on the same page, but some were not removed PM.

I now have this:
http://prezup.eu/images/punbb/bug_private_message.png
I can no longer possible to check messages.
When I click "Select All", I get this message appears:
Annouce of page  http://punbb.informer.com  : No message is selected. You have to select messages to delete.

This problem is only in the Outbox.

Regards.

13

(1 replies, posted in General discussion)

1 | If you have trouble changing the theme, try this: http://spinkbb.jsand.net/punbb/?spkEn

2 | You will find the language packs to this address: http://punbb.informer.com/wiki/punbb13/language_packs
     Only 40% are translated into your language apparently, because nobody did helped.
     It would be a good opportunity to do so.

3 | To do this, you need to edit the index file and comment/delete everything that is between:

// START SUBST - <!-- forum_info -->

and

// END SUBST - <!-- forum_info -->

4 | I do not know exactly what is the goal, but there are 2 possibilities :
Either go to http://domain.com/admin/groups.php and edit perms views for each groups
OR
open ../include/functions.php, about line 420, comment this :

    if ($forum_user['g_read_board'] == '1' && $forum_user['g_view_users'] == '1')
        $links['userlist'] = '<li id="navuserlist"'.((FORUM_PAGE == 'userlist') ? ' class="isactive"' : '').'><a href="'.forum_link($forum_url['users']).'">'.$lang_common['User list'].'</a></li>';

And finally, thank you for using the search function, some points have already been addressed.

Regards.

14

(32 replies, posted in Supported extensions)

Thank you very much.
I also extended to my sub forums in viewforum.php, works great!

15

(170 replies, posted in PunBB 1.3 extensions)

ok glad it is resolved wink

16

(170 replies, posted in PunBB 1.3 extensions)

kiejr wrote:

Ooops oops oops. I meant 'forum' instead of category..
Still pretty cool. But work your magic so it shows the different forums please and thankyou smile

Ok, no problem wink

So if you just want to see the forum name, you must modified as follows:

// Fetch list of topics
$query = array(
    'SELECT'    => 't.id, t.poster, t.subject, t.posted, t.first_post_id, t.last_post, t.last_post_id, t.last_poster, t.num_views, t.num_replies, t.closed, t.sticky, t.moved_to, f.forum_name',
    'FROM'        => 'topics AS t',
    'JOINS'        => array(
        array(
            'LEFT JOIN'         => 'forums as f',
            'ON'            => 't.forum_id=f.id'
        ),
        array(
            'LEFT JOIN'        => 'forum_perms AS fp',
            'ON'            => '(fp.forum_id=t.forum_id AND fp.group_id='.$forum_user['g_id'].')'
        )
    ),
    'WHERE'        => '(fp.read_forum IS NULL OR fp.read_forum=1) AND t.moved_to IS NULL',
    'ORDER BY'    => 't.last_post DESC',
    'LIMIT'        => '0, '.$count
);

and change your link to

$forum_page['item_title']['link'] = forum_htmlencode($cur_topic['forum_name']).' - <a href="'.forum_link($forum_url['topic'], array($cur_topic['id'], sef_friendly($cur_topic['subject']))).'">'.forum_htmlencode($cur_topic['subject']).'</a>';

If you cons want the forum name, and more when moving the mouse over the name of the forum category name appears,
just change it like this:

// Fetch list of topics
$query = array(
    'SELECT'    => 't.id, t.poster, t.subject, t.posted, t.first_post_id, t.last_post, t.last_post_id, t.last_poster, t.num_views, t.num_replies, t.closed, t.sticky, t.moved_to, f.forum_name, c.cat_name',
    'FROM'        => 'topics AS t',
    'JOINS'        => array(
        array(
            'LEFT JOIN'         => 'forums as f',
            'ON'            => 't.forum_id=f.id'
        ),
        array(
            'LEFT JOIN'        => 'forum_perms AS fp',
            'ON'            => '(fp.forum_id=t.forum_id AND fp.group_id='.$forum_user['g_id'].')'
        ),
        array(
            'LEFT JOIN'        => 'categories AS c',
            'ON'            => '(f.cat_id=c.id)'
        )

    ),
    'WHERE'        => '(fp.read_forum IS NULL OR fp.read_forum=1) AND t.moved_to IS NULL',
    'ORDER BY'    => 't.last_post DESC',
    'LIMIT'        => '0, '.$count
);

and change your link to

$forum_page['item_title']['link'] = '<span title="'.forum_htmlencode($cur_topic['cat_name']).'">'.forum_htmlencode($cur_topic['forum_name']).'</span> - <a href="'.forum_link($forum_url['topic'], array($cur_topic['id'], sef_friendly($cur_topic['subject']))).'">'.forum_htmlencode($cur_topic['subject']).'</a>';

Regards.

Edit: Adding color so you better change lanes

If you do not want to see this: TITLE + DESC + "Welcome Username" "Last activity on your account : Today 16:51:27" and link new message, ununswered and no response, try to put this on bottom of your .css

#brd-visit, #brd-head{
    display:none;
    }

and only the menu will appear else if you want to hide the text but keep the "background", try this:

#brd-visit, #brd-head{
    text-indent: -9999em;
    }
p#visit-links{ display:none;} // remove this if you want see links

I just watched the copper style on the wiki: http://punbb.informer.com/trac/browser/ … Copper.css
Have you changed/looked these lines in your copper.css ?

615    #brd-title {
616        padding-bottom: 0;
617        }
618   
619    #brd-title a, #brd-title strong {
620        font-size: 1.5em;
621        text-decoration: none;
622        font-weight: normal;
623        }
624   
625    #brd-desc {
626        font-size: 1.084em;
627        padding-top: 0;
628        padding-bottom: 0;
629        }

and

696    #brd-visit #welcome {
697        float: left;
698        }
699   
700    #brd-visit #visit-links {
701        text-align: right;
702        float: right;
703        }

19

(170 replies, posted in PunBB 1.3 extensions)

kiejr wrote:

Hey, ok.. need some help on this line.. If I wanted to get it to display the 'category' before the subject (for active topics). How would I do it?

$forum_page['item_title']['link'] = '[Category] - <a href="'.forum_link($forum_url['topic'], array($cur_topic['id'],
sef_friendly($cur_topic['subject']))).'">'.forum_htmlencode($cur_topic['subject']).'</a>';

Please and thankyou..


Hello,

This requires that you change active_topics.php at line 22,

// Fetch list of topics
$query = array(
    'SELECT'    => 't.id, t.poster, t.subject, t.posted, t.first_post_id, t.last_post, t.last_post_id, t.last_poster, t.num_views, t.num_replies, t.closed, t.sticky, t.moved_to, t.forum_id',
    'FROM'        => 'topics AS t',
    'JOINS'        => array(
        array(
            'LEFT JOIN'         => 'forums as f',
            'ON'            => 't.forum_id=f.id'
        ),
        array(
            'LEFT JOIN'        => 'forum_perms AS fp',
            'ON'            => '(fp.forum_id=t.forum_id AND fp.group_id='.$forum_user['g_id'].')'
        )
    ),
    'WHERE'        => '(fp.read_forum IS NULL OR fp.read_forum=1) AND t.moved_to IS NULL',
    'ORDER BY'    => 't.last_post DESC',
    'LIMIT'        => '0, '.$count
);

to

// Fetch list of topics
$query = array(
    'SELECT'    => 't.id, t.poster, t.subject, t.posted, t.first_post_id, t.last_post, t.last_post_id, t.last_poster, t.num_views, t.num_replies, t.closed, t.sticky, t.moved_to, t.forum_id, c.cat_name',
    'FROM'        => 'topics AS t',
    'JOINS'        => array(
        array(
            'LEFT JOIN'         => 'forums as f',
            'ON'            => 't.forum_id=f.id'
        ),
        array(
            'LEFT JOIN'        => 'forum_perms AS fp',
            'ON'            => '(fp.forum_id=t.forum_id AND fp.group_id='.$forum_user['g_id'].')'
        ),
        array(
            'LEFT JOIN'        => 'categories AS c',
            'ON'            => '(f.cat_id=c.id)'
        )
    ),
    'WHERE'        => '(fp.read_forum IS NULL OR fp.read_forum=1) AND t.moved_to IS NULL',
    'ORDER BY'    => 't.last_post DESC',
    'LIMIT'        => '0, '.$count
);

and then change your link at line 152

$forum_page['item_title']['link'] = '<a href="'.forum_link($forum_url['topic'], array($cur_topic['id'], sef_friendly($cur_topic['subject']))).'">'.forum_htmlencode($cur_topic['cat_name']).' | '.forum_htmlencode($cur_topic['subject']).'</a>';

to

$forum_page['item_title']['link'] = forum_htmlencode($cur_topic['cat_name']).' - <a href="'.forum_link($forum_url['topic'], array($cur_topic['id'], sef_friendly($cur_topic['subject']))).'">'.forum_htmlencode($cur_topic['subject']).'</a>';

20

(12 replies, posted in PunBB 1.3 extensions)

wandy wrote:

@Nonante thanks for the reply.

When you say "queries"; are you referring to SQL queries?

No problem wink
Yes, this extension is a bit special because reading the file stops before the statistics, and file exchange (onclickshow_stats.php).
Onclickshow_stats content is almost the same, but it is necessary to separate the files before the statistics do not generate queries before a click.

I agree that it's a little trick but if we can reduce many requests, I am for this smile

Edit: If you want, look at the number of requests you get on your forum page.
On my test forum, with subforums I have this: [Generated in 0.031 seconds, 6 queries executed]

I found a bug => http://punbb.informer.com/forums/topic/ … list-page/

Edit : Ok, the bug has been corrected on this forum, but it is still present in this extension.
I quickly made the change and reupload the wiki at this address : http://punbb.informer.com/wiki/_media/p … groups.zip

22

(0 replies, posted in PunBB 1.3 bug reports)

i've found a bug on the userlist page with extension pun_colored_usergroups.
This bug is present on this forum (eg: http://punbb.informer.com/forums/userli … +criteria).
Error report : <a> misnested or not properly closed.  Cloning <a> in order to preserve the styles applied by it.

<tr class="odd row1">
    <td class="tc4">
        <span class="group_color_7">
            <a href="http://punbb.informer.com/forums/user/39444/">Nonante</span>
        </a>
    </td>
    <td class="tc1">PunBB senior member</td>
    <td class="tc2">30</td>
    <td class="tc3">2010-05-10</td>
</tr>

Just change the hook "ul_results_row_pre_data_output"

<hook id="ul_results_row_pre_data_output"><![CDATA[
                    $forum_page['table_row']['username'] = '<td class="tc'.count($forum_page['table_row']).'"><span class="group_color_'.$user_data['g_id'].'"><a href="'.forum_link($forum_url['user'], $user_data['id']).'">'.forum_htmlencode($user_data['username']).'</span></a></td>';
        ]]></hook>

to

<hook id="ul_results_row_pre_data_output"><![CDATA[
                    $forum_page['table_row']['username'] = '<td class="tc'.count($forum_page['table_row']).'"><span class="group_color_'.$user_data['g_id'].'"><a href="'.forum_link($forum_url['user'], $user_data['id']).'">'.forum_htmlencode($user_data['username']).'</a></span></td>';
        ]]></hook>



Ok, the bug has been corrected on this forum, but it is still present in this extension. The correction is reupload on the wiki at this address: http://punbb.informer.com/wiki/_media/p … groups.zip

Hello,

I'm doing an extension Ajax Chat with SQL, yet it is relatively functional, but I have a question.
I'd like to display in a placeholder, the list of members who are active in the chatbox (for example, the last 5 minutes).
I really want to have that list but i do not know what is the best solution, not to overload the server.


It will certainly be better later.

http://prezup.eu/images/punbb/jquery_chat_test.png

Do you have ideas to offer me?

Regards.

ps: (approximately 54ms latence, 2ms download, total 56ms)

24

(5 replies, posted in PunBB 1.3 extensions)

Aaay, I have traveled much of the wiki, but I had not seen that page \o/
I'll add other links as well, thank you wink

Thank you, I had not seen this bug.