Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 2.x > vBulletin 2.x Full Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Details »»

Version: , by Nebula Nebula is offline
Developer Last Online: Dec 2009 Show Printable Version Email this Page

Version: 2.2.x Rating:
Released: 06-22-2001 Last Update: Never Installs: 143
 
No support by the author.

UPDATE: Please make sure to read the last posts. The beginning of the thread is kinda old, so please don't think this is how it works. Read the last posts.

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

Hello. This is my first time posting here, so I hope I make a good first impression

Anyways...I just finished my phpBB 1.4.0 Convertor Utility, allthough I don't have an actual phpBB 1.4.0 DB to test it on. All I did was use a DB with 2 forums, one topic, and one post . Anyways, if you have phpBB 1.4.0, or any other kind of phpBB (Convert it to 1.4.0, of course ), please please help me test this.

If you find an error or some way of crashing or messing up the process, please tell me what happened. Also, if you could send me a copy of the database you are using, that would be greatly appreciated. Please don't think I'll steal your PWs, because they are MD5 encoded.

Known Bugs:
  • Does not make private forums private while converting

When it is converting, all the user passwords are changed to a different md5-encoded string. I plan to change this later.

I know it isn't very user friendly. Also, please don't take any part of this code without my permission. I worked really hard on it. Thanks a bunch.

Please post anything you have to say about this below.

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #92  
Old 08-18-2001, 09:34 AM
jyr
Guest
 
Posts: n/a
Default

Hi Ced,
I had make the update of counter in the good order (Users, then Threads, and then Forums), and the problem can't comes from this point.
If you say that all is correct for you, i dont understand where the corruption come from in my importation ???
I check more for a mistake in my configuration and i post when i have found something...
Nebula, forget my last post, the mixing problem is in my database or in my brain...sorry !
Reply With Quote
  #93  
Old 08-18-2001, 10:55 AM
Nebula's Avatar
Nebula Nebula is offline
 
Join Date: Dec 2001
Location: Michigan, USA
Posts: 160
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well...I'm somewhat confused ced. Is the problem my script or your database? It sounded like it was the scripts problem, but then I thought you said it was your database's problem. I'm confused. Just let me know if it is my script's problem, or your databases problem. Also, if it is a problem with my script, please send me a copy of your phpBB database, or a link to your phpMyAdmin so I can get it that way. Also, I DO compare the original phpBB and the imported vBulletin side-by-side.

I'm at my grandparents house, so I can't really make an update, as I don't really have any FTP clients or anything, and they don't want me to clutter up their computer.

Be home hopefully tonight or tomorrow night!
Reply With Quote
  #94  
Old 08-18-2001, 11:28 AM
jyr
Guest
 
Posts: n/a
Default

Hi Nebula,
CED have a good result with your script and me, JYR i have some mixte...we are 2 differents posters with 2 differents result ! lol
Reply With Quote
  #95  
Old 08-18-2001, 11:55 AM
pocketmovies
Guest
 
Posts: n/a
Default

Hi !

first thanks Nebula for enabeling me to go to vBulletin from my old phpBB

I used to make it with one of the first versions of your script.
After some "Find & Replace" on the similies stuff in vi I came accross the difficulty of all links + bbcode stuff...

So I've made a little script of mine to do this using a modified html2bb (found in admin/bbimport.php)

Here the modified I've used to get all these nasty <! BBCodes ... and other into nice vB style codes

Hope this can help some of you.

Now I've a clean forum
Reply With Quote
  #96  
Old 08-18-2001, 02:09 PM
Nebula's Avatar
Nebula Nebula is offline
 
Join Date: Dec 2001
Location: Michigan, USA
Posts: 160
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hmm...that's really good. I was actually thinking of making something like that, just because that function doesn't work well with phpBB code. Thanks a bunch!

Actually, I think I'm gonna make my own code for this, just because that uses a lot of str_replaces. I was thinking about just removing everything in the posts between (< !--)s. Anyways, thanks tho...that has a bunch of good ideas in there. I will base many of my ideas on it.

Thank you bunches tho!!
Reply With Quote
  #97  
Old 08-18-2001, 04:24 PM
pocketmovies
Guest
 
Posts: n/a
Default

Glad you like it

The smilies part (beginning of the file) is not correct for phpBB as these guys stored a href to images directely

But someting like :

Code:
$htmlcode=eregi_replace("<IMG SRC=\".*smile.gif\" border=\"0\">",":)",$htmlcode);
might do the job pretty well
Reply With Quote
  #98  
Old 08-18-2001, 06:31 PM
ced
Guest
 
Posts: n/a
Default

I converted my phpBB forum fine, but i have a minor problem...
No email has been sent to users :-\
I removed the comment in the converter just before
echo "<p>Users imported sucessfully.</p>";
$action = "mailusers";
$action = "forums";

How can i mass email their passwords to my members?
Reply With Quote
  #99  
Old 08-18-2001, 06:46 PM
ced
Guest
 
Posts: n/a
Default

Another minor problem:
How to remove all useless slash in posts in phpmyadmin ?
like: it\'s me
Reply With Quote
  #100  
Old 08-18-2001, 08:19 PM
Nebula's Avatar
Nebula Nebula is offline
 
Join Date: Dec 2001
Location: Michigan, USA
Posts: 160
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hmm...as to the mass mail not working...if you look at the 2 lines:

PHP Code:
$action "mailusers";
$action "forums"
You'll notice that the $action = "forums"; is rewriting the $action variable so that it will no longer mail the users, but go to the forums. So remove the $action = "forums"; line. Also, please do not run this version. It is not complete. Do not use it for your final import. The final version you will obtain from JelSoft (hopefully ).

As to the \'slash\' problems...I do not know what is wrong with that. I'll look into it, but I am not sure what you are talking about.

Also, expect a new release very soon that has much improved HTML2BB decoding.
Reply With Quote
  #101  
Old 08-19-2001, 01:19 AM
DarkReaper DarkReaper is offline
 
Join Date: Oct 2001
Posts: 429
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Why don't you edit the first post so it always has the latest version? This would make things much easier for everyone.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 05:54 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04368 seconds
  • Memory Usage 2,295KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)bbcode_code
  • (1)bbcode_php
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (5)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete