Notch wrote:

when you apply any patch that Fantastico puts out for phpBB

phpBB bring out new updates? Goodluck on that one.

202

(21 replies, posted in PunBB 1.2 show off)

nicholas89 wrote:

thats a nice site, i also have a rs site, kinda new one www.runescapehut.com

you were the creator of reinet.co.uk right?

Well done you bumped up a topic that is over a year old.

Yes reinet.co.uk was mine too.

203

(19 replies, posted in PunBB 1.2 show off)

bump damnit tongue

204

(9 replies, posted in PunBB 1.2 troubleshooting)

druidk wrote:

OK, got You.

But maybe it's worth to right a kind of warning while banning, to avoid such situations as mine smile.

Or just don't ban yourself tongue

205

(2 replies, posted in PunBB 1.2 troubleshooting)

There is, check admin_groups.php. You can set a time limit between posts for different groups.

Not sure if its what your looking for, but im sure it could be changed slightly to suit your needs.

http://www.punres.org/viewtopic.php?id=292

Im pretty sure there is a mod for global topics, or something similar to this.

208

(6 replies, posted in PunBB 1.2 discussion)

Is PunBBig still alive? I noticed it hasn't been updated in a long time, and my submission and posts there have not been looked at (in over 2 weeks).

It also seems to have alot of sites still in its list, and still with high growth rates etc... that no longer exist. How can a non existant site still be parsed and give a growth rate?

If your grading from 1.1.* to 1.2.* you will need to scrap your modifications and start from a proper install pretty much. There are way to many changes to patch it.

Only admins can change usernames.

Give them different names.

212

(2 replies, posted in Programming)

trigun0x2 wrote:

I already made a few!

Samples of what you have made already? Also making an MMORPG is not a small task, i think chances of having had time to have made more than one in the past, and wanting to make more are very unlikely...

213

(23 replies, posted in General discussion)

http://www.stealingyour.info/misc/photos/magaluf/Us.jpg
Photo of me and my girl from our holiday in spain (sorry its abit dark, i suck at photography tongue)

214

(2 replies, posted in PunBB 1.2 discussion)

In parser.php find

$text = preg_replace('#([\s\(\)])(https?|ftp|news){1}://([\w\-]+\.([\w\-]+\.)*[\w]+(:[0-9]+)?(/[^"\s\(\)<\[]*)?)#ie', '\'$1\'.handle_url_tag(\'$2://$3\')', $text);

and replace it with

$text = preg_replace('#([\s\(\)])(https?|ftp|news|ed2k){1}://([\w\-]+\.([\w\-]+\.)*[\w]+(:[0-9]+)?(/[^"\s\(\)<\[]*)?)#ie', '\'$1\'.handle_url_tag(\'$2://$3\')', $text);

215

(10 replies, posted in General discussion)

I didn't say anything about them being special? I just called it an RS community because its for the game RS, just like you would call a community for Warcraft a Warcraft community.

chmod the cache folder to 777.

Enter them then?

wtf? Follow the instructions on the install script, it isn't hard? :s

219

(8 replies, posted in PunBB 1.2 troubleshooting)

$pun_user['username']

The array is populated with the details of the user, taken from the user, groups and online tables (i think).

you could simply add a print_r($pun_user); somewhere to print out everything it contains if you need to know exactly.

220

(10 replies, posted in General discussion)

pogenwurst wrote:
Reines wrote:

I really don't see the point in more "rs" communities, they are always the corrupt and run by people simply looking for power.

Sorry to stray off topic, but what exactly is an "rs" community?

www.runescape.com is an mmorpg, mainly played at 12-16 year olds. The communities around tend to be based on version 1 of the game, which is almost dead and consists of people trying prove they are better than others then stealing their items because the more expensive items you have the better you are.

(I used to own an rs community but got fed up and left it)

221

(8 replies, posted in PunBB 1.2 troubleshooting)

you can change

if ($pun_user['g_read_board'] == '0')
    message($lang_common['No view']);

to

if ($pun_user['is_guest'] === true)
    message($lang_common['No view']);

then no guests can view it.

222

(10 replies, posted in General discussion)

I really don't see the point in more "rs" communities, they are always the corrupt and run by people simply looking for power.

Anyway, what do you need help with? PunBB related matters, or making an actual site, or what?

223

(8 replies, posted in PunBB 1.2 troubleshooting)

The simple skeleton of a punbb page looks like:

<?php

define('PUN_ROOT', './');

require PUN_ROOT.'include/common.php';

if ($pun_user['g_read_board'] == '0')
    message($lang_common['No view']);

// your page code goes here

$db->close();

?>

This will check they are logged in (assuming your boards require guests to be logged in), and only output your code you add (eg. no punbb headers or footer etc).

If you wish a punbb intergrated page with punbb styles and headers etc you can use:

<?php

define('PUN_ROOT', './');

require PUN_ROOT.'include/common.php';

if ($pun_user['g_read_board'] == '0')
    message($lang_common['No view']);

$page_title = pun_htmlspecialchars($pun_config['o_board_title'].' / My Intergrated Page');

require PUN_ROOT.'header.php';

// your page code goes here

require PUN_ROOT.'footer.php';

?>

224

(13 replies, posted in PunBB 1.2 bug reports)

Is that a clean install of admin_options.php, or have you edited it?

225

(13 replies, posted in PunBB 1.2 bug reports)

Odis wrote:

I like Reines idea. Can someone elaborate on regex more? and does anyone know if it works with punbb?

Taking a look at the censor function, no punbb doesn't support regex censors just now. I assume this is because if it did then all censors would need to be regex, and alot of people have trouble with it. If you wish to change it so punbb will allow you to add regex censors (keep in mind this would require all your censors to be regex compatable) then you can simply open include/functions.php and find

            $search_for[$i] = '/\b('.str_replace('\*', '\w*?', preg_quote($search_for[$i], '/')).')\b/i';

and replace with

            $search_for[$i] = '/\b('.str_replace('\*', '\w*?', $search_for[$i]).')\b/i';

If you need help with using regex's, there is a good tutorial here: http://weblogtoolscollection.com/regex/regex.php