Changeset 472998
- Timestamp:
- 12/09/2011 11:58:59 PM (14 years ago)
- Location:
- bbconverter/trunk
- Files:
-
- 2 added
- 9 edited
-
bbc-convert/Example.php (modified) (1 diff)
-
bbc-convert/Invision.php (modified) (1 diff)
-
bbc-convert/Phpbb.php (added)
-
bbc-convert/Punbb_NOT_COMPLETE.php (added)
-
bbc-convert/Standalonebbpress.php (modified) (2 diffs)
-
bbc-convert/Vbulletin.php (modified) (1 diff)
-
bbc-convert/Xenforo_Not_Complete.php (modified) (1 diff)
-
bbc-includes/bbc-converter-class.php (modified) (4 diffs)
-
bbc-includes/bbc-settings.php (modified) (1 diff)
-
bbconverter.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bbconverter/trunk/bbc-convert/Example.php
r472197 r472998 5 5 Description: Convert Example forum software into bbpress. 6 6 Author: Adam Ellis 7 Version: 1. 27 Version: 1.3 8 8 Author URI: http://www.bbconverter.com/ 9 9 */ -
bbconverter/trunk/bbc-convert/Invision.php
r472197 r472998 5 5 Description: Convert Invision Power Board forum software into bbpress. 6 6 Author: Adam Ellis 7 Version: 1. 27 Version: 1.3 8 8 Author URI: http://www.bbconverter.com/ 9 9 */ -
bbconverter/trunk/bbc-convert/Standalonebbpress.php
r472197 r472998 5 5 Description: Convert bbPress Stand Alone forum software into bbpress plugin. 6 6 Author: Adam Ellis 7 Version: 1. 27 Version: 1.3 8 8 Author URI: http://www.bbconverter.com/ 9 9 */ … … 201 201 $this->field_map[] = array( 202 202 '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' 204 204 ); 205 205 -
bbconverter/trunk/bbc-convert/Vbulletin.php
r472197 r472998 5 5 Description: Convert vBulletin forum software into bbpress. 6 6 Author: Adam Ellis 7 Version: 1. 27 Version: 1.3 8 8 Author URI: http://www.bbconverter.com/ 9 9 */ -
bbconverter/trunk/bbc-convert/Xenforo_Not_Complete.php
r444891 r472998 5 5 Description: Convert Xenforo forum software into bbpress. 6 6 Author: Adam Ellis 7 Version: 1. 17 Version: 1.3 8 8 Author URI: http://www.bbconverter.com/ 9 9 */ -
bbconverter/trunk/bbc-includes/bbc-converter-class.php
r472197 r472998 5 5 Description: bbConverter Class 6 6 Author: Adam Ellis 7 Version: 1. 27 Version: 1.3 8 8 Author URI: http://www.bbconverter.com/ 9 9 */ … … 441 441 $post_id = wp_insert_post( $insert_post ); 442 442 if( is_numeric( $post_id ) ) 443 { 443 { 444 444 foreach( $insert_postmeta as $key => $value ) 445 445 { … … 498 498 if( $this->sync_table === true ) 499 499 { 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 ); 501 501 } 502 502 else 503 503 { 504 $bbconverter = $this->wpdb->get_results( 'SELECT post_id asvalue_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 ); 505 505 } 506 506 … … 522 522 else 523 523 { 524 $bbconverter = $this->wpdb->get_results( 'SELECT user_id asvalue_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 ); 525 525 } 526 526 -
bbconverter/trunk/bbc-includes/bbc-settings.php
r472197 r472998 5 5 Description: bbConverter Admin Settings 6 6 Author: Adam Ellis 7 Version: 1. 27 Version: 1.3 8 8 Author URI: http://www.bbconverter.com/ 9 9 */ -
bbconverter/trunk/bbconverter.php
r472197 r472998 5 5 Description: bbConverter is a system that allows you to convert from many different forum software into bbpress. 6 6 Author: Adam Ellis 7 Version: 1. 27 Version: 1.3 8 8 Author URI: http://www.bbconverter.com/ 9 9 */ -
bbconverter/trunk/readme.txt
r472199 r472998 5 5 Requires at least: 3.3 6 6 Tested up to: 3.3 7 Stable tag: 1. 27 Stable tag: 1.3 8 8 9 9 bbConverter is used to convert other forums to the new bbPress 2x plugin. … … 49 49 == Changelog == 50 50 51 = 1.3 = 52 * Added phpBB Conversion 53 51 54 = 1.2 = 52 * Fixed Cleaning slow down .53 * Much Faster importing now if mysql table editing is available .54 * Fixed duplicate first post/repl y on topics55 * Fixed Cleaning slow down 56 * Much Faster importing now if mysql table editing is available 57 * Fixed duplicate first post/replay on topics 55 58 * Fixed Issue with Different charset from UTF-8 56 59 * Added more info messages 57 60 58 61 = 1.1 = 59 * VBulletin 3x and 4x support added .62 * VBulletin 3x and 4x support added 60 63 61 64 = 1.05 = … … 67 70 == Upgrade Notice == 68 71 69 = 1. 2=70 Much faster now highly recomend updating. 72 = 1.3 = 73 Added support for phpBB and punBB soon to follow
Note: See TracChangeset
for help on using the changeset viewer.