Is there a mod for phpbb to give us the ability to create subforums??
I searched the forums, but couldnt find a solid answer.
I am currently using Ravenuked 2.02.02 with the latest sentinel installed.
I think we are using phpbb2.0.15, but it says i should check nukescripts for 2.0.22 so i dont think that is completely up to date.
Could anyone point me in the right direction for what I need?
Thx in advance.
If your site is php-nuke you don't want to use phpbb.com packages that are not modded for nuke...I think nukescripts.net has the mods for phpbb if I remember correctly.
http://www.nukeresources.com has all the upgrade scripts for BBToNuke
Hi, I was looking also for the upgrade to the phpBB, I had already seen those at nukeresources, but was uncertain if they were appliable to RavenNuke 2.02.02.
Just to be sure, and before I ruin anything, can anyone confirm that? If so, the version to look for will be bbtoNuke 2.22 for nuke 7.6 ?
Yes, I'm quite new at this
Thankyou all in advance...
EDIT:
The more I search the more doubts I get
I went to nukeresources now, and I find 2 versions of bbtonuke 2.0.22, one of them for patched nuke. Now I dont know what to do.
And also, do I have to install first the bbtonuke 2.0.21 ? If yes, wich?
awesome...well, im updated......and i checked out subforum....and it doesnt seem to be compatible with phpnuke??
Quote:
No, you can't. You are running a nuked port of phpBB. It is a modified version of phpBB. The files from ths site only work for the standard phpBB anyway.
The Simple Subforums MOD in this topic will not work on a nuked port without modification. You can try this, [BETA]Simple subforums For Phpnuke. There is no guarantee that this will work and there is no support for this version. You are on your own with trying to get this to work with Ravennuked.
So far so good, all seems to be working well. I am having one issue though. . .Once I move a forum to another forum (creating a subforum) the parent forum no longer works.
I moved America's Army, into the Members Discussion forum, and now when I click on Members Discussion its like the page is all screwed up.
I seem to have narrowed it down to the last part of the readme, where it states to do this:
If I do not make this change, it seems to work correctly. . .What is this?
// Begin Simple Subforums MOD
switch(SQL_LAYER)
{
case 'postgresql':
$sql = "SELECT f.*, p.post_time, p.post_username, u.username, u.user_id
FROM " . FORUMS_TABLE . " f, " . POSTS_TABLE . " p, " . USERS_TABLE . " u
WHERE p.post_id = f.forum_last_post_id
AND u.user_id = p.poster_id
AND f.forum_parent = '{$forum_id}'
UNION (
SELECT f.*, NULL, NULL, NULL, NULL
FROM " . FORUMS_TABLE . " f
WHERE NOT EXISTS (
SELECT p.post_time
FROM " . POSTS_TABLE . " p
WHERE p.post_id = f.forum_last_post_id
)
)
ORDER BY cat_id, forum_order";
break;
case 'oracle':
$sql = "SELECT f.*, p.post_time, p.post_username, u.username, u.user_id
FROM " . FORUMS_TABLE . " f, " . POSTS_TABLE . " p, " . USERS_TABLE . " u
WHERE p.post_id = f.forum_last_post_id(+)
AND u.user_id = p.poster_id(+)
AND f.forum_parent = '{$forum_id}'
ORDER BY f.cat_id, f.forum_order";
break;
default:
$sql = "SELECT f.*, p.post_time, p.post_username, u.username, u.user_id
FROM (( " . FORUMS_TABLE . " f
LEFT JOIN " . POSTS_TABLE . " p ON p.post_id = f.forum_last_post_id )
LEFT JOIN " . USERS_TABLE . " u ON u.user_id = p.poster_id )
WHERE f.forum_parent = '{$forum_id}'
ORDER BY f.cat_id, f.forum_order";
break;
}
if ( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not query subforums information', '', __LINE__, __FILE__, $sql);
}
if ( ($total_forums = count($subforum_data)) > 0 )
{
//
// Find which forums are visible for this user
//
$is_auth_ary = array();
$is_auth_ary = auth(AUTH_VIEW, AUTH_LIST_ALL, $userdata, $subforum_data);
//
// Obtain a list of topic ids which contain
// posts made since user last visited
//
if ( $userdata['session_logged_in'] )
{
$sql = "SELECT t.forum_id, t.topic_id, p.post_time
FROM " . TOPICS_TABLE . " t, " . POSTS_TABLE . " p
WHERE p.post_id = t.topic_last_post_id
AND p.post_time > " . $userdata['user_lastvisit'] . "
AND t.topic_moved_id = 0";
if ( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not query new topic information', '', __LINE__, __FILE__, $sql);
}
$new_topic_data = array();
while( $topic_data = $db->sql_fetchrow($result) )
{
$new_topic_data[$topic_data['forum_id']][$topic_data['topic_id']] = $topic_data['post_time'];
}
$db->sql_freeresult($result);
}
//
// Obtain list of moderators of each forum
// First users, then groups ... broken into two queries
//
$subforum_moderators = array();
$sql = "SELECT aa.forum_id, u.user_id, u.username
FROM " . AUTH_ACCESS_TABLE . " aa, " . USER_GROUP_TABLE . " ug, " . GROUPS_TABLE . " g, " . USERS_TABLE . " u
WHERE aa.auth_mod = " . TRUE . "
AND g.group_single_user = 1
AND ug.group_id = aa.group_id
AND g.group_id = aa.group_id
AND u.user_id = ug.user_id
GROUP BY u.user_id, u.username, aa.forum_id
ORDER BY aa.forum_id, u.user_id";
if ( !($result = $db->sql_query($sql, false, true)) )
{
message_die(GENERAL_ERROR, 'Could not query forum moderator information', '', __LINE__, __FILE__, $sql);
}
d***, seems to be working for the most part, but im not getting any support over at the site it seems. Im guessing because im not using evo.
All is working correctly, except i noticed that when I add that last edit to the viewforum.php file when I go to a parent forum its all glitched up.....but if I remove it, you can go to the parent forum, but cant see the subforums once your in it.
View next topic View previous topic
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum