Thanks,
took me a minute to find
» Administration » Users » Groups » Existing groups » Edit this group
but it works fast and clean...
1,001 2010-01-21 11:25
Re: Colored usergroups (pun_colored_usergroups) (48 replies, posted in Supported extensions)
1,002 2010-01-20 09:13
Re: Which import file formats does CS4 and CS3 support? (1 replies, posted in General discussion)
This is an interesting post.
Chinese IP.
Bottom link to moyea (commercial)...
As it has nothing to do with pun and is from a first time NEW poster I class it as spam.
But I'm going to leave it for the moment to show the sophistication of spamers.....
1,003 2010-01-20 09:09
Re: Pun Approval update (6 replies, posted in Feature requests)
Please, add your other wishes to the pun_approval wiki page. Just curious, how can information about OS or browser influence your decision about user registration?
You're right, OS and browser wouldn't influence me... Just IP, ISP, country.
(I do however wonder if the spam registrations most often come from certain OS/browser environments. But it does not have much value in pun approval)
1,004 2010-01-20 00:25
Re: pun_approval (85 replies, posted in Supported extensions)
Very cool.
Just few things;
1. When a user registers he doesn't receive any notification that his request to join the board is being processed. Maybe it would be good to have him redirected to a page/notice that informs him of the verification process.
2. I as admin don't know which country/IP/ISP the user is signing on from. It would be useful to have that info next to registration date in 'unapproved posts' I believe.
3. I was wondering whether the activation of extension wouldn't be better under 'registration' tab in admin area instead of bottom of features?
Just some ideas.
1,005 2010-01-19 09:47
Re: Pun Approval update (6 replies, posted in Feature requests)
Slavok:
Can you integrate something like this info on OS, country, IP into the approval request?
this code has some german expressions (from here)
function get_info(){
$ip = getenv("REMOTE_ADDR");
$data = $_SERVER["HTTP_USER_AGENT"];
$ip_e = gethostbyaddr($_SERVER['REMOTE_ADDR']);
if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])){
$sprache = $_SERVER['HTTP_ACCEPT_LANGUAGE'];
}
else{
$sprache = "----";
}
if (isset($_SERVER['HTTP_REFERER'])){
$referer = $_SERVER['HTTP_REFERER'];
}
else{
$referer = "----";
}
/* Welcher Browser */
if (strpos($data, 'Firefox') !== false) {$browser = "Firefox";}
elseif (strpos($data, 'Opera') !== false) {$browser = "Opera";}
elseif (strpos($data, 'Safari') !== false) {$browser = "Safari";}
elseif (strpos($data, 'IE') !== false) {$browser = "Internet Explorer";}
elseif (strpos($data, 'Konqueror') !== false) {$browser = "Konqueror";}
elseif (strpos($data, 'SeaMonkey') !== false) {$browser = "SeaMonkey";}
elseif (strpos($data, 'K-Meleon') !== false) {$browser = "K-Meleon";}
elseif (strpos($data, 'Netscape') !== false) {$browser = "Netscape";}
else {$browser = "----";}
/* Welches OS */
if (strpos($data, 'Windows NT 5.1') !== false) {$os = "Windows XP";}
elseif (strpos($data, 'Windows NT 5.0') !== false) {$os = "Windows 2000";}
elseif (strpos($data, 'Windows NT 5.2') !== false) {$os = "Windows 2003";}
elseif (strpos($data, 'Windows ME') !== false) {$os = "Windows ME";}
elseif (strpos($data, 'Windows NT 6.') !== false) {$os = "Windows Vista";}
elseif (strpos($data, 'Macintosh') !== false) {$os = "Apple Mac";}
elseif (strpos($data, 'Linux') !== false) {$os = "Linux";}
else {$os = "----";}
/* Welches Land */
if (strpos($ip_e, '.ch') !== false) {$land = "Schweiz";}
elseif (strpos($ip_e, '.fr') !== false) {$land = "Frankreich";}
elseif (strpos($ip_e, '.de') !== false) {$land = "Deutschland";}
elseif (strpos($ip_e, '.at') !== false) {$land = "Österreich";}
elseif (strpos($ip_e, '.it') !== false) {$land = "Italien";}
elseif (strpos($ip_e, '.au') !== false) {$land = "Autsralien";}
elseif (strpos($ip_e, '.be') !== false) {$land = "Belgien";}
elseif (strpos($ip_e, '.ca') !== false) {$land = "Kanada";}
elseif (strpos($ip_e, '.dk') !== false) {$land = "Dänemark";}
elseif (strpos($ip_e, '.eg') !== false) {$land = "Ägypten";}
elseif (strpos($ip_e, '.gr') !== false) {$land = "Griechenland";}
elseif (strpos($ip_e, '.hr') !== false) {$land = "Kroatien";}
elseif (strpos($ip_e, '.hu') !== false) {$land = "Ungarn";}
elseif (strpos($ip_e, '.ir') !== false) {$land = "Iran";}
elseif (strpos($ip_e, '.jp') !== false) {$land = "Japan";}
elseif (strpos($ip_e, '.de') !== false) {$land = "Deutschland";}
elseif (strpos($ip_e, '.hk') !== false) {$land = "Honkong";}
elseif (strpos($ip_e, '.li') !== false) {$land = "Liechtenstein";}
elseif (strpos($ip_e, '.lu') !== false) {$land = "Luxemburg";}
elseif (strpos($ip_e, '.nz') !== false) {$land = "Neuseeland";}
elseif (strpos($ip_e, '.pt') !== false) {$land = "Portugal";}
elseif (strpos($ip_e, '.sa') !== false) {$land = "Saudi Arabien";}
elseif (strpos($ip_e, '.se') !== false) {$land = "Schweden";}
elseif (strpos($ip_e, '.sg') !== false) {$land = "Singapur";}
elseif (strpos($ip_e, '.th') !== false) {$land = "Thailand";}
elseif (strpos($ip_e, '.tn') !== false) {$land = "Tunesien";}
elseif (strpos($ip_e, '.tr') !== false) {$land = "Türkei";}
elseif (strpos($ip_e, '.us') !== false) {$land = "USA";}
elseif (strpos($ip_e, '.uk') !== false) {$land = "England";}
else {$land = "----";}
$info = array();
$info['ip'] = $ip;
$info['os'] = $os;
$info['browser'] = $browser;
$info['land'] = $land;
$info['sprache'] = $sprache;
$info['host'] = $ip_e;
$info['referer'] = $referer;
return $info;
}
sprache = language
land = country
welches OS = which OS
welcher browser = which browser
1,006 2010-01-18 06:58
Re: Pun Approval update (6 replies, posted in Feature requests)
how many registrations a day are you getting?
from which countries?
post spam or spam signatures? or both
1,007 2010-01-17 18:36
Re: HTML Posting possible? (1 replies, posted in Discussions)
this should help you
http://punbb.informer.com/forums/topic/ … otag-v020/
1,008 2010-01-17 18:21
Re: author only view? (4 replies, posted in PunBB 1.3 additions)
I haven't heard of anyone having implemented that feature.
I understand and see usefulnes though...
You want a kind of "ticket" system really - not a forum.... they exist open source aswell...
1,009 2010-01-15 23:52
Re: Removing 'Powered by' in footer (18 replies, posted in General discussion)
This is just my personal opinion;
but if you help this project in return (say with translations, helpful comments in this forum etc) , it's worth much more to the community...
You have my (unofficial) blessing
1,010 2010-01-15 19:46
Re: [Release] User Activity Monitoring (9 replies, posted in PunBB 1.3 extensions)
who does = user activity monitoring (with url)
maybe change your topic name KANekT - it's a cool thing to have as admin
thx!
1,011 2010-01-15 18:07
Re: [Release] Topic description (32 replies, posted in PunBB 1.3 extensions)
must be that board then that is problem (running with 1.3.4 experimental by pun)
just got your ext working on another test board with version 0.3.0 [edit: anyone know why the "by KeyDog" is on the very left in that last post - it's ugly..., where to change?]
so we can say that it works on 1.3.4
thanks again for your help
1,012 2010-01-15 18:00
Re: Attachments (pun_attachment) (118 replies, posted in Supported extensions)
An extension that "uses the GD 2 image library, which now comes packaged with most PHP builds, to dynamically generate image thumbnails on the fly. It works with GIFs, JPGs and PNGs, produces much smaller thumbnail file sizes (saving bandwidth), maintains the proper ratio of your pics, and does not create any extra files on your server." would be cool
1,013 2010-01-15 17:45
Re: Removing 'Powered by' in footer (18 replies, posted in General discussion)
find this line in footer.php and change to your liking...
<p id="copyright"><?php echo sprintf($lang_common['Powered by'],
1,014 2010-01-15 17:13
Re: [Release] Topic description (32 replies, posted in PunBB 1.3 extensions)
It's on, changed it in config.php
1,015 2010-01-15 15:17
Re: IP to Country (26 replies, posted in PunBB 1.3 extensions)
Grant;
this would be very useful for admins judging whether post is from a trustworthy source/person
if it showed the flag
a. in the userlist next to users name (when sorting for example)
b. next to a persons post (under 'posts' or 'registered')
If you have a french or german forum and get loads of US, chinese or pakistani flags next to posts or users ip - somethings fishy
1,016 2010-01-15 15:04
Re: [Release] Topic description (32 replies, posted in PunBB 1.3 extensions)
http://punbb-exp.keydogbb.info/viewforum.php?id=1
That one doesn't work.
Neither did another I tried.
The E board has worked since this post
http://punbb.informer.com/forums/post/133265/#p133265
1,017 2010-01-15 13:52
Re: [Release] Topic description (32 replies, posted in PunBB 1.3 extensions)
It just doesn't show the topic description. It looks like any other normal topic (without description)
I can enter the topic description but it doesn't show afterwards.
No errors are reported anywhere.
1,018 2010-01-15 12:52
Re: [Release] Topic description (32 replies, posted in PunBB 1.3 extensions)
Didn't help....
1,019 2010-01-15 11:13
Re: [Release] Topic description (32 replies, posted in PunBB 1.3 extensions)
Should I check my other ext installed to see if they're using any of the below hooks ?
Or is the description data somehow not being put in the db?
<version>0.2.0</version>
<description>Topic Description</description>
1 <hook id="po_pre_post_contents" priority = "2">
2 <hook id="po_end_validation, mr_confirm_split_posts_form_submitted"><![CDATA[
3 <hook id="po_pre_add_topic"><![CDATA[
4 <hook id="fn_add_topic_qr_add_topic"><![CDATA[
5 <hook id="ed_qr_get_post_info"><![CDATA[
6 <hook id="ed_pre_message_box" priority = "2"><![CDATA[
7 <hook id="ed_qr_update_subject"><![CDATA[
8 <hook id="vf_qr_get_topics"><![CDATA[
1,020 2010-01-15 11:07
Re: Karma (pun_karma) (23 replies, posted in Supported extensions)
Any idea why I'd get this error in Version v1.1.1.
Notice: Undefined index: post_karma in /home/.../viewtopic.php(325) : eval()'d code on line 10
Notice: Undefined index: user_karma in /home/.../viewtopic.php(486) : eval()'d code on line 10
other extensions installed
PunBB Repository Version v1.2.3.
guest_read_permissions Version v1.0.
Changes Copyright Footer Version v1.0.
1,021 2010-01-14 19:11
Re: Get version (1 replies, posted in Discussions)
Hopefully not. If there is, someone please tell us how to stop bots or anyone else retrieving it!
1,022 2010-01-14 12:07
Re: [Release] Topic description (32 replies, posted in PunBB 1.3 extensions)
Thx got it to work in a 1.3.4 here aswell now
But in another 1.3.4 board (but with Cobalt Style):
Notice: Undefined index: topic_desc in /home/[...]/viewforum.php(315) : eval()'d code on line 10
It doesn't work in 1.3.2 according to my tests... just FYI.
1,023 2010-01-14 07:32
Re: Last time Online - last_visit (4 replies, posted in Feature requests)
in the phpbb forum
If you can't find it for punbb - please edit your post, i.e. delete it (as a bit useless ).
1,024 2010-01-14 00:39
Re: Forum messages marked as spam (3 replies, posted in PunBB 1.3 troubleshooting)
The problem isn't your forum (I believe).
It's your host (based on the above, i.e. missing certificates, blacklisted).
Generally speaking though: use latest version, latest hotfixes...
1,025 2010-01-13 23:44
Re: Forum messages marked as spam (3 replies, posted in PunBB 1.3 troubleshooting)
Check which IP is sending your forum mail
then check it here
http://www.projecthoneypot.org
and
http://www.stopforumspam.com/search?q=
I received the PunBB.org mail [reply to topic] to my spam folder today.
Maybe more information, specific to user has to be added so that spam software doesn't filter it into spam folder....
Edit: Based on your IP info above checked though
http://www.ip2location.com/demo.aspx
it comes up with
ISP: COLOSTORE.COM
Domain: MAILMANAGER.COM.AU
maybe your host got blacklisted because ofactivity from other domains etc that's been happening
BTW! Your IP (not one above) comes up as
detected behavior from the IP address consistent with that of a mail server and dictionary attacker. (check here: http://www.projecthoneypot.org)