26

(9 replies, posted in PunBB 1.3 additions)

Nice shot. Well done.

27

(9 replies, posted in PunBB 1.3 discussion)

KeyDog wrote:

Extensions info in footer
=================================================
old (in footer)
Currently installed 'x official extension'. Copyright 2003-2009 PunBB

Useless, users don't care about that. It has to be deleted. It could save a little SQL database.  cool

This is not a problem, is it ?

Maybe in header.php

29

(19 replies, posted in Discussions)

KeyDog wrote:

Any unregistered user should be auto-deleted after 7 days IMO. In the core.

Giving an option to choose time would be intersting too.  smile

30

(35 replies, posted in PunBB 1.3 extensions)

Video extension works with [ url ] tag.  big_smile

31

(9 replies, posted in PunBB 1.3 additions)

I kept other pagination cause i think that's useful and avoid duplicate titles. smile

The problem is the captcha himself, too easy to decode. Look at the PhpBB one, it's more complex and really works.
There's another captcha solution using questions edited by the admin like "What is the first letter of PunBB ?"...

Using simple captcha image founded on this forum...

Spammers use thousand of domains, fighting against them this way is loosing time I think... The real problem is that forms are not secure without captcha, there's many solution for that... You may look at Akismet or Bad Behavior which are better solutions.  neutral

But this extensions could be interesting for human spamming...  big_smile

Thanks, now it works !  big_smile

I tried again, it really doesn't work...  neutral

37

(0 replies, posted in Feature requests)

Hi !
Many people using plugin just for adding new Bbcodes like [video] or [mp3], can't we add a PunBB feature that add new Bbcode. I think I saw that in PhpBB but I'm not sure.
What do you think about?

38

(7 replies, posted in PunBB 1.3 troubleshooting)

I was talking about <title> in <head>.
I also tried to execute some PHP script and it doesn't work, I don't know why...

It doesn't work, there's no announcement anymore with that code.  smile

40

(7 replies, posted in PunBB 1.3 troubleshooting)

Anyone knows how to add TITLE ?

41

(24 replies, posted in PunBB 1.3 extensions)

I think it should be on top of the post, many people "like" stuff without reading...   lol  lol  lol

42

(5 replies, posted in Feature requests)

Here : http://punbb.informer.com/forums/topic/ … fications/ smile

43

(9 replies, posted in PunBB 1.3 additions)

/!\ Only this post is up to date /!\

Hi all,
I'm actually optimizing my PunBB, I'll use this post to share with you what I change.

First thing, the TITLE...
I made this to use board description on home page.

./header.php (Line ~87)

After

// Should we output feed links?
if (FORUM_PAGE == 'index')
{

Add

$forum_head['title'] = '<title>'.htmlentities($forum_config['o_board_desc']).'</title>';
$forum_head['meta'] = '<meta name="description" content="TYPE YOUR BOARD DESCRIPTION HERE">';

44

(5 replies, posted in Feature requests)

It is. I probably make a hack myself...

Hi all!
I use "announcement" to display ads but I would to find something to hide it for logged users.
Is there a way to hide "announcement" for those?
Thanks!

46

(7 replies, posted in PunBB 1.3 troubleshooting)

I started with that :

<?php
if (!defined('FORUM_ROOT'))
define('FORUM_ROOT', './');
require FORUM_ROOT.'include/common.php';

require FORUM_ROOT.'header.php';
// START SUBST - <!-- forum_main -->
ob_start();
?>
    
MY CONTENT
    
<?php
$tpl_temp = forum_trim(ob_get_contents());
$tpl_main = str_replace('<!-- forum_main -->', $tpl_temp, $tpl_main);
ob_end_clean();
// END SUBST - <!-- forum_main -->
require FORUM_ROOT.'footer.php';
?>

The probleme is that i can't define page title and there's no stats...

47

(5 replies, posted in Feature requests)

Hi all,
The first topic page don't need to have (Page 1) in TITLE, it's interesting for other pages only I think because it appears in search engine, that's not really useful for users...  smile

48

(0 replies, posted in PunBB 1.3 troubleshooting)

Hi,
i was using extern.php?action=new to survey new topics on my forum, the 1.3 feed only show lastest posts, how could I get it ?
Thanks.

49

(3 replies, posted in PunBB 1.3 troubleshooting)

In fact, that's old URLs, people comming from search engine see this error so i loose visits. I edited functions.php to redirect users to home page...

50

(35 replies, posted in PunBB 1.3 extensions)

Hi,
it seems there's a problem with automatic [ url ] Bbcode...  sad