Search found 10 matches

by Simon Dechain
Sun Sep 30, 2012 11:32 am
Forum: [3.0.x] MOD Writers Discussion
Topic: Displaying posts and topics on external pages
Replies: 1
Views: 919

Re: Displaying posts and topics on external pages

You start a new unsorted list for every element in the block variable. Try putting the ul-Tag outside the block, that should put every post into the same list.

greetings
Simon
by Simon Dechain
Sun Sep 30, 2012 10:29 am
Forum: [3.0.x] MOD Requests
Topic: Minimum Age Mod
Replies: 6
Views: 888

Re: Minimum Age Mod

I have just run the mod on a 3.0.11 board with automod installed (I love my QuickInstall testing ground :D). It installs just fine, except for a single file. To cure that: 1) open install.xml 2) find: $age = (int) ($now['year'] - $bday_year - $diff);</find> 3) replace with: $age = max(0, (int) ($now...
by Simon Dechain
Sat Sep 29, 2012 8:11 am
Forum: [3.0.x] MOD Requests
Topic: Question about MOD
Replies: 9
Views: 422

Re: Question about MOD

Sorry for not repplying, it was a busy week for me. I didn't meant to be rude, when I asked about the basic details. The problem is you know the reason, but if you want me (or anybody else) to write a mod, we need to understand it too. But back to the custom profile field. You just need to go to the...
by Simon Dechain
Tue Sep 25, 2012 9:03 pm
Forum: [3.0.x] MOD Requests
Topic: [SPLIT] Banning for writing in specific forum - ANTISPAM
Replies: 9
Views: 461

Re: [SPLIT] Banning for writing in specific forum - ANTISPAM

I don't know of any automatic mods, but you can use something like the https://www.phpbb.com/customise/db/mod/one_click_ban/ to get rid of them with a single (okay, two) mouse klicks. I use this mod (it's also included in the AntiSpam mod) and I wouldn't want to miss it as my ban hammer against spam...
by Simon Dechain
Mon Sep 24, 2012 5:00 pm
Forum: [3.0.x] MOD Requests
Topic: Question about MOD
Replies: 9
Views: 422

Re: Question about MOD

Something occured to me while thinking about your mod request. Are you really looking for a mod which detects multiple persons using one account? This does not really make sense to me, since you know who it is by the account, so why does he would want to use a proxy (it's like doning a mask with you...
by Simon Dechain
Sat Sep 22, 2012 10:41 pm
Forum: [3.0.x] MOD Requests
Topic: Question about MOD
Replies: 9
Views: 422

Re: Question about MOD

Hi, You could try to combine multiple methods. The first (and propably the most powerfull) could be to resolve the IP-Address of the poster into the hostname and store it along with the ip in the posting table. Then you just have to look at the names (even with a dynamic IP the provider should stay ...
by Simon Dechain
Tue Sep 18, 2012 4:58 pm
Forum: [3.0.x] MOD Writers Discussion
Topic: Session from phpBB3 is not working
Replies: 20
Views: 680

Re: Session from phpBB3 is not working

okay, that's surprising. Have you deleted the cookies of your browser? Does your login works if you delete the session id from your url, or does it disappear while browsing the forum? If it does, then your cookies are okay (and I was wrong). greetings Simon edit: I have just run a lokal test with a ...
by Simon Dechain
Tue Sep 18, 2012 3:51 pm
Forum: [3.0.x] MOD Writers Discussion
Topic: Session from phpBB3 is not working
Replies: 20
Views: 680

Re: Session from phpBB3 is not working

Then your cookie settings should look like: Cookie Domain: forum.xxxx.xxxx.pl Path: / see Fixing incorrect cookie settings . It's described there. If you change these settings, delete all cookies of your board/domain from your browser afterwards to purge incorrectly saved ones. On a sidemark, I woul...
by Simon Dechain
Mon Sep 17, 2012 8:33 pm
Forum: [3.0.x] MODs in Development
Topic: [BETA] Account Links
Replies: 349
Views: 92790

Re: [BETA] Account Links

Hi, I had considered, how to implement the feature to change the poster at posting time. There are two approaches to this problem, as I could deduct. 1) Change the session of the user to the posting account as soon as possible in the posting.php and let the code do it's work: plus: + rights of posti...
by Simon Dechain
Sun Sep 16, 2012 5:04 pm
Forum: [3.0.x] MOD Writers Discussion
Topic: Please assist.....
Replies: 10
Views: 524

Re: Please assist.....

Hi, The problem is, that you don't apply any session_id (so it's isn't a wounder, if it gets lost). PhpBB has just the function you need, named append_sid ;). Your code could look like this: $link = "calendar_view.php?month={$month_array['month']}&day={$week[$i]}&year={$month_array['yea...

Go to advanced search