Like us!

Joomla!™ Disclaimer

Joomla!™ is a registered trademark of Open Source Matters.
Tekdi Web Solutions, tekdi.net and techjoomla.com are not affiliated to Joomla!, Open Source Matters or any of its subsidiaries.

Home Support Forum
Welcome, Guest
Please Login or Register.    Lost Password?
Go to bottomPage: 12
TOPIC: There is an ERROR in Fireboard ETL plugins
#168
There is an ERROR in Fireboard ETL plugins 2 Years, 5 Months ago Karma: 1
the table

"fb_attacthments.php"

is incorrectly named - it should be

"fb_attachments.php"


and the file contents also contain the same typo error several times.

Installing this plug-in file as-is will cause com_migrator to be unable to list the plugins.

Steps to take to fix this:

1 - rename

"fb_attacthments.php" as "fb_attachments.php"

2a - download the attached file, and upload it, OR
2b - correct the contents of the file yourself, using this corrected text:

-first, open the file in a text editor
-then delete the entire file contents, and replace with this script, instead.

ALL this does is correct the spelling error for fb_attachments.php

<?php
/**
* FireBoard Migrator Plugins
* TWS Intership Mini Project 1
* www.tekdi.net
**/

/**
* FireBoard ETL plugin
*/
class fb_attachments_ETL extends ETLPlugin
{
/**
* Returns the name of the plugin
*/
function getName()

{
return "FireBoard fb_attachments ETL Plugin";
}

/**
* Returns the table that this plugin transforms
*/
function getAssociatedTable()

{
return 'fb_attachments';
}

/**
* Generates any SQL statements that need to be completed before the rows are generated
*/
function getSQLPrologue()
{
$ret = <<<EOT

CREATE TABLE IF NOT EXISTS `jos_fb_attachments` (
`mesid` int(11) NOT NULL default '0',
`filelocation` text NOT NULL,
KEY `mesid` (`mesid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;


EOT;
return $ret;
}

}

---------------------------------

3 - save the corrected file

4 - upload the corrected file along with the remaining "fb_xxxxxx.php files" from the "fireboard_migrator_plugins_v1.0" folder. I did not experience any other issued with the fieboard ETL plugins

5 - you are uploading the file to:
/your_joomla_site/administrator/components/com_migrator/plugins/

6 - use FTP, check file permissions when finished uploading.

I've attached the file, if you prefer to not edit the file yourself.


Hope this helps - dagnome

File Attachment:
File Name: fb_attachments.zip
File Size: 979
dagnome
Fresh Boarder
Posts: 1
graphgraph
User Offline Click here to see the profile of this user
Last Edit: 2009/08/28 14:52 By dagnome.
The administrator has disabled public write access.
 
#175
Re:There is an ERROR in Fireboard ETL plugins 2 Years, 5 Months ago Karma: 0
Hi,

We will have look into fb_attachments.php. Thanks for submitting edited file too. We appreciate your efforts.

Regards.
arjun
Admin
Posts: 45
graphgraph
User Offline Click here to see the profile of this user
The administrator has disabled public write access.
 
#189
Re:There is an ERROR in Fireboard ETL plugins 2 Years, 4 Months ago Karma: 0
I can´t install plugin. How to install it Please?

The error is that can´t find uninstall xml file.
joomlamigration
Fresh Boarder
Posts: 1
graphgraph
User Offline Click here to see the profile of this user
The administrator has disabled public write access.
 
#209
Re:There is an ERROR in Fireboard ETL plugins 2 Years, 4 Months ago Karma: 0
Getting the same error here. There isn't an XML file included so it can't be installed as a component.

1) How do you use this migrator plugin for Fireboard?

2) Is it compatible with Kunena?
gsbe
Fresh Boarder
Posts: 1
graphgraph
User Offline Click here to see the profile of this user
The administrator has disabled public write access.
 
#1169
Good bikes for you 1 Year, 9 Months ago  
Bikesanss

The administrator has disabled public write access.
 
#1449
Re:There is an ERROR in Fireboard ETL plugins 1 Year, 2 Months ago Karma: 0
gsbe wrote:
[quote]Getting the same error here. There isn't an XML file included so it can't be installed as a component.

1) How do you use this migrator plugin for Fireboard?



I have the same problem
london
Fresh Boarder
Posts: 1
graphgraph
User Offline Click here to see the profile of this user
The administrator has disabled public write access.
 
Go to topPage: 12
Moderators: himangi