Current time: 03-17-2010, 08:42 PM Hello There, Guest! (LoginRegister)


Post Reply 
 
Thread Rating:
  • 2 Votes - 3 Average
  • 1
  • 2
  • 3
  • 4
  • 5
IPB 1.3.x to MyBB 1.0.x/1.1.x/1.2.x Converter System Beta 3
11-22-2006, 02:02 PM
Post: #41
Smile RE: IPB 1.3.x to MyBB 1.0.x/1.1.x/1.2.x Converter System Beta 3
ok cool

for imported id fields, could remove them affter convertion finish ?

other things :

- add topic's titles of each mybb post.
I know IPB don't include this function. it display only on first post of topic.
I think at that with, for exempe, thrash mod. the moved post haven't got title.

I hope you undestand me...

- imported avatar size. url avatar have imported fine but I can see with normal size (not reduce). and other imported avatar (they are in upload forder) aren't imported.

thanks again Wink

@+
jaja
[Image: mansoncollections_ban.jpg]
Visit this user's website Find all posts by this user
Quote this message in a reply
12-03-2006, 04:42 PM
Post: #42
RE: IPB 1.3.x to MyBB 1.0.x/1.1.x/1.2.x Converter System Beta 3
hi !

sorry again for my bad english...

another problem with member's avatars.

- for linked (from another host) member's avatars => display ok but not rezize.
- for imported avatars => don't disply because the link of avatars is "upload:name.jpg".
the "normal" link is "./uploads/avatars/name.gif"

when the new version come out ?

@+
jaja
[Image: mansoncollections_ban.jpg]
Visit this user's website Find all posts by this user
Quote this message in a reply
12-11-2006, 11:38 PM
Post: #43
RE: IPB 1.3.x to MyBB 1.0.x/1.1.x/1.2.x Converter System Beta 3
hi !

again me about imported polls :

for table mybb_polls, fields :

- numoptions => (maybe) ok
- numvotes => all values are ok. other egal to 0 (zero)
- timeout => some values are egal to 0 (zero). it's ok I think.
- closed => (normal values : yes/no) some values are "no". other egal to nothing (the field is empty)
- multiple => (normal values yes/no) some values are "no". other egal to 0 (zero)
- public => (normal values yes/no) some values are "yes". other egal to 0 (zero)
- importpollid => ??

for mybb_pollvotes, fileds :

- vid => (maybe) ok
- pid => (maybe) ok
- uid => (maybe) ok but if I see uid number. the value is not the same with uid from member table.
- voteoption => egale to 0 (zero) for imported polls. egal to 1 for normal poll
- dateline => egale to 0 (zero) for imported polls.

for imported pols =>

- display of poll are ok. I can see the % of total votes.
- if I wand see results of poll. I have got an error message "Invalid forum".
- If I want vote. I have an error message in french "Le sujet demandé n'existe pas." (the thread don't exist).
because, the thread's link (after redirect) is "mybb/showthread.php?tid=0".
but, if I return to poll, my vote has been add...

I wait next version Wink

@+
jaja
[Image: mansoncollections_ban.jpg]
Visit this user's website Find all posts by this user
Quote this message in a reply
02-10-2007, 01:57 PM
Post: #44
RE: IPB 1.3.x to MyBB 1.0.x/1.1.x/1.2.x Converter System Beta 3
So I've read through the 5 pages of this mod..... sounds interesting, and I take it it is still working and not broken?

Cheers,

Rob

AdSense Forums - All about AdSense. / AdsenseForums.com is proudly powered by MyBB!
Find all posts by this user
Quote this message in a reply
08-07-2007, 12:13 PM
Post: #45
RE: IPB 1.3.x to MyBB 1.0.x/1.1.x/1.2.x Converter System Beta 3
Yes, does this still work?

[Image: banner4.jpg]
MyBB Skin Design, Discussion, and Support
Visit this user's website Find all posts by this user
Quote this message in a reply
08-09-2007, 05:50 PM
Post: #46
RE: IPB 1.3.x to MyBB 1.0.x/1.1.x/1.2.x Converter System Beta 3
Hi,
dont know at the Moment. I personally dont have a mybb on production site. I Wrote this Converter in the Past, to perhaps i can switch to mybb, but mybb have no session system (to give users the ability work without cookies), so i didnt switched. So i don´t worked anymore on the converter in my private time, only for the communiy here and patched some things there and there. The MyBB Team announced a Mybb Converter for some Systems, so i havent any motivation for my converter, when i never had a mybb board on a production site. Perhaps, i can look what a i can do, to work with the newest converter.
Find all posts by this user
Quote this message in a reply
08-09-2007, 05:59 PM
Post: #47
RE: IPB 1.3.x to MyBB 1.0.x/1.1.x/1.2.x Converter System Beta 3
Yes, you should! Im sure MyBB could use your help on their converter. I cant imagine not.

[Image: banner4.jpg]
MyBB Skin Design, Discussion, and Support
Visit this user's website Find all posts by this user
Quote this message in a reply
11-02-2007, 10:59 PM
Post: #48
RE: IPB 1.3.x to MyBB 1.0.x/1.1.x/1.2.x Converter System Beta 3
hi !!

I come back but not a long time.... because, I more go to french mybb french support Wink

the converter work fine but it's not perfect. you must repair more thing after the convertion...

my mybb forum works fine Toungue

@+
jaja
[Image: mansoncollections_ban.jpg]
Visit this user's website Find all posts by this user
Quote this message in a reply
12-24-2008, 06:25 PM (This post was last modified: 12-24-2008 09:28 PM by =Mike=.)
Post: #49
RE: IPB 1.3.x to MyBB 1.0.x/1.1.x/1.2.x Converter System Beta 3
Just used this on an old IPB install 1.3.1
Issues to fix before starting:
1) The config for MyBB must have changed.
So every instance of
PHP Code:
$config[hostname
needed to be replaced with
PHP Code:
$config['database']['hostname'
instead. You'll find this:

PHP Code:
$mybb_db mysql_connect($config[hostname], $config[username], $config[password], true);
    
mysql_select_db($config[database], $mybb_db); 

needs to be this:
PHP Code:
$mybb_db mysql_connect($config['database']['hostname'], $config['database']['username'], $config['database']['password'], true);
    
mysql_select_db($config['database']['database'], $mybb_db); 

Ten instances required changing like that, but also 40 instances of
PHP Code:
$config[table_prefix
to
PHP Code:
$config['database']['table_prefix'

Another change required was in the usergroups. There is no "canaddpublicevent" and "canaddprivateevent" within the database, so remove one of them (I got rid of public event) and altered "canaddprivateevent" to "canaddevent" (just do a search on the file).

After that the script ran fine.

Not had a chance to go over it yet, but so far nothing shows in the forums - so will investigate and see if I cannot locate the source of errors.

Hmm, seems to be a series of errors. Incorrectly set permissions for "open" and "active" on all forums, let alone user permissions which mean anyone could see admin sections.
However, whilst the overview shows the forum correctly, trying to go into any forum/category renders an "invalid forum" message.

Hmm Big Grin

Permissions and others are norked by import.
Firstly:
PHP Code:
UPDATE `mybb_forumsSET `active` = 1, `open` = 1 WHERE 1 

By default, after import, no forums were visible.
Then parent id's were wrong.
PHP Code:
UPDATE `mybb_forumsSET `parentlist` = `fidWHERE type 'c' 
That's correcting the parentlist to be the forum id if it's a category.
The problem is then sub forums parentslist, which this may not be the most efficient way - but it works
PHP Code:
UPDATE mybb_forums as frmybb_forums as t SET fr.parentlist CONCAT_WS(',',t.parentlist,fr.fidWHERE fr.fid != AND fr.pid t.fid 
That sorts out the parents listings for non categories (can use fr.type != 'c' instead of fr.fid != 0).
Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump: