There's the botscout one which is similar

102

(5 replies, posted in PunBB 1.3 bug reports)

hussam wrote:

w3c validator says extern.php doesn't produce valid html transitional code.
Can that be fixed?

Spam aside. The file just parses a <li> list You can can include it in a php page by using

<ul><?php
include('/forum/extern.php'); 
?></ul>
FlashT wrote:

Can I? They can still go to forum.url/user-xxx.htm

Hi FlashT,

Not in my install. Are you sure you have all files uploaded?

Hi FlashT

You can have the userlist hidden from guests

105

(9 replies, posted in PunBB 1.3 troubleshooting)

Admins can not be removed.

106

(4 replies, posted in PunBB 1.3 troubleshooting)

Slavok wrote:

Signature shows up for active users who have more posts.

...

Parpalak wrote:

And who have spent more time on forums.

Is that a plugin?

did you try using the complete path?

ie

<?php
include('http://site.tld/forum/extern.php'); 
?>

108

(4 replies, posted in General discussion)

Slavok wrote:

Could you please post more details on what is not working for you?

Hi Slavoc,

everything is working but not as it used to.

  • I see no forms at the end of the pages, which forces me to click Reply or Quick quote every time.

  • also, the edit button for editing my own posts for typos has disappeared.

109

(4 replies, posted in General discussion)

anyone?

110

(4 replies, posted in General discussion)

what happened to quick posts option?

recently I have to load a new page every time i wish to post. Admittedly I'm not a frequent contributor but I am some times deterred from posting when the form is not staring me in my face.

Also what happened to editing own posts?

chovy wrote:

from the description it sounds like it's a post-registration means of approving posts.
I'm more curious in heading off spam bots when they register.

It also offers a registration approval system. Check out #p133368

Hi chovy,

pun_approval is your friend.

113

(85 replies, posted in Supported extensions)

very nice extension. Only one request: Is there a way where the linked "Show unapproved posts" text will not show if there is nothing to approve?

114

(85 replies, posted in Supported extensions)

Question: Does this plugin work with user groups? That is, can it be used so as to moderate the approval of posts by new members only?

All links do follow.
there is a subforum extension. All extensions can be found here

kierownik wrote:

Your welcome.

Maby you could put the link somewhere on the wiki so other people can easily find it.

http://punbb.informer.com/wiki/punbb13/extensions

Thanks Daniël, Added it to the wiki. The download link is from the neme site as I can keep track of download numbers from there.

Indeed it does. Thanks kierownik! very much appreciated. I corrected my code and the nomenclature on the first post should anyone wants to use it.

The extension below is my first attempt and it would definitely not happen without Slava and kierownik's code.

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE extension SYSTEM "ext-1.0.dtd">

<!--
/**
 * Show real name extension in PunBB forum
 * Special thanks to Slava and Daniël Rokven
 * @author NeMe - http://www.neme.org
 * @license GPL - http://www.gnu.org/copyleft/gpl.html
 */
-->

<extension engine="1.0">
    <id>display_realname</id>
    <title>Display real name</title>
    <version>0.1.5</version>
    <description>Displays real name under username in posts</description>
    <author>NeMe - http://www.neme.org</author>
    <minversion>1</minversion>
    <maxtestedon>1.3.4</maxtestedon>

    <hooks>
        <hook id="vt_row_pre_post_actions_merge">
            <![CDATA[

            // display real name

            if ($cur_post['poster_id'] > 1)
            {
                $forum_page['author_ident']['realname'] = '<li><span>Real name: '.forum_htmlencode($cur_post['realname']).'</span></li>';
            }
            ]]>
        </hook>
        <hook id="vt_qr_get_posts">
            <![CDATA[
                // Add the select to the query
                $query['SELECT'] .= ', u.realname';
            ]]>
        </hook>
</hooks>
</extension>

New Download link

Hi Slavok... Thanks!!! is there a way of that becoming a plugin?

120

(10 replies, posted in PunBB 1.3 extensions)

I'm interested in this too. More here.

I'm interested in this too. (partly). User name is fine where it is but is there a way to display the real name under the user name in the posts?

ie

Slavok
real name: Slava
PunBB Developer
etc...

122

(5 replies, posted in PunBB 1.3 troubleshooting)

Hi Slavok,

That kind of did it. I disabled the main textpattern driven site's htaccess for a few minutes and forums.php loaded just fine:

This is what I have and is causing problems. If anyone can advise me as to what I should change it would be appreciated.

RewriteEngine On
SecFilterSelective "REQUEST_URI" "http://forum.neme.org/post.php" "allow,nolog"

#DirectoryIndex index.php index.html

#Options +FollowSymLinks
#Options -Indexes

#SecFilterEngine Off

<IfModule mod_rewrite.c>
    RewriteEngine On
 RewriteCond %{HTTP_HOST} ^neme\.org$
 RewriteRule (.*) http://www.neme.org/$1 [R=301,L]

    #RewriteBase /relative/web/path/

    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^(.+) - [PT,L]

    RewriteCond %{REQUEST_URI} !=/favicon.ico
    RewriteRule ^(.*) index.php

    RewriteCond %{HTTP:Authorization}  !^$
    RewriteRule .* - [E=REMOTE_USER:%{HTTP:Authorization}]
</IfModule>

#php_value register_globals 0

123

(5 replies, posted in PunBB 1.3 troubleshooting)

can anyone help about this issue?

124

(5 replies, posted in PunBB 1.3 troubleshooting)

Slavok wrote:

Does the page "forum.tld/s.php" exist? What can you see at this page?

Hi Slavok,

Thanks for replying... forum.tld/s.php does not exist as far as I know. I use messy urls for the forum. What I see when clicking /admin/forums.php is the front page of my install.

125

(5 replies, posted in PunBB 1.3 troubleshooting)

This has been an ongoing problem since I upgraded to 1.3. I recently also upgraded to the latest release 1.3.4.

When clicking on Administration>Start>forums it takes me to forum.tld/s.php instead of  forum.tld/forums.php.

I was ignoring this problem but now I want to make a new forum which will only be accessible/readible by a handful of members. I did that by using phpMyAdmin but I'm not sure as to where the  "forum permissions" (found in Start>forums>Edit forum) are storred in the db so as to edit them there.

Any help would be appreciated.