Best of joomla gives you news, joomla templates, tutorials and websites about Joomla , FireBoard and FireMessage official page.
| No account yet?   |
Welcome, Guest
Please Login or Register.    Lost Password?
FireBoard Manual Latest release discussions Download FireBoard Spread FireBoard!
Re:Can't make moderators (1 viewing) (1) Guest
Go to bottom Favoured: 4
TOPIC: Re:Can't make moderators
#7592
Can't make moderators 1 Year, 4 Months ago  
New install of 1.0.1 (no other install of Fireboard previously) and migrated from Joomlaboard...

Whenever I click any of the users in the backend (either clicking on name or selecting and clicking edit), I get a whole bunch of code instead of anything that allows me to make a user a moderator. This is for 3 sites that I installed Fireboard on for the first time today. Any ideas?



Post edited by: mwbarker, at: 2007/05/22 14:38
mwbarker (User)
Fresh Boarder
Posts: 10
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#7719
Re:Can't make moderators 1 Year, 4 Months ago  
Confirm same here, fresh install of FB 1.0.1

Joomla 1.0.12
Database Version: 4.1.14-Debian_5-log
PHP Version: 5.2.1
Web Server: Apache/1.3.37
aravot (User)
Fresh Boarder
Posts: 8
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#7725
Re:Can't make moderators 1 Year, 4 Months ago  
Same here... fresh install site and second upgrade install site. In this forum was helpfix for that in 1.0.1 build1 what I don't try yet there.

Edit: that posts starting here:
www.bestofjoomla.com/component/option,co...mit,8/limitstart,40/

I mean I can make normally moderators, but that site what you see is same, I have that mess too... remember, you can do your moderators in your forum/gategory settings when you before accept they in moderators... that mess is bother me only.

Post edited by: Mortti, at: 2007/05/22 22:14
Mortti (User)
FB Translation Team
Junior Boarder
Posts: 40
graphgraph
User Offline Click here to see the profile of this user
Gender: Male Joomlaportal.fi Location: Finland
Logged Logged
 
Official Finnish Translation partner
http://www.joomlaportal.fi/
 
The administrator has disabled public write access.  
#7763
Re:Can't make moderators 1 Year, 4 Months ago  
OK I have had the same Problem but I solved it. The Problem is the bb_adm.js in /administrator/components/com_fireboard. At the beginning and in the End there is some code missing.

At the beginning write:
[code:1][/code:1]

That's it.

For all people who don't love to edit the file I have it attached! [file name=bb_adm.zip size=4149]http://www.bestofjoomla.com/components/com_fireboard/uploaded/files/bb_adm.zip[/file]

Greetings Jo_shi
Jo_shi (User)
Senior Boarder
Posts: 181
graphgraph
User Offline Click here to see the profile of this user
ICQ#: 94810168 Gender: Male Location: Switzerland Birthdate: 1981-07-10
Logged Logged
 
 
The administrator has disabled public write access.  
#7770
Re:Can't make moderators 1 Year, 4 Months ago  
Works great, thanks Jo_shi
Mortti (User)
FB Translation Team
Junior Boarder
Posts: 40
graphgraph
User Offline Click here to see the profile of this user
Gender: Male Joomlaportal.fi Location: Finland
Logged Logged
 
Official Finnish Translation partner
http://www.joomlaportal.fi/
 
The administrator has disabled public write access.  
#7798
Re:Can't make moderators 1 Year, 4 Months ago  
thanks Jo_shi . Fix on SVN now.
greatpixels (Admin)
BoJ Team
Moderator
Posts: 456
graphgraph
User Offline Click here to see the profile of this user
Gender: Male Best of Joomla! Location: USA Birthdate: 1978-10-31
Logged Logged
 
Project Manager : Lead Developer
 
The administrator has disabled public write access.  
#7816
Re:Can't make moderators 1 Year, 4 Months ago  
I had the same problem - but the code fix only worked on the user profile, and I still can't add moderators to the forum - when I try I get a blank screen...

Steve
steveberry (User)
Fresh Boarder
Posts: 7
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#9409
Re:Can't make moderators 1 Year, 4 Months ago  
hmm i can set moderators maybe ure sql database isnt updated by the update script ??

greetz
incubus (User)
Junior Boarder
Posts: 77
graphgraph
User Offline Click here to see the profile of this user
Gender: Male Location: Subraum
Logged Logged
 
CCC e.V.
There are 10 kind of people: Those who know binary and those who don\'\'t
 
The administrator has disabled public write access.  
#9412
Re:Can't make moderators 1 Year, 4 Months ago  
Nikolay wrote:
I think it is something whith datebase, but i donīt know where i should looking for.(sry for bad english)

Have u used the script

[code:1]
ALTER TABLE `jos_fb_attachments` ADD INDEX `mesid` (`mesid`);
ALTER TABLE `jos_fb_categories` ADD PRIMARY KEY (`id`);
ALTER TABLE `jos_fb_categories` ADD INDEX `parent` (`parent`);
ALTER TABLE `jos_fb_categories` ADD INDEX `published_pubaccess_id` (`published`,`pub_access`,`id`);
ALTER TABLE `jos_fb_categories` DROP KEY `catid`;
ALTER TABLE `jos_fb_categories` DROP KEY `catparent`;
CREATE TABLE `jos_fb_groups` (
`id` int(4) NOT NULL auto_increment,
`title` varchar(255) default NULL,
PRIMARY KEY (`id`)
);
ALTER TABLE `jos_fb_messages` ADD INDEX `time` (`time`);
ALTER TABLE `jos_fb_messages` ADD INDEX `locked` (`locked`);
ALTER TABLE `jos_fb_messages` ADD INDEX `hold_time` (`hold`,`time`);
ALTER TABLE `jos_fb_messages` DROP KEY `id`;
ALTER TABLE `jos_fb_messages_text` ADD PRIMARY KEY (`mesid`);
ALTER TABLE `jos_fb_messages_text` DROP KEY `mesid`;
ALTER TABLE `jos_fb_moderation` DROP KEY `catid`;
ALTER TABLE `jos_fb_users` ADD COLUMN `group_id` int(4) NULL DEFAULT '1';
ALTER TABLE `jos_fb_users` ADD COLUMN `uhits` int(11) NULL DEFAULT '0';
ALTER TABLE `jos_fb_users` ADD INDEX `group_id` (`group_id`);
ALTER TABLE `jos_fb_whoisonline` ADD INDEX `userid` (`userid`);
[/code:1]

maybe search youre tables if all is set to the changes the code will do.

if u try and u get an error when using the script then delete the line producing the error
and try again As long as all changes be done :)

but dont do anything before backing up database !!!!!!
incubus (User)
Junior Boarder
Posts: 77
graphgraph
User Offline Click here to see the profile of this user
Gender: Male Location: Subraum
Logged Logged
 
Last Edit: 2007/05/31 10:38 By incubus.
 
CCC e.V.
There are 10 kind of people: Those who know binary and those who don\'\'t
 
The administrator has disabled public write access.  
#9415
Re:Can't make moderators 1 Year, 4 Months ago  
ok

delete this line do it again every time u got an error the key in thios line is existing or is already dropped.

so delete the lines causing errors one by one so long u get all changes

little stressy but u will get it
incubus (User)
Junior Boarder
Posts: 77
graphgraph
User Offline Click here to see the profile of this user
Gender: Male Location: Subraum
Logged Logged
 
Last Edit: 2007/05/31 10:40 By incubus.
 
CCC e.V.
There are 10 kind of people: Those who know binary and those who don\'\'t
 
The administrator has disabled public write access.  
Go to top