Search found 5 matches

by neljan
Wed Jul 20, 2011 11:30 pm
Forum: Updates
Topic: The Articles Topic
Replies: 218
Views: 124057

Re: The Articles Topic

Ok I changed this:

$auth_f_read = array_keys($auth->acl_getf('f_read', true));

to

$auth_f_read = array_keys($auth->acl_getf('f_read', false);

to fix it.
by neljan
Wed Jul 20, 2011 11:19 pm
Forum: Updates
Topic: The Articles Topic
Replies: 218
Views: 124057

Re: Working example of displaying latest posts on external p

This article is a follow-on from the blog post I made at phpBB.com not too long ago. I recommend reading that post first before reading this, as all of the information you need might be in that po... Read more Me again :) I'm using the function to display the contents of posts on external pages, th...
by neljan
Sun Jul 17, 2011 2:21 am
Forum: Updates
Topic: The Articles Topic
Replies: 218
Views: 124057

Re: The Articles Topic

I managed to figure it out. If another noob finds this, then this is how I did it: forum/main.php: <?php define('IN_PHPBB', true); $phpbb_root_path = (defined('PHPBB_ROOT_PATH')) ? PHPBB_ROOT_PATH : './'; $phpEx = substr(strrchr(__FILE__, '.'), 1); include($phpbb_root_path . 'common.' . $phpEx); inc...
by neljan
Sun Jul 17, 2011 1:11 am
Forum: Updates
Topic: The Articles Topic
Replies: 218
Views: 124057

Re: The Articles Topic

I think I'm getting somewhere actually, so don't waste your time just yet :P
by neljan
Sun Jul 17, 2011 12:39 am
Forum: Updates
Topic: The Articles Topic
Replies: 218
Views: 124057

Re: Working example of displaying latest posts on external p

This article is a follow-on from the blog post I made at phpBB.com not too long ago. I recommend reading that post first before reading this, as all of the information you need might be in that po... Read more Hello :) Firstly, thank you very much for taking the time to write this very useful guide...