New upcoming Version - Support for NO Guest users
Forum rules
Before creating a new support thread, please take a look in the board3 Portal FAQ and use the search!
Many questions have already been answered.
Before creating a new support thread, please take a look in the board3 Portal FAQ and use the search!
Many questions have already been answered.
New upcoming Version - Support for NO Guest users
My forum doesn't allow guest users.. You have to be registered to view the forums.
This works well with phpbb2 & ezportal, on the portal there is a list of recent topics and a selection of announcements and recent posts.
When I tried the current version of board3, I couldn't show the recent posts / topics as I don't allow guests..
Will the upcoming new version support this ??
Thanks
This works well with phpbb2 & ezportal, on the portal there is a list of recent topics and a selection of announcements and recent posts.
When I tried the current version of board3, I couldn't show the recent posts / topics as I don't allow guests..
Will the upcoming new version support this ??
Thanks
-
- Site Admin
- Posts: 2989
- Joined: 7. January 2006 20:11
- phpBB.de User: Saint
- phpBB.com User: Saint_hh
- Location: Hamburg
- Contact:
Re: New upcoming Version - Support for NO Guest users
Yes, it will.
You can disable the user permission check separately for News and / or Announcements in V0.3.0.
These sections will be very flexible to configure.
You can disable the user permission check separately for News and / or Announcements in V0.3.0.
These sections will be very flexible to configure.
~~~ They say the definition of madness is doing the same thing and expecting a different result ~~~
Kein Support per PN / No support via PM!
Kein Support per PN / No support via PM!
Re: New upcoming Version - Support for NO Guest users
Fantastic... Gimme Gimme !!!
Re: New upcoming Version - Support for NO Guest users
Hi
This works well.. but is there anyway to by pass the forum permissions so the subject of recent posts / topics appear on the portal ??
I have this on my phpbb2 ezportal front. Looks good !!
This works well.. but is there anyway to by pass the forum permissions so the subject of recent posts / topics appear on the portal ??
I have this on my phpbb2 ezportal front. Looks good !!
-
- Site Admin
- Posts: 2989
- Joined: 7. January 2006 20:11
- phpBB.de User: Saint
- phpBB.com User: Saint_hh
- Location: Hamburg
- Contact:
Re: New upcoming Version - Support for NO Guest users
This is exactly what we are talking about:tomt wrote:but is there anyway to by pass the forum permissions so the subject of recent posts / topics appear on the portal ??
Kevin wrote:Yes, it will.
You can disable the user permission check separately for News and / or Announcements in V0.3.0.
~~~ They say the definition of madness is doing the same thing and expecting a different result ~~~
Kein Support per PN / No support via PM!
Kein Support per PN / No support via PM!
Re: New upcoming Version - Support for NO Guest users
And put it in compact mode.
Board3 Portal Dev & English Tech Support
Re: New upcoming Version - Support for NO Guest users
Thanks for the reply.
I can see this for news & announcements, but not for recent topics / recent posts in other forums...
Am I missing something ??
You can see the sort of thing I mean on my current phpbb2 forum..
http://www.medionsupport.com/phpbb2
Thanks
I can see this for news & announcements, but not for recent topics / recent posts in other forums...
Am I missing something ??
You can see the sort of thing I mean on my current phpbb2 forum..
http://www.medionsupport.com/phpbb2
Thanks
-
- Site Admin
- Posts: 2989
- Joined: 7. January 2006 20:11
- phpBB.de User: Saint
- phpBB.com User: Saint_hh
- Location: Hamburg
- Contact:
Re: New upcoming Version - Support for NO Guest users
Which version of the portal do you have installed?
A similar feature to the EZ-Portal is offered up from Board3 Portal 1.0.0 RC1, not in older versions.
A similar feature to the EZ-Portal is offered up from Board3 Portal 1.0.0 RC1, not in older versions.
~~~ They say the definition of madness is doing the same thing and expecting a different result ~~~
Kein Support per PN / No support via PM!
Kein Support per PN / No support via PM!
Re: New upcoming Version - Support for NO Guest users
Hi
I've installed the latest version of board3.
I can see the options for news & announcements but nothing for recent topic / recent posts..
Thanks
I've installed the latest version of board3.
I can see the options for news & announcements but nothing for recent topic / recent posts..
Thanks
Re: New upcoming Version - Support for NO Guest users
I'm trying to get this sorted.. Can anyone help ?
-
- Site Admin
- Posts: 2989
- Joined: 7. January 2006 20:11
- phpBB.de User: Saint
- phpBB.com User: Saint_hh
- Location: Hamburg
- Contact:
Re: New upcoming Version - Support for NO Guest users
Not tested - try this:
open recent.php
search:
replace with:
search:
replace with:
search:
replace with:
open recent.php
search:
Code: Select all
while( ($row = $db->sql_fetchrow($result)) && ($row['topic_title']) )
{
// auto auth
if ( ($auth->acl_get('f_read', $row['forum_id'])) || ($row['forum_id'] == '0') )
{
$template->assign_block_vars('latest_announcements', array(
'TITLE' => character_limit($row['topic_title'], $portal_config['portal_recent_title_limit']),
'FULL_TITLE' => censor_text($row['topic_title']),
'U_VIEW_TOPIC' => append_sid("{$phpbb_root_path}viewtopic.$phpEx", 'f=' . $row['forum_id'] . '&t=' . $row['topic_id'])
));
}
}
$db->sql_freeresult($result);
Code: Select all
while( ($row = $db->sql_fetchrow($result)) && ($row['topic_title']) )
{
$template->assign_block_vars('latest_announcements', array(
'TITLE' => character_limit($row['topic_title'], $portal_config['portal_recent_title_limit']),
'FULL_TITLE' => censor_text($row['topic_title']),
'U_VIEW_TOPIC' => append_sid("{$phpbb_root_path}viewtopic.$phpEx", 'f=' . $row['forum_id'] . '&t=' . $row['topic_id'])
));
}
$db->sql_freeresult($result);
search:
Code: Select all
while( ($row = $db->sql_fetchrow($result)) && ($row['topic_title']) )
{
// auto auth
if ( ($auth->acl_get('f_read', $row['forum_id'])) || ($row['forum_id'] == '0') )
{
$template->assign_block_vars('latest_hot_topics', array(
'TITLE' => character_limit($row['topic_title'], $portal_config['portal_recent_title_limit']),
'FULL_TITLE' => censor_text($row['topic_title']),
'U_VIEW_TOPIC' => append_sid("{$phpbb_root_path}viewtopic.$phpEx", 'f=' . $row['forum_id'] . '&t=' . $row['topic_id'])
));
}
}
$db->sql_freeresult($result);
Code: Select all
while( ($row = $db->sql_fetchrow($result)) && ($row['topic_title']) )
{
$template->assign_block_vars('latest_hot_topics', array(
'TITLE' => character_limit($row['topic_title'], $portal_config['portal_recent_title_limit']),
'FULL_TITLE' => censor_text($row['topic_title']),
'U_VIEW_TOPIC' => append_sid("{$phpbb_root_path}viewtopic.$phpEx", 'f=' . $row['forum_id'] . '&t=' . $row['topic_id'])
));
}
$db->sql_freeresult($result);
search:
Code: Select all
while( ($row = $db->sql_fetchrow($result)) && ($row['topic_title']) )
{
// auto auth
if ( ($auth->acl_get('f_read', $row['forum_id'])) || ($row['forum_id'] == '0') )
{
$template->assign_block_vars('latest_topics', array(
'TITLE' => character_limit($row['topic_title'], $portal_config['portal_recent_title_limit']),
'FULL_TITLE' => censor_text($row['topic_title']),
'U_VIEW_TOPIC' => append_sid("{$phpbb_root_path}viewtopic.$phpEx", 'f=' . $row['forum_id'] . '&t=' . $row['topic_id'])
));
}
}
$db->sql_freeresult($result);
Code: Select all
while( ($row = $db->sql_fetchrow($result)) && ($row['topic_title']) )
{
$template->assign_block_vars('latest_topics', array(
'TITLE' => character_limit($row['topic_title'], $portal_config['portal_recent_title_limit']),
'FULL_TITLE' => censor_text($row['topic_title']),
'U_VIEW_TOPIC' => append_sid("{$phpbb_root_path}viewtopic.$phpEx", 'f=' . $row['forum_id'] . '&t=' . $row['topic_id'])
));
}
$db->sql_freeresult($result);
~~~ They say the definition of madness is doing the same thing and expecting a different result ~~~
Kein Support per PN / No support via PM!
Kein Support per PN / No support via PM!
-
- Active Member
- Posts: 6
- Joined: 18. February 2009 11:06
- phpBB.de User: danleedham
- phpBB.com User: danleedham
Re: New upcoming Version - Support for NO Guest users
Sorrry - does this stop Guests seeing the Portal? or does it give you the choices of what Guests can / cannot see?
That would be the icing on the cake... thanks
That would be the icing on the cake... thanks
Re: New upcoming Version - Support for NO Guest users
the lastest version don't have this issue...danleedham wrote:Sorrry - does this stop Guests seeing the Portal? or does it give you the choices of what Guests can / cannot see?
That would be the icing on the cake... thanks
-
- Active Member
- Posts: 6
- Joined: 18. February 2009 11:06
- phpBB.de User: danleedham
- phpBB.com User: danleedham
Re: New upcoming Version - Support for NO Guest users
Which issue?
I DO NOT want guests to be able to see certain blocks in the portal - if that's not possible, not even see the portal at all - but still allow logged in users to be presented with it when they first come to the forum.
In England we've got CRAZY data protection and a tiny bit of info that is leaked (or seen in the portal) can mean being suued loads - it's stupid.
So stopping guests from seeing the portal would be awesome - even better if we could give them the time, a welcome note and guest announcements (and a link to registering of course) but then leave the rest of the portal out. But... I don't want to stop users from seeing all the stuff that's been blocked for guests.
I'm am barking up the wrong tree of impossiblity? or just looking in the Non-German place (don't speak a word, sorry).
Cheers for your time guys
I DO NOT want guests to be able to see certain blocks in the portal - if that's not possible, not even see the portal at all - but still allow logged in users to be presented with it when they first come to the forum.
In England we've got CRAZY data protection and a tiny bit of info that is leaked (or seen in the portal) can mean being suued loads - it's stupid.
So stopping guests from seeing the portal would be awesome - even better if we could give them the time, a welcome note and guest announcements (and a link to registering of course) but then leave the rest of the portal out. But... I don't want to stop users from seeing all the stuff that's been blocked for guests.
I'm am barking up the wrong tree of impossiblity? or just looking in the Non-German place (don't speak a word, sorry).
Cheers for your time guys