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?
Go to bottom Post Reply Favoured: 20
TOPIC:
#47086
Re:Fireboard 1.0.4 Upgrade & Intallation issue 4 Months ago  
I copied the patch files

and now i executed the queries with this link
http://joomlacode.org/gf/project/fireboa....sql&view=markup

so my sql file looked like this ( all my tables start with joom_ so i renamed this in the sql file)


/* Alter table in Second database */
alter table `joom_fb_attachments`
add KEY `mesid`(`mesid`), COMMENT='';

/* Alter table in Second database */
alter table `joom_fb_categories`
add column `headerdesc` text NOT NULL after `description`,
add column `class_sfx` varchar(20) NOT NULL after `headerdesc`,
add column `id_last_msg` int(10) NOT NULL DEFAULT '0' after `class_sfx`,
add column `numTopics` mediumint(8) NOT NULL DEFAULT '0' after `id_last_msg`,
add column `numPosts` mediumint(8) NOT NULL DEFAULT '0' after `numTopics`,
add column `time_last_msg` int(11) NULL after `numPosts`,
drop key `catid`,
drop key `catparent`,
add KEY `msg_id`(`id_last_msg`),
add KEY `parent`(`parent`),
add PRIMARY KEY(`id`),
add KEY `published_pubaccess_id`(`published`,`pub_access`,`id`), COMMENT='';
/* Create table in Second database */

create table `joom_fb_groups`(
`id` int(4) NOT NULL auto_increment ,
`title` varchar(255) NULL ,
PRIMARY KEY (`id`)
);


/* Alter table in Second database */
alter table `joom_fb_messages`
add column `modified_by` int(7) NULL after `moved`,
add column `modified_time` int(11) NULL after `modified_by`,
add column `modified_reason` tinytext NULL after `modified_time`,
add KEY `hold_time`(`hold`,`time`),
drop key `id`,
add KEY `locked`(`locked`),
add KEY `time`(`time`), COMMENT='';

/* Alter table in Second database */
alter table `joom_fb_messages_text`
drop key `mesid`,
add PRIMARY KEY(`mesid`), COMMENT='';

/* Alter table in Second database */
alter table `joom_fb_moderation`
drop key `catid`, COMMENT='';
/* Create table in Second database */

create table `joom_fb_ranks`(
`rank_id` mediumint(8) unsigned NOT NULL auto_increment ,
`rank_title` varchar(255) NOT NULL ,
`rank_min` mediumint(8) unsigned NOT NULL DEFAULT '0' ,
`rank_special` tinyint(1) unsigned NOT NULL DEFAULT '0' ,
`rank_image` varchar(255) NOT NULL ,
PRIMARY KEY (`rank_id`)
);


/* Alter table in Second database */
alter table `joom_fb_users`
add column `group_id` int(4) NULL DEFAULT '1' after `karma_time`,
add column `uhits` int(11) NULL DEFAULT '0' after `group_id`,
add column `personalText` tinytext NULL after `uhits`,
add column `gender` tinyint(4) NOT NULL DEFAULT '0' after `personalText`,
add column `birthdate` date NOT NULL DEFAULT '0000-00-00' after `gender`,
add column `location` varchar(50) NULL after `birthdate`,
add column `ICQ` varchar(50) NULL after `location`,
add column `AIM` varchar(50) NULL after `ICQ`,
add column `YIM` varchar(50) NULL after `AIM`,
add column `MSN` varchar(50) NULL after `YIM`,
add column `SKYPE` varchar(50) NULL after `MSN`,
add column `hideEmail` tinyint(1) NOT NULL DEFAULT '1' after `SKYPE`,
add column `showOnline` tinyint(1) NOT NULL DEFAULT '1' after `hideEmail`,
add column `rank` tinyint(4) NOT NULL DEFAULT '0' after `showOnline`,
add column `GTALK` varchar(50) NULL after `rank`,
add column `websitename` varchar(50) NULL after `GTALK`,
add column `websiteurl` varchar(50) NULL after `websitename`,
add KEY `group_id`(`group_id`), COMMENT='';

/* Alter table in Second database */
alter table `joom_fb_whoisonline`
add KEY `userid`(`userid`), COMMENT='';

INSERT INTO `joom_fb_groups` VALUES ('1', 'Registered User';

INSERT INTO `joom_fb_ranks` (`rank_id`, `rank_title`, `rank_min`, `rank_special`, `rank_image`) VALUES
(1, 'Fresh Boarder', 0, 0, 'rank1.gif',
(2, 'Junior Boarder', 20, 0, 'rank2.gif',
(3, 'Senior Boarder', 40, 0, 'rank3.gif',
(4, 'Expert Boarder', 80, 0, 'rank4.gif',
(5, 'Gold Boarder', 160, 0, 'rank5.gif',
(6, 'Platinum Boarder', 320, 0, 'rank6.gif',
(7, 'Administrator', 0, 1, 'rankadmin.gif',
(8, 'Moderator', 0, 1, 'rankmod.gif',
(9, 'Spammer', 0, 1, 'rankspammer.gif';

UPDATE `joom_fb_users` SET `rank`=8 WHERE `moderator`=1 AND `rank`=0;

and i get so many errors

I should just copy and paste that text to sql window right?

Or should i copy and paste each line, without the comment lines



I have 1.00 version and I upgraded to the latest version



Here are some of the errors that I receive

SQL-poizvedba:

ALTER TABLE `joom_fb_categories` ADD COLUMN `headerdesc` text NOT NULL AFTER `description` ,
ADD COLUMN `class_sfx` varchar( 20 ) NOT NULL AFTER `headerdesc` ,
ADD COLUMN `id_last_msg` int( 10 ) NOT NULL DEFAULT '0' AFTER `class_sfx` ,
ADD COLUMN `numTopics` mediumint( 8 ) NOT NULL DEFAULT '0' AFTER `id_last_msg` ,
ADD COLUMN `numPosts` mediumint( 8 ) NOT NULL DEFAULT '0' AFTER `numTopics` ,
ADD COLUMN `time_last_msg` int( 11 ) NULL AFTER `numPosts` ,
DROP KEY `catid` ,
DROP KEY `catparent` ,
ADD KEY `msg_id` ( `id_last_msg` ) ,
ADD KEY `parent` ( `parent` ) ,
ADD PRIMARY KEY ( `id` ) ,
ADD KEY `published_pubaccess_id` ( `published` , `pub_access` , `id` ) ,
COMMENT = ''

MySQL je vrnil:

#1091 - Can't DROP 'catid'; check that column/key exists



and on my site i get these errors

Warning: Invalid argument supplied for foreach() in /home/xxxxx/public_html/seo/components/com_fireboard/template/default/plugin/who/whoisonline.php on line 75

Hidden Users:
Warning: Invalid argument supplied for foreach() in /home/xxxxx/public_html/seo/components/com_fireboard/template/default/plugin/who/whoisonline.php on line 102



Am I doing mistakes?

Please help
fendy (User)
Fresh Boarder
Posts: 18
graphgraph
User Offline Click here to see the profile of this user
 
Last Edit: 2008/03/16 07:48 By fendy.
 
Automatic Filter Message : Please follow the forum rules for forum signatures...Thanks
 
The administrator has disabled public write access.  
#47087
Re:Fireboard 1.0.4 Upgrade & Intallation issues 4 Months ago  
grumblemarc wrote:
Sorry for saying this but you also have a problem with not reading EVERYTHING before posting. The LAST link will run the SQL scripts REGARDLESS of errors.
http://www.bestofjoomla.com/component/op...w/id,26252/catid,79/

Install EasySQL and run the scripts.


this does not work for me i get errors when installing

Upload component - Upload Failed
Unrecoverable error "PCLZIP_ERR_BAD_FORMAT (-10)"
scripts.</span>

this does not work for me i get errors when installing

Upload component - Upload Failed
Unrecoverable error "PCLZIP_ERR_BAD_FORMAT (-10)"
[ Continue ... ]
Upload component - Failed
Installation file not found:
scripts.</span>

this does not work for me i get errors when installing

Upload component - Upload Failed
Unrecoverable error "PCLZIP_ERR_BAD_FORMAT (-10)"
scripts.</span>

this does not work for me i get errors when installing

Upload component - Upload Failed
Unrecoverable error "PCLZIP_ERR_BAD_FORMAT (-10)"
[ Continue ... ]
Upload component - Failed
Installation file not found:
[ Continue ... ]
fendy (User)
Fresh Boarder
Posts: 18
graphgraph
User Offline Click here to see the profile of this user
 
Automatic Filter Message : Please follow the forum rules for forum signatures...Thanks
 
The administrator has disabled public write access.  
#47088
Re:Fireboard 1.0.4 Upgrade & Intallation issues 4 Months ago  
grumblemarc wrote:
Sorry for saying this but you also have a problem with not reading EVERYTHING before posting. The LAST link will run the SQL scripts REGARDLESS of errors.
http://www.bestofjoomla.com/component/op...w/id,26252/catid,79/

Install EasySQL and run the scripts.


this does not work for me i get errors when installing

Upload component - Upload Failed
Unrecoverable error "PCLZIP_ERR_BAD_FORMAT (-10)"
scripts.</span>

this does not work for me i get errors when installing

Upload component - Upload Failed
Unrecoverable error "PCLZIP_ERR_BAD_FORMAT (-10)"
[ Continue ... ]
Upload component - Failed
Installation file not found:
scripts.</span>

this does not work for me i get errors when installing

Upload component - Upload Failed
Unrecoverable error "PCLZIP_ERR_BAD_FORMAT (-10)"
scripts.</span>

this does not work for me i get errors when installing

Upload component - Upload Failed
Unrecoverable error "PCLZIP_ERR_BAD_FORMAT (-10)"
[ Continue ... ]
Upload component - Failed
Installation file not found:
[ Continue ... ]
fendy (User)
Fresh Boarder
Posts: 18
graphgraph
User Offline Click here to see the profile of this user
 
Automatic Filter Message : Please follow the forum rules for forum signatures...Thanks
 
The administrator has disabled public write access.  
#47090
Re:Fireboard 1.0.4 Upgrade & Intallation issues 4 Months ago  
That is a corrupt zip file. Use another browser to download.
grumblemarc (User)
Platinum Boarder
Posts: 3555
graph
User Offline Click here to see the profile of this user
Gender: Male
 
Ironside/Ben Dover said I was supposed to be an expert!! That\'s funny! I don\'t remember getting certified to be a FireBoard expert.
 
The administrator has disabled public write access.  
#47098
Re:Fireboard 1.0.4 Upgrade & Intallation issues 4 Months ago  
When is a working version of the upgrade going to be built? I have read all the other posts but there are so many posts complaining that people with problems do not read the posts - yes I know we are supposed to ignore the errors but even ignoring the errors produces a non-working board. Hopefully someone reads this before it gets deleted like most complaints do.
Frank A (User)
Junior Boarder
Posts: 29
graphgraph
User Offline Click here to see the profile of this user
 
The administrator has disabled public write access.  
#47100
Re:Fireboard 1.0.4 Upgrade & Intallation issue 4 Months ago  
If you read the posts you will find that it was NOT recommened to use the patch files for upgrading when going from 1.0.3 to .4. There was some undiscovered inconsistency in them that caused many errors-the always open quick reply box being one of them. So if THAT is what you are using to upgrade then stop it. I don't even know why they are still availalable for download.

Backup files, uninstall .3 and install .4 FULL. For good measure install the SVN patch.

If you're upgrading from earlier version than .3 follow the directions on upgrading found in the Upgrading forums.

If you're upgrading after migrating a board you just might be screwed because of the many variations of issues that come from migrating.

If you're upgrading on a J1.5 platform you're probably going to be on your own. It was advised LONG AGO to NOT use FB on this platform because it did not work right. This came straight from one of the devs. So if you have to have what you think is the latest and greatest version of Joomla then prepare to be frustrated.

As for a "working" version don't hold your breath. I have done many upgrades to .4 and using this advice and a few more hacks provided from the forums I have had flawless installations going.
grumblemarc (User)
Platinum Boarder
Posts: 3555
graph
User Offline Click here to see the profile of this user
Gender: Male
 
Last Edit: 2008/03/16 15:57 By grumblemarc.
 
Ironside/Ben Dover said I was supposed to be an expert!! That\'s funny! I don\'t remember getting certified to be a FireBoard expert.
 
The administrator has disabled public write access.  
#47101
Re:Fireboard 1.0.4 Upgrade & Intallation issue 4 Months ago  
grumblemarc wrote:
That is a corrupt zip file. Use another browser to download.

Are you talking to me? I used firefox to dl and then copied to dreamweaver to change tables from jos_ to joom_

is that wrong

then i should just copy and paste all the text to sql file

is that correct?
fendy (User)
Fresh Boarder
Posts: 18
graphgraph
User Offline Click here to see the profile of this user
 
Last Edit: 2008/03/16 15:44 By fendy.
 
Automatic Filter Message : Please follow the forum rules for forum signatures...Thanks
 
The administrator has disabled public write access.  
#47102
Re:Fireboard 1.0.4 Upgrade & Intallation issues 4 Months ago  
I've installed it on Mambo 4.6.2 and everything went okay, but when i try to open it i find an error message
//includes/patTemplate/patTemplate.php) : failed to open stream: No such file or directory in /components/com_fireboard/fireboard.php on line 180

Fatal error: main() : Failed opening required '//includes/patTemplate/patTemplate.php' (include_path='.:/usr/local/lib/php-4.4.7/lib/php' in /components/com_fireboard/fireboard.php on line 180

i've checked the Installion files and i couldn't find such folder or file, also checked my Mambo Folder and i couldn't find such folder or file....

I tried to edit fireboard.php file to forward it to another folder but it didn't work....

So how i fix it....
elbarck (User)
Fresh Boarder
Posts: 2
graphgraph
User Offline Click here to see the profile of this user
 
The administrator has disabled public write access.  
#47103
Re:Fireboard 1.0.4 Upgrade & Intallation issue 4 Months ago  
FB was not made to run on Mambo.

Try this link. FireBoard 1.0.3 Stable for Mambo.
Doesn't look like upgrades are available.
grumblemarc (User)
Platinum Boarder
Posts: 3555
graph
User Offline Click here to see the profile of this user
Gender: Male
 
Last Edit: 2008/03/16 16:04 By grumblemarc.
 
Ironside/Ben Dover said I was supposed to be an expert!! That\'s funny! I don\'t remember getting certified to be a FireBoard expert.
 
The administrator has disabled public write access.  
#47105
Re:Fireboard 1.0.4 Upgrade & Intallation issue 4 Months ago  
fendy wrote:
grumblemarc wrote:
That is a corrupt zip file. Use another browser to download.

Are you talking to me? I used firefox to dl and then copied to dreamweaver to change tables from jos_ to joom_

is that wrong

then i should just copy and paste all the text to sql file

is that correct?


admin please help, I am about to give up on FB, is is too frustrting
fendy (User)
Fresh Boarder
Posts: 18
graphgraph
User Offline Click here to see the profile of this user
 
Automatic Filter Message : Please follow the forum rules for forum signatures...Thanks
 
The administrator has disabled public write access.  
Go to top Post Reply
Powered by FireBoardget the latest posts directly to your desktop