Visman, This is just to say a big thank you as everything is now working as expected.
2 2020-12-23 15:37
Re: banning (8 replies, posted in PunBB 1.4 troubleshooting)
You are right re hooks. !!!
3 2020-12-23 05:51
Re: banning (8 replies, posted in PunBB 1.4 troubleshooting)
colak wrote:It is enabled...
forum.neme.org?
I look at the registration and login forms. I don't see Fancy stop spam.
Yes, The screenshot is from forum.neme.org. I downloaded the plugin, using this post of yours. Admittedly there is no Fancy stop spam in the settings.
5 2020-12-22 17:09
Topic: banning (8 replies, posted in PunBB 1.4 troubleshooting)
We are getting a hell of a lot of spam registrations, despite the anti-spam plugins. Many of them are from email addresses such as someone@hotaka3310.itsuki54.forcemix.online the sub and sub-subdomains change but also the main domains. Banning the main domain (forcemix.online), does not work and the combination of subdomains and their IPs vary widely. I tried *.forcemix.online but it, perhaps understandably, returns an error:
The email address (e.g. user@example.com) or partial email address domain (e.g. example.com) you entered is invalid.
Does anyone know how I can block registrations from such spammers?
6 2020-12-12 03:42
Re: [Release] Pun Approval (38 replies, posted in Supported extensions)
Thanks so much... I've installed them and will keep an eye.
7 2020-12-11 14:58
Re: [Release] Pun Approval (38 replies, posted in Supported extensions)
I don't know, I haven't tested it.
But I looked at the pun_approval 1.4.3 code and found in it, apart from the XSS vulnerability, also a SQL injection vulnerability.
There are also logical errors when working with guests.
What extensions would you recommend to drastically reduce spam posts?
8 2020-12-11 10:44
Re: [Release] Pun Approval (38 replies, posted in Supported extensions)
Does this work on Visman's 1.4.5?
9 2017-11-01 11:36
Re: [Release] Pun Approval (38 replies, posted in Supported extensions)
A better way is to open manifest.xml and change the maxtestedon to 1.4.4.
10 2017-07-19 14:02
Topic: php 7 (2 replies, posted in Discussions)
Hi all is PunBB compatibel with php 7?
Is there any work done so as to make it so?
11 2016-12-10 13:56
Re: Flooded with spam. Anything I can do? (5 replies, posted in PunBB 1.2 discussion)
colak wrote:Fancy stop spam works wonders.
Only 1.3.x/1.4.x versions.
Time to update!
12 2016-12-07 06:23
Re: Flooded with spam. Anything I can do? (5 replies, posted in PunBB 1.2 discussion)
Fancy stop spam works wonders.
13 2016-08-28 04:45
Re: Assistant to translate into other languages online (12 replies, posted in PunBB 1.4 additions)
is free
colak, Is Free Trial!
How can it help?
They actually do give it for free for open source projects. The idea is for punBB to ask for it, add the strings of both the forum software and the plugins and then ask the community to contribute in the translations.
14 2016-08-27 14:50
Re: Assistant to translate into other languages online (12 replies, posted in PunBB 1.4 additions)
15 2016-07-31 04:59
Re: how do i sticky a thread (4 replies, posted in Discussions)
under the thread, on the right, there is a "Stick topic" link.
16 2016-03-25 07:26
Re: How to let users change their username? (4 replies, posted in Feature requests)
I don't think usernames should be allowed to change that easily. It's confusing for members of large forum communities.
17 2016-02-25 08:04
Re: Help please all punbb users enter (2 replies, posted in General discussion)
I change forum url to fancy url in admin settings now i can it even open any forum or even login to admin mode...Solution is needed. Please help.
Do you have the .htaccess file in your server?
18 2016-02-18 17:51
Re: Om Thanks Extension (18 replies, posted in Feature requests)
Something else I am trying to do is create a 'new post' feed for a sidebar in my forums. I've looked at the Punbb guide on how to do this but it is kind of vague in its interpretation.
Is there a simple way to do this?
Hi Paul,
You could add
<!-- forum_include "http://yourforum.tld/extern-1.php" -->
in yourforum.tld/include/template/maintenance.tpl
19 2016-02-14 17:40
Re: Fancy Stop SPAM (115 replies, posted in Supported extensions)
I just thought I should add... Is there a strong reason this should not become part of the puBB vanilla code?
20 2016-02-13 07:00
Re: Fancy Stop SPAM (115 replies, posted in Supported extensions)
It would be good to specify the minimum specs for this plugin and punBB
I could not make either work on
PHP version: 5.3.29
but everything works just fine on
PHP version: 5.4.45
21 2016-02-08 07:53
Re: Email all users (6 replies, posted in Discussions)
I missed this one. Does it also work on punBB 1.4.4?
22 2016-02-01 18:11
Topic: add html tags on BBCode (1 replies, posted in Supported extensions)
I am trying to add a couple of html tags to the BBCode. Based on previous versions of punBB I created the manifest.xml file below but the tags do not seem to be parsing and they still appear in their square brackets in the posts. Does anyone have an idea as to what I am doing wrong?
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE extension SYSTEM "ext-1.0.dtd">
<!--
/**
* BBCode [del][/del] extension for PunBB forum
* A new BBcode tag to del text.
*
* @author NeMe - http://www.neme.org
* @license GPL - http://www.gnu.org/copyleft/gpl.html
* @package pun_bbcode_del
*/
-->
<extension engine="1.0">
<id>pun_bbcode_del</id>
<title>BBCode [del][/del]</title>
<version>0.1</version>
<description>BBcode tags to delete out text, insert text and add horizontal rules.</description>
<author>NeMe - http://www.neme.org</author>
<minversion>1.3</minversion>
<maxtestedon>2</maxtestedon>
<hooks>
<hook id="ps_start"><![CDATA[
// tag handling function
function handle_del_tag($inputText) {
return '<del>'.$inputText.'</del>';
}
]]></hook>
<hook id="ps_preparse_tags_start"><![CDATA[
// add our tag to the list
$tags[] = 'del';
$tags_opened[] = 'del';
$tags_closed[] = 'del';
$tags_inline[] = 'del';
$tags_trim[] = 'del';
]]></hook>
<hook id="ps_do_bbcode_replace">
<![CDATA[
$pattern[] = '#\[hr /\]#i';
$replace[] = '</p><hr/><p>';
// add pattern to catch [del]blahblah[/del]
$pattern[] = '#\[del\](.*?)\[/del\]#se';
$replace[] = 'handle_del_tag(\'$1\')';
]]></hook>
</hooks>
</extension>
ps. This is the error I get: Warning: preg_replace_callback() [function.preg-replace-callback]: Modifier /e cannot be used with replacement callback in /path/to/my/forum/include/parser.php on line 811
23 2016-01-25 14:43
Re: Integrate PunBB forum into WordPress (9 replies, posted in General discussion)
In textpattern we use
<?php echo file_get_contents('http://url-of-forum.tld/extern-1.php'); ?>
to parse links to the latest posts in the forum.
24 2016-01-23 11:35
Re: Disable username autofill upon registration (2 replies, posted in PunBB 1.4 troubleshooting)
Autofill is in your browser settings
25 2016-01-11 20:02
Re: Fancy Stop SPAM (115 replies, posted in Supported extensions)
Hi there
Not sure if this is still being supported but I recently upgraded to 1.4.2 and now I am getting inundated with spam. I tried installing this - no problem. However when I click the antispam in the settings I get that the page cannot be be found. I checked the path and admin.php is present but yet I still ge this 404 error.
What am I doing wrong?
Thanks a lot
Olly
+1