Hello, Any ideas about (extended) PM extension for PunBB 1.3 ? Private Message system don't send email after message is delivered to PM box. Or mass PM feature for admins?

2

(16 replies, posted in PunBB 1.3 additions)

Rapidshare - good idea smile

Error

This file is neither allocated to a Premium Account, or a Collector's Account, and can therefore only be downloaded 10 times.

This limit is reached.

To download this file, the uploader either needs to transfer this file into his/her Collector's Account, or upload the file again. The file can later be moved to a Collector's Account. The uploader just needs to click the delete link of the file to get further information.

3

(119 replies, posted in PunBB 1.3 extensions)

Hello daris, ..bugtrack(?) PunBB 1.3.2, develop portal extension (2.4.3) downloaded form url (post 114).. Portal installation crash with error:

An error was encountered
The error occurred on line 108 in /data/a/i/website.com/sub/probe/extensions/portal_by_daris/install.php
Database reported: Unknown column 'location' in 'field list' (Errno: 1054).

4

(1 replies, posted in PunBB 1.3 extensions)

Hi.. I found nice piece of code.. but I think.. it not works with PunBB 1.3. Can somebody try to change for usability in the (punbb 1.3) post.php file?

    // Deny words
    $words = array(
    "pxxn",
    "rxxg",
    "axxl",
    "sxx" );

    foreach($words as $word)
    {
    if ($stristr($message, $words) !== false))
    $errors[] = $lang_post['Forbidden words in post. Access denied'];
    } 

Founded at URL scriptol.com/how-to/insert-adsense-in-punbb-forum.php with instruction how to use - but not works with 1.3. Thank you.

Slavok wrote:

Hi, miller. If you need to remove Page 1, etc. from all forum pages, you should..

((isset($pun_page['page']) && $i == ($num_crumbs - 1)) ? ' ('.$lang_common['Page'].' '.$pun_page['page'].')' : '')

removed. Works, nice Thx

No solution for (Page 1) remove from the page title ??

The first one solved. Removed from the /include/url/Default.php "action=new"

1.3 Beta

Thank you for quick answer but on the line 229 i have no .$url_action. Lines 220 - 240:

//
// Output $feed as HTML (using <li> tags)
//
function output_html($feed)
{
    global $pun_config;

    $num_items = count($feed['items']);
    for ($i = 0; $i < $num_items; ++$i)
    {
        if ($pun_config['o_censoring'] == '1')
            $feed['items'][$i]['title'] = censor_words($feed['items'][$i]['title']);

        if (pun_strlen($feed['items'][$i]['title']) > MAX_SUBJECT_LENGTH)
            $subject_truncated = pun_htmlencode(trim(substr($feed['items'][$i]['title'], 0, (MAX_SUBJECT_LENGTH-5)))).' ?';
        else
            $subject_truncated = pun_htmlencode($feed['items'][$i]['title']);

        echo '<li><a href="'.$feed['items'][$i]['link'].'" title="'.pun_htmlencode($feed['items'][$i]['title']).'">'.$subject_truncated.'</a></li>'."\n";
    }
}

Page 1.. screenshot here:
http://img294.imageshack.us/img294/4316/obrazovkaiu6.png

Hello. I'm using PunnBB and I like it. But.. I would like to solve two little problems.

1. In the page title is allways Page 1, Page 2 etc..
2. URL's generated by RSS (or Atom) extension include /viewtopic.php?id=401&action=new instead of /viewtopic.php?id=401

..how to solve (remove)? Thx.