Search found 4824 matches

by Ramon Fincken
Tue Nov 29, 2016 9:27 am
Forum: [3.1.x] Support Forum
Topic: Varnish on PHPbb 3.1.x board running into cookie problems
Replies: 13
Views: 1802

Re: Varnish on PHPbb 3.1.x board running into cookie problems

roger that, thats what I ended up with too.

Yet .. if we are able to cache HTML for guests too that would be great (and save a lot of webserver load)
by Ramon Fincken
Mon Nov 28, 2016 11:49 am
Forum: [3.1.x] Support Forum
Topic: Varnish on PHPbb 3.1.x board running into cookie problems
Replies: 13
Views: 1802

Re: Varnish on PHPbb 3.1.x board running into cookie problems

I am using varnish as well , but only enabled it for static files
/assets
/styles
/images
etc..
excluding any /adm paths

unfortunately whitelisting allow cookie set did not work here :(
by Ramon Fincken
Sat May 30, 2009 11:18 am
Forum: [3.0.x] Support Forum
Topic: Users age in memberlist?
Replies: 1
Views: 762

Re: Users age in memberlist?

I cannot just hand you over the code, but this is the part you'll need at the PHP/server side to calculate the users' age Code found in memberlist.php (viewprofile) is $age = ''; if ($config['allow_birthdays'] && $data['user_birthday']) { list($bday_day, $bday_month, $bday_year) = array_map(...
by Ramon Fincken
Fri May 15, 2009 8:50 pm
Forum: [3.0.x] MOD Requests
Topic: List all users mod
Replies: 4
Views: 3562

Re: List all users mod

True, and for the ones who want to see the actual function ( a bit adapted ... ) function latest_signups($limit = 8) { global $db; $sql = 'SELECT u.user_id AS id, u.username_clean AS username FROM '.USERS_TABLE.' u WHERE u.user_type IN (0, 3) ORDER BY u.user_regdate DESC LIMIT '.intval($limit); $res...
by Ramon Fincken
Sat Feb 21, 2009 8:52 am
Forum: [3.0.x] MOD Database Releases
Topic: Posting template
Replies: 368
Views: 80990

Re: Posting template

Ineke, open the XML files with your browser ( internet explorer/ firefox ) and a sort of web page will show up !
by Ramon Fincken
Tue Feb 17, 2009 11:16 pm
Forum: [3.0.x] MOD Database Releases
Topic: Posting template
Replies: 368
Views: 80990

Re: Posting template

you can't protect specific lines of text using a standard textarea. cross browser protection would come from things like readonly or disabled attributes. However if you take a look at the free/open source tinyMCE editor, that uses a textarea and creates a WYSIWYG editor ... it is possible to make so...
by Ramon Fincken
Wed Feb 11, 2009 4:14 pm
Forum: [3.0.x] MOD Database Releases
Topic: Posting template
Replies: 368
Views: 80990

Re: Posting template

Thanks Igor for the credit notice ! :geek:
by Ramon Fincken
Sun Jan 18, 2009 1:08 am
Forum: [3.0.x] Abandoned MODs
Topic: [ABD] Trackback 0.1.0
Replies: 5
Views: 1892

Re: [BETA] Trackback 0.1.0

Jep, plenty of phpbb2 experience over here :)

Lets hope I have some time next week.
by Ramon Fincken
Wed Jan 14, 2009 2:34 pm
Forum: [3.0.x] Abandoned MODs
Topic: [ABD] Trackback 0.1.0
Replies: 5
Views: 1892

Re: [BETA] Trackback 0.1.0

Interesting, will try to convert this to my phpbb2 board ( www.ramonfincken.com )
by Ramon Fincken
Sat Jan 10, 2009 6:30 pm
Forum: [2.0.x] MODs in Development
Topic: [BETA] Antispam for all fields (updated: 10-01-2009:V1.3.1)
Replies: 575
Views: 152663

Re: [BETA] Antispam for all fields (updated: 10-01-2009:V1.3.1)

Update available

No support at phpbb.com, all support for this mod has moved to http://www.phpbbantispam.com !

See update sticky:
http://phpbbantispam.com/viewtopic.php?t=158
by Ramon Fincken
Tue Nov 25, 2008 5:06 pm
Forum: [2.0.x] MODs in Development
Topic: [BETA] Antispam for all fields (updated: 10-01-2009:V1.3.1)
Replies: 575
Views: 152663

Re: [BETA] Antispam for all fields (updated: 21-11-2008:V1.3.0)

ehupp01 wrote:Thanks :D
No problemo :)

If you have any suggestions for the mod let me know !
by Ramon Fincken
Mon Nov 24, 2008 4:33 pm
Forum: [2.0.x] MODs in Development
Topic: [BETA] Antispam for all fields (updated: 10-01-2009:V1.3.1)
Replies: 575
Views: 152663

Re: [BETA] Antispam for all fields (updated: 21-11-2008:V1.3.0)

Thats correct, solution: http://www.phpbbantispam.com/viewtopic.php?t=152 :idea: :idea: Note: from 2009 on all support and info for this mod will be at http://www.phpbbantispam.com due to the read only-ness of this board ( phpbb.com > phpbb2 mods ) section. I recommend posting your questions, ideas,...
by Ramon Fincken
Sun Nov 23, 2008 6:48 pm
Forum: phpBB Discussion
Topic: Registration From Another Script - Can I do this?
Replies: 17
Views: 5325

Re: Registration From Another Script - Can I do this?

Thanks Marco,

I've started phpbb3 coding this weekend, but I've figured out the basic things :)
( register with validation, update email, delete user etc... )

Go to advanced search