Plugin Directory

Changeset 656976


Ignore:
Timestamp:
01/22/2013 04:21:30 PM (13 years ago)
Author:
tosend.it
Message:

New 0.6 version is available

Location:
aeiou
Files:
2 edited
5 copied

Legend:

Unmodified
Added
Removed
  • aeiou/tags/0.6/index.php

    r656366 r656976  
    55Description: 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.
    66Author: toSend.it di Luisa Marra
    7 Version: 0.5
     7Version: 0.6
    88Author URI: http://tosend.it
    99*/
     
    3030           
    3131            $verbose = $verbose && self::$instance->verbose;
    32             if($verbose){
     32            if($verbose && self::$instance->verbose || !$verbose && !self::$instance->verbose){
    3333                echo($data);
    3434            }
     
    112112            }
    113113            if( class_exists('BuddyPress') ){
    114                 if(class_exists('BP_XProfile_Group') && $this->exportXProfile ){
     114               
     115                if(class_exists('BP_XProfile_Component') && $this->exportXProfile ){
    115116                    /*
    116117                     * I should export xprofile data too.
     
    513514                                    }else{
    514515                                        $this->outputLog( __("skipped due it's already in the database", self::LANG_DOMAIN) . "\n" );
     516                                        $userID = $usr->ID;
    515517                                    }
    516518                                }
     
    557559           
    558560                if(empty($metaKey[0])) $metaKey = false;
    559                 $value = maybe_unserialize($value);
    560561                if(!$metaKey || $this->exists=='replace'){
     562                    $value = maybe_unserialize($value);
    561563                    delete_user_meta($userID, $key);
    562564                    if( !empty( $value ) ){
     
    591593                   
    592594                $optExists = !empty($option);
    593                 $option = maybe_unserialize($option);
     595                $value = maybe_unserialize($value);
    594596
    595597                if(!$optExists || $this->exists=='replace'){
  • aeiou/tags/0.6/readme.txt

    r656366 r656976  
    55Requires at least: 3.4
    66Tested up to: 3.5
    7 Stable tag: 0.5
     7Stable tag: 0.6
    88License: GPLv2
    99
    10 Advanced Export/Import (Wordpress) Object Users.
     10Advanced Export/Import (Wordpress) Object Users:
     11Make a full user backup, restore wherever you want!
    1112
    1213== Description ==
     
    1617the Buddypress XProfile data of each user.
    1718
    18 **Note:** AEIOU requires SimpleXML PHP library to import data. Nothing more than wordpress is required for the export.
     19= Known Issues =
     20
     21It 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
     25AEIOU requires SimpleXML PHP library to import data.
     26Nothing more than wordpress is required for the export.
     27
     28
    1929
    2030== Installation ==
     
    4353
    4454== 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
    4562
    4663= 0.5 (2013-01-21) =
  • aeiou/trunk/index.php

    r656366 r656976  
    55Description: 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.
    66Author: toSend.it di Luisa Marra
    7 Version: 0.5
     7Version: 0.6
    88Author URI: http://tosend.it
    99*/
     
    3030           
    3131            $verbose = $verbose && self::$instance->verbose;
    32             if($verbose){
     32            if($verbose && self::$instance->verbose || !$verbose && !self::$instance->verbose){
    3333                echo($data);
    3434            }
     
    112112            }
    113113            if( class_exists('BuddyPress') ){
    114                 if(class_exists('BP_XProfile_Group') && $this->exportXProfile ){
     114               
     115                if(class_exists('BP_XProfile_Component') && $this->exportXProfile ){
    115116                    /*
    116117                     * I should export xprofile data too.
     
    513514                                    }else{
    514515                                        $this->outputLog( __("skipped due it's already in the database", self::LANG_DOMAIN) . "\n" );
     516                                        $userID = $usr->ID;
    515517                                    }
    516518                                }
     
    557559           
    558560                if(empty($metaKey[0])) $metaKey = false;
    559                 $value = maybe_unserialize($value);
    560561                if(!$metaKey || $this->exists=='replace'){
     562                    $value = maybe_unserialize($value);
    561563                    delete_user_meta($userID, $key);
    562564                    if( !empty( $value ) ){
     
    591593                   
    592594                $optExists = !empty($option);
    593                 $option = maybe_unserialize($option);
     595                $value = maybe_unserialize($value);
    594596
    595597                if(!$optExists || $this->exists=='replace'){
  • aeiou/trunk/readme.txt

    r656366 r656976  
    55Requires at least: 3.4
    66Tested up to: 3.5
    7 Stable tag: 0.5
     7Stable tag: 0.6
    88License: GPLv2
    99
    10 Advanced Export/Import (Wordpress) Object Users.
     10Advanced Export/Import (Wordpress) Object Users:
     11Make a full user backup, restore wherever you want!
    1112
    1213== Description ==
     
    1617the Buddypress XProfile data of each user.
    1718
    18 **Note:** AEIOU requires SimpleXML PHP library to import data. Nothing more than wordpress is required for the export.
     19= Known Issues =
     20
     21It 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
     25AEIOU requires SimpleXML PHP library to import data.
     26Nothing more than wordpress is required for the export.
     27
     28
    1929
    2030== Installation ==
     
    4353
    4454== 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
    4562
    4663= 0.5 (2013-01-21) =
Note: See TracChangeset for help on using the changeset viewer.