Plugin Directory

Changeset 472998


Ignore:
Timestamp:
12/09/2011 11:58:59 PM (14 years ago)
Author:
anointed
Message:

Updated Version # on all files
Added phpBB converter
Started punBB converter

Location:
bbconverter/trunk
Files:
2 added
9 edited

Legend:

Unmodified
Added
Removed
  • bbconverter/trunk/bbc-convert/Example.php

    r472197 r472998  
    55Description: Convert Example forum software into bbpress.
    66Author: Adam Ellis
    7 Version: 1.2
     7Version: 1.3
    88Author URI: http://www.bbconverter.com/
    99*/
  • bbconverter/trunk/bbc-convert/Invision.php

    r472197 r472998  
    55Description: Convert Invision Power Board forum software into bbpress.
    66Author: Adam Ellis
    7 Version: 1.2
     7Version: 1.3
    88Author URI: http://www.bbconverter.com/
    99*/
  • bbconverter/trunk/bbc-convert/Standalonebbpress.php

    r472197 r472998  
    55Description: Convert bbPress Stand Alone forum software into bbpress plugin.
    66Author: Adam Ellis
    7 Version: 1.2
     7Version: 1.3
    88Author URI: http://www.bbconverter.com/
    99*/
     
    201201        $this->field_map[] = array(
    202202            'from_tablename' => 'posts', 'from_fieldname' => 'poster_ip',
    203             'to_type' => 'reply', 'to_fieldname' => '__bbc_author_ip'
     203            'to_type' => 'reply', 'to_fieldname' => '_bbp_author_ip'
    204204        ); 
    205205           
  • bbconverter/trunk/bbc-convert/Vbulletin.php

    r472197 r472998  
    55Description: Convert vBulletin forum software into bbpress.
    66Author: Adam Ellis
    7 Version: 1.2
     7Version: 1.3
    88Author URI: http://www.bbconverter.com/
    99*/
  • bbconverter/trunk/bbc-convert/Xenforo_Not_Complete.php

    r444891 r472998  
    55Description: Convert Xenforo forum software into bbpress.
    66Author: Adam Ellis
    7 Version: 1.1
     7Version: 1.3
    88Author URI: http://www.bbconverter.com/
    99*/
  • bbconverter/trunk/bbc-includes/bbc-converter-class.php

    r472197 r472998  
    55Description: bbConverter Class
    66Author: Adam Ellis
    7 Version: 1.2
     7Version: 1.3
    88Author URI: http://www.bbconverter.com/
    99*/
     
    441441                                $post_id = wp_insert_post( $insert_post );
    442442                                if( is_numeric( $post_id ) )
    443                                 {                      
     443                                {       
    444444                                    foreach( $insert_postmeta as $key => $value )
    445445                                    {
     
    498498        if( $this->sync_table === true )
    499499        {
    500             $bbconverter = $this->wpdb->get_results( 'SELECT value_id FROM ' . $this->sync_table_name . ' INNER JOIN ' . $this->wpdb->posts . ' ON(value_id = ID)WHERE meta_key LIKE "_bbc_%" AND value_type = "post" GROUP BY value_id ORDER BY value_id DESC LIMIT ' . $this->max_rows, ARRAY_A );
     500            $bbconverter = $this->wpdb->get_results( 'SELECT value_id FROM ' . $this->sync_table_name . ' INNER JOIN ' . $this->wpdb->posts . ' ON(value_id = ID) WHERE meta_key LIKE "_bbc_%" AND value_type = "post" GROUP BY value_id ORDER BY value_id DESC LIMIT ' . $this->max_rows, ARRAY_A );
    501501        }
    502502        else
    503503        {
    504             $bbconverter = $this->wpdb->get_results( 'SELECT post_id as value_id FROM ' . $this->wpdb->postmeta . ' WHERE meta_key LIKE "_bbc_%" GROUP BY post_id ORDER BY post_id DESC LIMIT ' . $this->max_rows, ARRAY_A );
     504            $bbconverter = $this->wpdb->get_results( 'SELECT post_id AS value_id FROM ' . $this->wpdb->postmeta . ' WHERE meta_key LIKE "_bbc_%" GROUP BY post_id ORDER BY post_id DESC LIMIT ' . $this->max_rows, ARRAY_A );
    505505        }
    506506       
     
    522522        else
    523523        {
    524             $bbconverter = $this->wpdb->get_results( 'SELECT user_id as value_id FROM ' . $this->wpdb->usermeta . ' WHERE meta_key = "_bbc_user_id" LIMIT ' . $this->max_rows, ARRAY_A );
     524            $bbconverter = $this->wpdb->get_results( 'SELECT user_id AS value_id FROM ' . $this->wpdb->usermeta . ' WHERE meta_key = "_bbc_user_id" LIMIT ' . $this->max_rows, ARRAY_A );
    525525        }
    526526       
  • bbconverter/trunk/bbc-includes/bbc-settings.php

    r472197 r472998  
    55Description: bbConverter Admin Settings
    66Author: Adam Ellis
    7 Version: 1.2
     7Version: 1.3
    88Author URI: http://www.bbconverter.com/
    99*/
  • bbconverter/trunk/bbconverter.php

    r472197 r472998  
    55Description: bbConverter is a system that allows you to convert from many different forum software into bbpress.
    66Author: Adam Ellis
    7 Version: 1.2
     7Version: 1.3
    88Author URI: http://www.bbconverter.com/
    99*/
  • bbconverter/trunk/readme.txt

    r472199 r472998  
    55Requires at least: 3.3
    66Tested up to: 3.3
    7 Stable tag: 1.2
     7Stable tag: 1.3
    88
    99bbConverter is used to convert other forums to the new bbPress 2x plugin.
     
    4949== Changelog ==
    5050
     51= 1.3 =
     52* Added phpBB Conversion
     53
    5154= 1.2 =
    52 * Fixed Cleaning slow down.
    53 * Much Faster importing now if mysql table editing is available.
    54 * Fixed duplicate first post/reply on topics
     55* Fixed Cleaning slow down
     56* Much Faster importing now if mysql table editing is available
     57* Fixed duplicate first post/replay on topics
    5558* Fixed Issue with Different charset from UTF-8
    5659* Added more info messages
    5760
    5861= 1.1 =
    59 * VBulletin 3x and 4x support added.
     62* VBulletin 3x and 4x support added
    6063
    6164= 1.05 =
     
    6770== Upgrade Notice ==
    6871
    69 = 1.2 =
    70 Much faster now highly recomend updating.
     72= 1.3 =
     73Added support for phpBB and punBB soon to follow
Note: See TracChangeset for help on using the changeset viewer.