Nice shot. Well done.
27 2010-10-01 20:59
Re: PunBB 1.3.5 (9 replies, posted in PunBB 1.3 discussion)
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.
28 2010-09-17 09:57
Re: Why the <meta name = "description" is above the <title> (1 replies, posted in PunBB 1.3 troubleshooting)
This is not a problem, is it ?
Maybe in header.php
29 2010-09-02 21:08
Re: PunBB Unverified Users Problem (19 replies, posted in Discussions)
Any unregistered user should be auto-deleted after 7 days IMO. In the core.
Giving an option to choose time would be intersting too.
30 2010-08-31 10:10
Re: [extension release] MP3 (35 replies, posted in PunBB 1.3 extensions)
Video extension works with [ url ] tag.
31 2010-08-30 22:03
Re: [PunBB 1.4.3] SEO home title (9 replies, posted in PunBB 1.3 additions)
I kept other pagination cause i think that's useful and avoid duplicate titles.
32 2010-08-25 11:59
Re: [Extension release] URL Checker For Posts And Signatures (43 replies, posted in PunBB 1.3 extensions)
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 ?"...
33 2010-08-25 02:15
Re: [Extension release] URL Checker For Posts And Signatures (43 replies, posted in PunBB 1.3 extensions)
Using simple captcha image founded on this forum...
34 2010-08-25 02:01
Re: [Extension release] URL Checker For Posts And Signatures (43 replies, posted in PunBB 1.3 extensions)
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.
But this extensions could be interesting for human spamming...
35 2010-08-23 20:54
Re: [Solved] No announcement for logged users (8 replies, posted in PunBB 1.3 troubleshooting)
Thanks, now it works !
36 2010-08-02 11:40
Re: [Solved] No announcement for logged users (8 replies, posted in PunBB 1.3 troubleshooting)
I tried again, it really doesn't work...
37 2010-08-02 10:55
Topic: Personal Bbcode (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 2010-08-02 10:44
Re: Custom page (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...
39 2010-07-19 08:47
Re: [Solved] No announcement for logged users (8 replies, posted in PunBB 1.3 troubleshooting)
It doesn't work, there's no announcement anymore with that code.
40 2010-07-05 09:38
Re: Custom page (7 replies, posted in PunBB 1.3 troubleshooting)
Anyone knows how to add TITLE ?
41 2010-07-03 23:02
Re: [extension] Facebook Like button (24 replies, posted in PunBB 1.3 extensions)
I think it should be on top of the post, many people "like" stuff without reading...
42 2010-07-03 09:27
Re: (Page 1) Useless ? (5 replies, posted in Feature requests)
43 2010-07-03 09:25
Topic: [PunBB 1.4.3] SEO home title (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 2010-07-03 08:53
Re: (Page 1) Useless ? (5 replies, posted in Feature requests)
It is. I probably make a hack myself...
45 2010-06-29 20:08
Topic: [Solved] No announcement for logged users (8 replies, posted in PunBB 1.3 troubleshooting)
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 2010-06-29 17:10
Re: Custom page (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 2010-06-29 12:01
Topic: (Page 1) Useless ? (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...
48 2010-06-29 11:49
Topic: RSS : Lastest topics ? (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 2010-06-29 11:31
Re: An error was encountered (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 2010-06-28 21:33
Re: [extension release] MP3 (35 replies, posted in PunBB 1.3 extensions)
Hi,
it seems there's a problem with automatic [ url ] Bbcode...