Changeset 656976
- Timestamp:
- 01/22/2013 04:21:30 PM (13 years ago)
- Location:
- aeiou
- Files:
-
- 2 edited
- 5 copied
-
tags/0.6 (copied) (copied from aeiou/trunk)
-
tags/0.6/index.php (copied) (copied from aeiou/trunk/index.php) (6 diffs)
-
tags/0.6/languages (copied) (copied from aeiou/trunk/languages)
-
tags/0.6/parsers.php (copied) (copied from aeiou/trunk/parsers.php)
-
tags/0.6/readme.txt (copied) (copied from aeiou/trunk/readme.txt) (3 diffs)
-
trunk/index.php (modified) (6 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
aeiou/tags/0.6/index.php
r656366 r656976 5 5 Description: AEIOU is a powerfull plugin that export all wordpress users info into an XML file including user metadatas and allow to import the same xml file into a new wordpress keeping the metadata of each user. The plugin is able to export buddypress xprofile data too. 6 6 Author: toSend.it di Luisa Marra 7 Version: 0. 57 Version: 0.6 8 8 Author URI: http://tosend.it 9 9 */ … … 30 30 31 31 $verbose = $verbose && self::$instance->verbose; 32 if($verbose ){32 if($verbose && self::$instance->verbose || !$verbose && !self::$instance->verbose){ 33 33 echo($data); 34 34 } … … 112 112 } 113 113 if( class_exists('BuddyPress') ){ 114 if(class_exists('BP_XProfile_Group') && $this->exportXProfile ){ 114 115 if(class_exists('BP_XProfile_Component') && $this->exportXProfile ){ 115 116 /* 116 117 * I should export xprofile data too. … … 513 514 }else{ 514 515 $this->outputLog( __("skipped due it's already in the database", self::LANG_DOMAIN) . "\n" ); 516 $userID = $usr->ID; 515 517 } 516 518 } … … 557 559 558 560 if(empty($metaKey[0])) $metaKey = false; 559 $value = maybe_unserialize($value);560 561 if(!$metaKey || $this->exists=='replace'){ 562 $value = maybe_unserialize($value); 561 563 delete_user_meta($userID, $key); 562 564 if( !empty( $value ) ){ … … 591 593 592 594 $optExists = !empty($option); 593 $ option = maybe_unserialize($option);595 $value = maybe_unserialize($value); 594 596 595 597 if(!$optExists || $this->exists=='replace'){ -
aeiou/tags/0.6/readme.txt
r656366 r656976 5 5 Requires at least: 3.4 6 6 Tested up to: 3.5 7 Stable tag: 0. 57 Stable tag: 0.6 8 8 License: GPLv2 9 9 10 Advanced Export/Import (Wordpress) Object Users. 10 Advanced Export/Import (Wordpress) Object Users: 11 Make a full user backup, restore wherever you want! 11 12 12 13 == Description == … … 16 17 the Buddypress XProfile data of each user. 17 18 18 **Note:** AEIOU requires SimpleXML PHP library to import data. Nothing more than wordpress is required for the export. 19 = Known Issues = 20 21 It seems that in some circumstances the password were stored in the new database in a wrong way. We are investigating on that. 22 23 = Dependencies = 24 25 AEIOU requires SimpleXML PHP library to import data. 26 Nothing more than wordpress is required for the export. 27 28 19 29 20 30 == Installation == … … 43 53 44 54 == Changelog == 55 56 = 0.6 (2013-01-22) = 57 * **Update:** Export: Better XProfile detection via ''BP_XProfile_Component'' 58 * **Update:** Import: flushing output on each processed user 59 * **Bugfix:** Import: Log outputted correctly in the right state (verbose/not verbose) 60 * **Bugfix:** Import: If user was skipped due existing ''$userId'' was not set 61 * **Bugfix:** Import: User options if serialized was not deserialized before save and the output was reserialized as string 45 62 46 63 = 0.5 (2013-01-21) = -
aeiou/trunk/index.php
r656366 r656976 5 5 Description: AEIOU is a powerfull plugin that export all wordpress users info into an XML file including user metadatas and allow to import the same xml file into a new wordpress keeping the metadata of each user. The plugin is able to export buddypress xprofile data too. 6 6 Author: toSend.it di Luisa Marra 7 Version: 0. 57 Version: 0.6 8 8 Author URI: http://tosend.it 9 9 */ … … 30 30 31 31 $verbose = $verbose && self::$instance->verbose; 32 if($verbose ){32 if($verbose && self::$instance->verbose || !$verbose && !self::$instance->verbose){ 33 33 echo($data); 34 34 } … … 112 112 } 113 113 if( class_exists('BuddyPress') ){ 114 if(class_exists('BP_XProfile_Group') && $this->exportXProfile ){ 114 115 if(class_exists('BP_XProfile_Component') && $this->exportXProfile ){ 115 116 /* 116 117 * I should export xprofile data too. … … 513 514 }else{ 514 515 $this->outputLog( __("skipped due it's already in the database", self::LANG_DOMAIN) . "\n" ); 516 $userID = $usr->ID; 515 517 } 516 518 } … … 557 559 558 560 if(empty($metaKey[0])) $metaKey = false; 559 $value = maybe_unserialize($value);560 561 if(!$metaKey || $this->exists=='replace'){ 562 $value = maybe_unserialize($value); 561 563 delete_user_meta($userID, $key); 562 564 if( !empty( $value ) ){ … … 591 593 592 594 $optExists = !empty($option); 593 $ option = maybe_unserialize($option);595 $value = maybe_unserialize($value); 594 596 595 597 if(!$optExists || $this->exists=='replace'){ -
aeiou/trunk/readme.txt
r656366 r656976 5 5 Requires at least: 3.4 6 6 Tested up to: 3.5 7 Stable tag: 0. 57 Stable tag: 0.6 8 8 License: GPLv2 9 9 10 Advanced Export/Import (Wordpress) Object Users. 10 Advanced Export/Import (Wordpress) Object Users: 11 Make a full user backup, restore wherever you want! 11 12 12 13 == Description == … … 16 17 the Buddypress XProfile data of each user. 17 18 18 **Note:** AEIOU requires SimpleXML PHP library to import data. Nothing more than wordpress is required for the export. 19 = Known Issues = 20 21 It seems that in some circumstances the password were stored in the new database in a wrong way. We are investigating on that. 22 23 = Dependencies = 24 25 AEIOU requires SimpleXML PHP library to import data. 26 Nothing more than wordpress is required for the export. 27 28 19 29 20 30 == Installation == … … 43 53 44 54 == Changelog == 55 56 = 0.6 (2013-01-22) = 57 * **Update:** Export: Better XProfile detection via ''BP_XProfile_Component'' 58 * **Update:** Import: flushing output on each processed user 59 * **Bugfix:** Import: Log outputted correctly in the right state (verbose/not verbose) 60 * **Bugfix:** Import: If user was skipped due existing ''$userId'' was not set 61 * **Bugfix:** Import: User options if serialized was not deserialized before save and the output was reserialized as string 45 62 46 63 = 0.5 (2013-01-21) =
Note: See TracChangeset
for help on using the changeset viewer.