[Extension] Bbii Forum Forum module
#1
Posted 27 July 2013 - 02:34 PM
Forum extension page.
On the todo-list of this module are: vote post one up, polls, moderator mail, topic subscription, theming and more configuration options.
Hopefully there will be more translations, but for that I will need your help. When you have made a new translation for this module please share it with this community.
#2
Posted 14 August 2013 - 09:22 AM
I noticed a small bug: quoting a msg that has a "change reason" copies that change reason too.
#4
Posted 01 November 2013 - 02:09 PM

Oh, and the manual has been updated.
#6
Posted 29 November 2013 - 08:48 AM
I fixed small bugs in pool..
1) ForumController.php => actionVote => BBiiChoice => BbiiChoice
2) _pollChoise.php => line 9 => choice['.$data->id.'] => choice[]
And problem in to last nav post.. Here:
bbii.doprogramsdream.nl/index.php?r=forum/forum/topic&id=3&nav=last => this is not last page of forum
Thx
#7
Posted 29 November 2013 - 10:01 AM
gord007, on 29 November 2013 - 08:48 AM, said:
I fixed small bugs in pool..
1) ForumController.php => actionVote => BBiiChoice => BbiiChoice
2) _pollChoise.php => line 9 => choice['.$data->id.'] => choice[]
And problem in to last nav post.. Here:
bbii.doprogramsdream.nl/index.php?r=forum/forum/topic&id=3&nav=last => this is not last page of forum
Thx
Thanks for taking the time to report these. I will fix it in the next version ( 0.8 ).
#8
Posted 09 January 2014 - 01:28 AM
#10
Posted 11 March 2014 - 06:23 AM
#12
Posted 04 April 2014 - 05:20 PM
nicos08, on 04 April 2014 - 06:45 AM, said:
Firstly, I'm sorry for my poor english and that I'm newbie with Yii (I've only worked on tutorial from Yii website)

I'm working on a intranet application for managing a cultural association. We would like to have Forums in order to manage projects and share ideas :
- One for Active Members, in which managers can reply to their questions
- One only for managers, which members can't read.
Is there any way to do such things with your extension ?
Thank you
Not yet, but it is not too difficult to add this functionality. I will consider adding this to the next update of the module. In fact, I am sure I will add it to version 0.9, which is scheduled to be released this weekend.
#13
Posted 05 April 2014 - 04:33 AM
Ronald_, on 04 April 2014 - 05:20 PM, said:
Quote
Thank you very much

You'll save me a lot of time coding my own forum system while a good one already exists.
I can spend my time working on very specific development.
Thank you for your great work
#14
Posted 24 April 2014 - 12:10 PM
i am using version 0.9.
forum/setting/layout triggers CException: Property BbiiForum.membergroup_id not defined.
According to BbiiForum model file description
* @property integer $membergroup_id
$membergroup_id is a column in the database. This is however not the case.
Furthermore the following lines in BbiiModule.php init function break the translation of the rest of my app (menues, etc) as long as i am browsing within the /forum module:
'messages' => array( 'class'=>'CPhpMessageSource', 'basePath'=>'protected/modules/bbii/messages', ),
These lines disabled and
Yii::t('bbii' ...
replaced by
Yii::t('BbiiModule.bbii' ...
make translations work again.
Cheers
#15
Posted 25 April 2014 - 07:41 AM
kano, on 24 April 2014 - 12:10 PM, said:
i am using version 0.9.
forum/setting/layout triggers CException: Property BbiiForum.membergroup_id not defined.
According to BbiiForum model file description
* @property integer $membergroup_id
$membergroup_id is a column in the database. This is however not the case.
Furthermore the following lines in BbiiModule.php init function break the translation of the rest of my app (menues, etc) as long as i am browsing within the /forum module:
'messages' => array( 'class'=>'CPhpMessageSource', 'basePath'=>'protected/modules/bbii/messages', ),
These lines disabled and
Yii::t('bbii' ...
replaced by
Yii::t('BbiiModule.bbii' ...
make translations work again.
Cheers
First of all, thanks for reporting these.
About, the membergroup_id. I forgot to add it to the installation. You can run the update to version 0.9 or add the field to your database table by hand. Sorry for that mistake.
I will look into the translation issue and follow your advice.
#16
Posted 03 May 2014 - 03:30 AM
MR.omid, on 02 May 2014 - 07:02 AM, said:
public function mailboxFull($attr, $params) { $criteria = new CDbCriteria; $criteria->condition = 'sendto = '. Yii::app()->user->id; if(BbiiMessage::model()->outbox()->count($criteria) >=50) { $this->addError('sendto', Yii::t('BbiiModule.bbii', 'Your outbox is full. Please make room before sending new messages.')); } }
and simple question is, how to add user as moderator?
Thanks for reporting this bug. It should indeed have been 'sendfrom'. Actually the condition should have been:
$criteria->condition = 'outbox = 1 and sendfrom = '. Yii::app()->user->id;
As for your question:
Login as admin. Go to the forum settings and select the Moderators tab.
The BBii Manual (on page 12) tells you:
"Members of the forum can be assigned moderator authorization by setting the moderator checkbox. Members that have moderation authorization by assigning the rbac role moderator to them are highlighted on the list of the Moderators page, but their checkboxes are not necessarily set and they cannot be found by filtering the moderators of the list."
When you use rbac, you can create a "moderator" role and assign it to the user.
#17
Posted 26 May 2014 - 05:02 PM
I have a problem where it is displaying -1 guests and 1 active user ( or -2 guests and 2 active users ect) on the board statistics page. Any idea why its inaccurate?
#18
Posted 27 May 2014 - 05:28 AM
CodenObrian, on 26 May 2014 - 05:02 PM, said:
I have a problem where it is displaying -1 guests and 1 active user ( or -2 guests and 2 active users ect) on the board statistics page. Any idea why its inaccurate?
In view forum/_footer.php the number of guests is calculated from:
$present = BbiiSession::model()->present()->count(); $members = BbiiMember::model()->present()->count();
$present should always be greater or equal to $members.
In the function beforeControllerAction() of the script BbiiModule.php the bbii_session record is inserted or last_visit is updated.
My guess is that something goes wrong there. Maybe an MySQL authorisation issue on the table bbii_session?
#19
Posted 28 May 2014 - 04:53 PM
Ronald van Belzen, on 27 May 2014 - 05:28 AM, said:
$present = BbiiSession::model()->present()->count(); $members = BbiiMember::model()->present()->count();
$present should always be greater or equal to $members.
In the function beforeControllerAction() of the script BbiiModule.php the bbii_session record is inserted or last_visit is updated.
My guess is that something goes wrong there. Maybe an MySQL authorisation issue on the table bbii_session?
After a little of fiddling around I couldn't figure it out. Although my website required a user account to see the forum. So i just edited out the guest part in the footer. Thanks for the quick reply.
#20
Posted 05 June 2014 - 07:23 AM
I just want to congratulate the Author/s of this plugin ,I am integrating it into a support site for my company and it works well.
I had some minor troubles integrating kcfinder for image uploads ,however that has been sorted.
I cannot think of many feature requests ,however it would be nice if forum categories could minimize/maximize on title select.
Once again however this is a great plugin ,thank you very much.