Best of joomla gives you news, joomla templates, tutorials and websites about Joomla , FireBoard and FireMessage official page.
| No account yet?   |
The FireBoard forum component development is still going on. In order to get better, FireBoard will be moved from the Best of Joomla website.
During this transition period, the forum in Best of Joomla will be closed to new posts.
Welcome, Guest
Please Login or Register.    Lost Password?
FireBoard Manual Latest release discussions Download FireBoard
issue after a post (1 viewing) (1) Guest
TOPIC: issue after a post
#59348
issue after a post 3 Months, 1 Week ago  
I posted an article and received this report:

Fatal error: Class 'Badword' not found in /home/mtnviney/public_html/components/com_fireboard/template/default/view.php on line 1020

and it looks like this
www.mtnvineyard.org/index.php?option=com...;catid=12&id=4#4

thanks for any help
dn3hgh (User)
Fresh Boarder
Posts: 3
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#59354
Re:issue after a post 3 Months, 1 Week ago  
First, what version of fb are you using?

Did you edited that file?

Could you attach it for compare?

badwords only appear on badword function on that file in FB1.0.5:
Code:

                                //filter bad words
                                if ($fbConfig->badwords && class_exists('Badword') && Badword::filter($fb_message_txt, $my)) {
                                 if (method_exists('Badword','flush')) {
                                 $fb_message_txt = Badword::flush($fb_message_txt, $my);
                                 } else {
                                $fb_message_txt = _COM_A_BADWORDS_NOTICE;
                                 }
                                }



Check if you have it.
johnnydement (Moderator)
FB Quality & Testing Team
Moderator
Posts: 458
graphgraph
User Offline Click here to see the profile of this user
Voces del Vicio Location: Barcelona Birthdate: 1981-12-23
Logged Logged
 
"As a discussion over the net grows longer, the probability of a comparison involving Nazis or Hitler approaches one." - Godwin Law
 
 
#59379
Re:issue after a post 3 Months, 1 Week ago  
So the update is I put bad word filter on no instead of yes and it fixed problem. However what if I want it on?

I have 1.0.4 as 1.0.5 was giving me issues and wouldn't even show on my site integration with a com.

TO clarify I am looking for
//filter bad words
if ($fbConfig->badwords && class_exists('Badword' && Badword::filter($fb_message_txt, $my)) {
if (method_exists('Badword','flush') {
$fb_message_txt = Badword::flush($fb_message_txt, $my);
} else {
$fb_message_txt = _COM_A_BADWORDS_NOTICE;
}
}


but where am I looking for this file I know I didn't edit anything outside the dropdowns of the normal config.
dn3hgh (User)
Fresh Boarder
Posts: 3
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2008/09/30 22:57 By dn3hgh.
 
 
#59391
Re:issue after a post 3 Months, 1 Week ago  
I said it was a temp fix till we find a real solution

This is the code for badwords, and is the only time badwords are mentioned on hte file is reported error: /home/mtnviney/public_html/components/com_fireboard/template/default/view.php

You should check for it to be there. 1.0.4 code may differ.

Edit: It does in fact, this is the code in line 1020 in FB1.0.4
Code:

                                if ($fbConfig['badwords']) {

                                    $badwords = Badword::filter($fb_message_txt, $my);

                                }



Check yours is like this
johnnydement (Moderator)
FB Quality & Testing Team
Moderator
Posts: 458
graphgraph
User Offline Click here to see the profile of this user
Voces del Vicio Location: Barcelona Birthdate: 1981-12-23
Logged Logged
 
"As a discussion over the net grows longer, the probability of a comparison involving Nazis or Hitler approaches one." - Godwin Law
 
 
Go to top