This is kinda like Elbekkos request, just for signatures.

I saw it on another forum and thought it was smart. If a member abuses his/her signature, breaks the rules or other stuff, you should be able to lock his/her signature so it can't be edited.
This isn't something that I need, but it could be useful.

hsl wrote:

cool, than i can finaly have mod tags smile

I got mod tags, and they work perfect. Only a few of my members have figured out that they can use them, but they got banned.

Elbekko tried to help me make this work yesterday, and it worked, but it stopped working when a member edited his/her post after I placed the mod tag there.

28

(3 replies, posted in Feature requests)

Maybe not for you, but I'm not as good as you wink

But I can always try.

I was thinking about making members of my forum advance in rank when they have been registered for a long time, lets say 6 months. I searched here for a mod, but couldn't find it, so I'll request it instead.

Is this possible, and is it hard to do? I can code it into the files, like the rank images, if necessary.

I have read the whole topic, but only found one guy posting about the same as I'm going to do.

There is no submit button when you try to delete multiple messages. I followed the readme 100%. I even tried a clean install, but it' s not there.
Anyone else got this problem/bug?

Take a look at this threads ID big_smile

(13370)

32

(5 replies, posted in Feature requests)

Smartys wrote:

No, it doesn't exist.
I could try and make it though (just not right now tongue)
It should be similar to code/quote

Yea, but only moderators/administrators are allowed to use it.

33

(5 replies, posted in Feature requests)

Smartys wrote:

Sounds like a modification to me! smile

Does it exist? Or more important: can you make it? big_smile

I found out we had the same file (sorry) but I can't see any problems with it.

Just look at what lines you are supposed to find and search for it, then you'll see.

Yes, stage 10 exists if you haven't edited the file yourself first.

Download from the first link, first or second post or something.

It shouldn't be more than..7 or 8 stages.

There was no stage 11 in my readme file.

I just changed what I said in my previous post and it works perfectly.

I fixed it. Just find this:

$pun_root = './';
require $pun_root.'include/common.php';

And replace it with

define('PUN_ROOT', './');
require PUN_ROOT.'include/common.php';

You might want to change some layout settings too.

I found this plugin, but I haven't tested it yet since it was made long ago:

http://punbb.org/forums/forums/viewtopic.php?id=3439

Anyone knows if it still works?

Greetings.

I tried to search but didn't find anything, so I'll make a thread instead.
Do anyone know if it's possible to show "most users online" as some other forums do?

Nevermind.
Thanks to Smarys, I changed the mod so it kinda works.

Greetins.


I'm using the Colored Usergroup mod, but when I hover the links to an user, the text-color is the same as the group color. I have changed the .css file but it still happens. Maybe I changed wrong though.

Any idea how I can solve this?

42

(5 replies, posted in Feature requests)

Maybe I posted in wrong place, sorry.

I want it because my forum is gonna have three languages, and I thought the threadstarted could give the thread a flag which shows what language the thread is in smile

43

(5 replies, posted in Feature requests)

elbekko wrote:

Something like the Topic Icon mod that is available on PunRes?

Yea, just that you'll HAVE to pick one (out of three) flags/icons.

44

(5 replies, posted in Feature requests)

Greetings.

I was thinking about something that makes it possible to give topics a flag before you post it. Like under the Title field, you get (in my case) three flags. You HAVE to pick ONE before posting.

Then, after posting, the flag you picked will display either before or after the title, or instead/with the "New Posts" column.

What do you guys think? Is this possible, and if yes, can anyone make this for me?


Yours, Runar

Tried, and it works.
Thank you smile

By the way; any idea why the cache causes this problem?

I didn't change anything.
One day it worked, the next day it was all blank.

And no, I haven't cleared the cache folder. Shall I just delete all files in the Cache folder?

I got s trange problem (and yes, I have searched).

I can't access any of the forum files. They just turn out white.
But it's nothing wrong with the database, since I got a "backup" server with almost the same files (connecting to the same database) and there it works perfect.

I guess I can add the config.php file:

<?php

$db_type = 'mysql';
$db_host = 'mysql.hosted.servetheworld.net';
$db_name = 'databasename';
$db_username = 'username';
$db_password = 'password';
$db_prefix = '';
$p_connect = false;

$cookie_name = 'punbb_cookie';
$cookie_domain = '';
$cookie_path = '/';
$cookie_secure = 0;
$cookie_seed = 'cd721ac9';

define('PUN', 1);

Anyone know what the problem might be? I don't feel like reinstalling since I got alot of plugins and such.


Yours, Runar

48

(2 replies, posted in PunBB 1.2 troubleshooting)

The problem is fixed now. I removed some of the subforum stuff, and now its fast again.

49

(15 replies, posted in General discussion)

Congratulations with the A big_smile

50

(6 replies, posted in PunBB 1.2 discussion)

I am using images as post indicators, and this is how my css looks like:

/****************************************************************/
/* 10. POST STATUS INDICATORS */
/****************************************************************/

/* 10.1 These are the post status indicators which appear at the left of some tables. 
.inew = new posts, .iredirect = redirect forums, .iclosed = closed topics and
.isticky = sticky topics. By default only .inew is different from the default.*/

div.icon {
    float: left;
    display: block;
    width:13px;
    height:13px;
}

TR.iclosed DIV.icon {
    float: left;
    display: block;
    width:13px;
    height:13px;
    background: url('/images/f_closed.gif');
    border: 0px solid #000;
}

TR.isticky DIV.icon {
    float: left;
    display: block;
    width:14px;
    height:14px;
    background: url('/images/f_sticked.gif');
    border: 0px solid #000;
}


TR.inew DIV.icon {
    float: left;
    display: block;
    width:13px;
    height:13px;
    background: url('/images/f_new.gif');
    border: 0px solid #000;
}

If you use the orginal css, its not images but its some fancy background thing.