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:>>>>phpBB2 to Fireboard - Yes IT w (1 viewing) (1) Guest
Go to bottom Favoured: 0
TOPIC: Re:>>>>phpBB2 to Fireboard - Yes IT w
#32373
>>>>phpBB2 to Fireboard - Yes IT w 12 Months ago  
After looking for weeks trying to fix it myself. I Hired a PHP programmer from "www.scriptlance.com" to fix the one found on this forum. Set me $75 USD but it was worth it.

Here is the conversion details from my test forum.

[code:1]Importing data from phpBB2
Connecting to Database... OK
Populating Categories... OK
Populating Messages Table... OK
Populating Messages_Text Table... OK
Populating Users Table... omsakthi: 63 - NEW sakthi_yugam: 64 - NEW Thiruma: 65 - NEW Sakthi: 66 - NEW Thumby: 67 - NEW Gauthamy: 68 - NEW Amman disciple: 69 - NEW OhmSakthi: 70 - NEW suren: 71 - NEW Sutha!!: 72 - NEW sakthi_01: 73 - NEW Sangi: 74 - NEW Sakthi Mayam: 75 - NEW Adharvana Pathirakali: 76 - NEW thondan: 77 - NEW sakthiademi: 78 - NEW SakthiPraba: 79 - NEW anukaruna: 80 - NEW Sakthi.B: 81 - NEW Gurudhasan: 82 - NEW sakthivel_dv: 83 - NEW sakthiveldv: 84 - NEW rajan: 85 - NEW kkiree: 86 - NEW harish: 87 - NEW sakthisarguna: 88 - NEW sakthiom: 89 - NEW aanma: 90 - NEW toxic_forever: 91 - NEW balanarayan: 92 - NEW K. Sankarapapavinasam: 93 - NEW Rameshsx: 94 - NEW puven85: 95 - NEW Prema: 96 - NEW sakthidaasan: 97 - NEW Gayathri: 98 - NEW RaM.A.kA.Me =D: 99 - NEW neetha: 100 - NEW sakthi_oli: 101 - NEW jaya_srikanth: 102 - NEW aishkumar: 103 - NEW sakthinagaraj: 104 - NEW Rajaram: 105 - NEW dattaswami: 106 - NEW ramadurai: 107 - NEW JOTHI: 108 - NEW srigowri: 109 - NEW amir: 110 - NEW rumeskanna: 111 - NEW viji: 112 - NEW Sakthi vijaya kumar.B: 113 - NEW OK
Complete...[/code:1]

Keep in mind that both Joomla & PHPBB2 tables need to be in the Same database.
Open up the attached php file. And fill in the details. AND ENJOY

-------------Config---------------------*/

//MySQL Database host - usually 'localhost'
$host='localhost';

//MySQL Database user
$user='root';

//MySQL Database password
$pass='enter password here';

//MySQL Database name
$db='enter username here';

// Mambo database prefix
$mosConfig_dbprefix = "jos_";

// phpBB2 database prefix
$phpbb_dbprefix = "phpbb_";

/* ---------------------------------------*/
kangt7 (User)
Junior Boarder
Posts: 24
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2007/11/27 00:12 By kangt7.
 
The administrator has disabled public write access.  
#32376
Re:>>>>phpBB2 to Fireboard - Yes IT w 12 Months ago  
LoL...I forgot to attach it!

Here it is
File Attachment:
File Name: phpbb2fb-28fd40c4226b68488a0ad611ec944798.zip
File Size: 4078
kangt7 (User)
Junior Boarder
Posts: 24
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#32380
Re:>>>>phpBB2 to Fireboard - Yes IT w 12 Months ago  
Nice, kangt7. Thank you for sharing!!!!
xCav8r (User)
Junior Boarder
Posts: 26
graphgraph
User Offline Click here to see the profile of this user
Gender: Male xcav8r@hotmail.com Location: Minneapolis, Minnesota, USA
Logged Logged
 
The administrator has disabled public write access.  
#32455
Re:>>>>phpBB2 to Fireboard - Yes IT w 12 Months ago  
crap.. I get;

Connecting to Database... OK
Populating Categories... OK
Populating Messages Table... OK
Populating Messages_Text Table... OK
Populating Users Table...
Invalid query:
SELECT id FROM jos_core_acl_aro_groups WHERE name='Registered' OR name='Administrator' ORDER BY name ASC
Unknown column 'id' in 'field list'
symbiot (User)
Junior Boarder
Posts: 29
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#32463
Re:>>>>phpBB2 to Fireboard - Yes IT w 12 Months ago  
Hi.
well. . it imported phpbb even though there is an error..

but what about images.. I have an imagegallery where users can upload images to use in their posts..
how can I migrate those?

sorry for the apparent diffucult question.
symbiot (User)
Junior Boarder
Posts: 29
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#32465
Re:>>>>phpBB2 to Fireboard - Yes IT 12 Months ago  
Edit:
I don't think the scripts take into account any SMF add-ons. Might wanna hit up Scriptlance.
grumblemarc (User)
Platinum Boarder
Posts: 3559
graph
User Offline Click here to see the profile of this user
Gender: Male
Logged Logged
 
Last Edit: 2007/11/27 23:06 By grumblemarc.
 
The administrator has disabled public write access.  
#32480
Re:>>>>phpBB2 to Fireboard - Yes IT 12 Months ago  
symbiot wrote:
crap.. I get;

Connecting to Database... OK
Populating Categories... OK
Populating Messages Table... OK
Populating Messages_Text Table... OK
Populating Users Table...
Invalid query:
SELECT id FROM jos_core_acl_aro_groups WHERE name='Registered' OR name='Administrator' ORDER BY name ASC
Unknown column 'id' in 'field list'


I believe this should be group_id. See below.

[code:1]#
# Table structure for table `#__core_acl_aro_groups`
#
CREATE TABLE `#__core_acl_aro_groups` (
`group_id` int(11) NOT NULL auto_increment,
`parent_id` int(11) NOT NULL default '0',
`name` varchar(255) NOT NULL default '',
`lft` int(11) NOT NULL default '0',
`rgt` int(11) NOT NULL default '0',
PRIMARY KEY (`group_id`),
KEY `parent_id_aro_groups` (`parent_id`),
KEY `#__gacl_parent_id_aro_groups` (`parent_id`),
KEY `#__gacl_lft_rgt_aro_groups` (`lft`,`rgt`)
) TYPE=MyISAM;[/code:1]
xCav8r (User)
Junior Boarder
Posts: 26
graphgraph
User Offline Click here to see the profile of this user
Gender: Male xcav8r@hotmail.com Location: Minneapolis, Minnesota, USA
Logged Logged
 
Last Edit: 2007/11/27 23:58 By xCav8r.
 
The administrator has disabled public write access.  
#32481
Re:>>>>phpBB2 to Fireboard - Yes IT 12 Months ago  
symbiot wrote:
Hi.
well. . it imported phpbb even though there is an error..

but what about images.. I have an imagegallery where users can upload images to use in their posts..
how can I migrate those?

sorry for the apparent diffucult question.


This must be from a mod. I don't see anything in my standard phpbb tables that point to images outside of phpbb_ranks and phpbb_smilies.
xCav8r (User)
Junior Boarder
Posts: 26
graphgraph
User Offline Click here to see the profile of this user
Gender: Male xcav8r@hotmail.com Location: Minneapolis, Minnesota, USA
Logged Logged
 
Last Edit: 2007/11/27 23:57 By xCav8r.
 
The administrator has disabled public write access.  
#32491
Re:>>>>phpBB2 to Fireboard - Yes IT 12 Months ago  
Hey,

I've tested it twice it works perfectly!
I cant see why it doesn't work for you guys....
kangt7 (User)
Junior Boarder
Posts: 24
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
The administrator has disabled public write access.  
#32492
Re:>>>>phpBB2 to Fireboard - Yes IT 12 Months ago  
These are the steps i followed.
my phpBB2 & Joomla Tables are in different databases. so...

1) I dumped the phpBB2 tables on to my comp.
2) installed Joomla on another database.
3) imported the phpBB2 tables in to the joomla database
4) installed fireboard.
5) Ran the script.

I'm running phpBB2 with "Extreme styles Mod" I wonder if that makes a difference.

I Gave the guy from "www.scriptlance.com" access to my databases and he pretty much made it for me within 12 hours.
kangt7 (User)
Junior Boarder
Posts: 24
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2007/11/28 03:01 By kangt7.
 
The administrator has disabled public write access.  
Go to top