Forums

Join
bbPress Support ForumsInstallationImport phpBB posts into bbPress?

Info

Tags

Import phpBB posts into bbPress?

  1. Hi all,

    Is there an easy way to import a phpBB forum into bbPress?

    Thanks!

  2. Not yet, from what I can gather. But hopefully someone will work on an importer script soon.

  3. You might want to follow this thread maybe? ;)
    http://bbpress.org/forums/topic/3?replies=6

    spencerp

  4. Have a look at this: http://bbpress.org/forums/topic/402

  5. Watch out! I think this script by jaim3 sends all your emails to spammers!

  6. I have looked over the code of this plugin and it doesn't send your email to spammers. Jaim3 even put this in the code:

        // DISCLAIMER: This is a joke
        echo "<li><h3>Sending all your database e-mails to all major world-wide spam sending mafias...</h3></li>";

    If someone else wants to look to confirm, but it does what it is intended to as far as I am concerned.

    Trent

  7. PHEW! I'm so sorry. I so nieve with such things. Thanks for the check thru.

  8. Does anybody know if this script is supposed to work with the latest release of bbpress (.8)? I ran into some problems importing some of the tables.

    Thanks, Len

  9. That is a good question. I have yet to test it on the most recent version of bbPress. I guess if nothing else you can run it on an install of 0.74 and get it working and then upgrade bbPress to 0.8 afterwards if nothing else. What were the errors?

    Trent

  10. Trent -

    I'll post the errors when I get home tonight. I think that it probably had to do with changes in the database, if I remember correctly I think it was with the "topic resolved" field?

    Len

  11. The support forum functions were removed with 0.8 and so10 placed these functions into a plugin. I am sure there is only a few small changes that will not take very long.

    Trent

  12. Yes, I encountered this problem last night. I had to manually add the topic_resolved field to the bb_topics table then it worked fine.

    other than that - superb script - worked a treat - thanks very much!!

    ebo

  13. I read through all this here are my errors:

    1.Connected to the phpBB database host
    2.Selected the phpBB database
    3.Exporting forums...
    4.Exporting users...
    5.Exporting user metadata...
    
    Warning: mysql_fetch_object(): supplied argument is not a valid MySQL result resource in /home/singer/public_html/phpbb2bbpress.php on line 920
    
    6.Exporting topics...
    
    Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 33030274 bytes) in /home/singer/public_html/phpbb2bbpress.php on line 373

    How do I increase my allowed memory? That should resolve # 6

    What supplied argument is invalid??

    I appreciate the assistance.

  14. I got the memory increased - php.ini

    BTW - On a single site you can create / edit .htaccess and add

    php_value memory_limit 64M (or whatever)

    Still having trouble with the supplied argument?

  15. 915     function phpbb_username($id) {
    916       global $phpbb_tables;
    917       $sql = "SELECT username FROM " . $phpbb_tables['users'] . " WHERE user_id=$id";
    918       $result = mysql_query($sql);
    919       if ($row = mysql_fetch_object($result)){
    920         return $row->username;
    921       } else {
    922         return false;
    923       }
    924      }

    What am I missing??

  16. I have an old phpbb forum till i found the flexibility of bbpress. I ever wanted to transfer my phpbb database to bbpress but i'm always no luck and really findit hard to do. Or is it me because i'm new into programming.

  17. You must log in to post.