Hello, Any ideas about (extended) PM extension for PunBB 1.3 ? Private Message system don't send email after message is delivered to PM box. Or mass PM feature for admins?
1 2009-03-29 21:25
Topic: [extension request] PM email alert (7 replies, posted in PunBB 1.3 extensions)
2 2009-03-25 20:37
Re: [Release] Lithium (16 replies, posted in PunBB 1.3 additions)
Rapidshare - good idea
Error
This file is neither allocated to a Premium Account, or a Collector's Account, and can therefore only be downloaded 10 times.
This limit is reached.
To download this file, the uploader either needs to transfer this file into his/her Collector's Account, or upload the file again. The file can later be moved to a Collector's Account. The uploader just needs to click the delete link of the file to get further information.
3 2009-03-11 08:15
Re: [extension release] Portal (119 replies, posted in PunBB 1.3 extensions)
Hello daris, ..bugtrack(?) PunBB 1.3.2, develop portal extension (2.4.3) downloaded form url (post 114).. Portal installation crash with error:
An error was encountered
The error occurred on line 108 in /data/a/i/website.com/sub/probe/extensions/portal_by_daris/install.php
Database reported: Unknown column 'location' in 'field list' (Errno: 1054).
4 2008-08-01 20:36
Topic: Anti Spam Protection (1 replies, posted in PunBB 1.3 extensions)
Hi.. I found nice piece of code.. but I think.. it not works with PunBB 1.3. Can somebody try to change for usability in the (punbb 1.3) post.php file?
// Deny words
$words = array(
"pxxn",
"rxxg",
"axxl",
"sxx" );
foreach($words as $word)
{
if ($stristr($message, $words) !== false))
$errors[] = $lang_post['Forbidden words in post. Access denied'];
}
Founded at URL scriptol.com/how-to/insert-adsense-in-punbb-forum.php with instruction how to use - but not works with 1.3. Thank you.
5 2008-07-19 03:10
Re: RSS Feed url's and page title (9 replies, posted in PunBB 1.3 troubleshooting)
Hi, miller. If you need to remove Page 1, etc. from all forum pages, you should..
((isset($pun_page['page']) && $i == ($num_crumbs - 1)) ? ' ('.$lang_common['Page'].' '.$pun_page['page'].')' : '')
removed. Works, nice Thx
6 2008-06-23 12:52
Re: RSS Feed url's and page title (9 replies, posted in PunBB 1.3 troubleshooting)
No solution for (Page 1) remove from the page title ??
7 2008-06-17 01:21
Re: RSS Feed url's and page title (9 replies, posted in PunBB 1.3 troubleshooting)
The first one solved. Removed from the /include/url/Default.php "action=new"
8 2008-06-15 20:22
Re: RSS Feed url's and page title (9 replies, posted in PunBB 1.3 troubleshooting)
1.3 Beta
9 2008-06-15 16:15
Re: RSS Feed url's and page title (9 replies, posted in PunBB 1.3 troubleshooting)
Thank you for quick answer but on the line 229 i have no .$url_action. Lines 220 - 240:
//
// Output $feed as HTML (using <li> tags)
//
function output_html($feed)
{
global $pun_config;
$num_items = count($feed['items']);
for ($i = 0; $i < $num_items; ++$i)
{
if ($pun_config['o_censoring'] == '1')
$feed['items'][$i]['title'] = censor_words($feed['items'][$i]['title']);
if (pun_strlen($feed['items'][$i]['title']) > MAX_SUBJECT_LENGTH)
$subject_truncated = pun_htmlencode(trim(substr($feed['items'][$i]['title'], 0, (MAX_SUBJECT_LENGTH-5)))).' ?';
else
$subject_truncated = pun_htmlencode($feed['items'][$i]['title']);
echo '<li><a href="'.$feed['items'][$i]['link'].'" title="'.pun_htmlencode($feed['items'][$i]['title']).'">'.$subject_truncated.'</a></li>'."\n";
}
}
Page 1.. screenshot here:
10 2008-06-15 09:23
Topic: RSS Feed url's and page title (9 replies, posted in PunBB 1.3 troubleshooting)
Hello. I'm using PunnBB and I like it. But.. I would like to solve two little problems.
1. In the page title is allways Page 1, Page 2 etc..
2. URL's generated by RSS (or Atom) extension include /viewtopic.php?id=401&action=new instead of /viewtopic.php?id=401
..how to solve (remove)? Thx.