Title: mpickell's Replies | WordPress.org

---

# mpickell

  [  ](https://wordpress.org/support/users/mpickell/)

 *   [Profile](https://wordpress.org/support/users/mpickell/)
 *   [Topics Started](https://wordpress.org/support/users/mpickell/topics/)
 *   [Replies Created](https://wordpress.org/support/users/mpickell/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/mpickell/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/mpickell/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/mpickell/engagements/)
 *   [Favorites](https://wordpress.org/support/users/mpickell/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 17 total)

1 [2](https://wordpress.org/support/users/mpickell/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/mpickell/replies/page/2/?output_format=md)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Old Scoop CMS database import?](https://wordpress.org/support/topic/old-scoop-cms-database-import/)
 *  Thread Starter [mpickell](https://wordpress.org/support/users/mpickell/)
 * (@mpickell)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/old-scoop-cms-database-import/#post-2634938)
 * One things this does not do is pull diaries as post-type “page”. I believe it
   pulls them as normal posts. that could be an improvement if someone needs it.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Old Scoop CMS database import?](https://wordpress.org/support/topic/old-scoop-cms-database-import/)
 *  Thread Starter [mpickell](https://wordpress.org/support/users/mpickell/)
 * (@mpickell)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/old-scoop-cms-database-import/#post-2634936)
 * Sorry, i didn’t get to it last night but i did tonight…
 * Here’s a link to a writeup i did on it:
    [http://mpickell.com/blog/2012/04/06/convert-an-old-scoop-cms-to-wordpress/](http://mpickell.com/blog/2012/04/06/convert-an-old-scoop-cms-to-wordpress/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Old Scoop CMS database import?](https://wordpress.org/support/topic/old-scoop-cms-database-import/)
 *  Thread Starter [mpickell](https://wordpress.org/support/users/mpickell/)
 * (@mpickell)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/old-scoop-cms-database-import/#post-2634932)
 * I couldn’t find a link on your profile, but i’ve been meaning to put this up 
   on my blog… i’ll do that tonight and send you the link so you can get it.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Register for site in WPTouch?](https://wordpress.org/support/topic/register-for-site-in-wptouch/)
 *  Thread Starter [mpickell](https://wordpress.org/support/users/mpickell/)
 * (@mpickell)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/register-for-site-in-wptouch/#post-2648663)
 * Anyone use this?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Register for site in WPTouch?](https://wordpress.org/support/topic/register-for-site-in-wptouch/)
 *  Thread Starter [mpickell](https://wordpress.org/support/users/mpickell/)
 * (@mpickell)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/register-for-site-in-wptouch/#post-2648490)
 * I see on the ‘account login’ screenshot [here](http://wordpress.org/extend/plugins/wptouch/screenshots/)
   a link to do it… But I can’t see that link on my site. I have ‘anyone can register’
   checked in Settings->General, but that doesn’t seem to matter.
 * I also looked through the WPTouch settings and I didn’t see anything to enable
   it.
 * Any suggestions would be appreciated.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress Importer] [Plugin: WordPress Importer] bug: Author problem importing multiple WXR files](https://wordpress.org/support/topic/plugin-wordpress-importer-bug-author-problem-importing-multiple-wxr-files/)
 *  Thread Starter [mpickell](https://wordpress.org/support/users/mpickell/)
 * (@mpickell)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/plugin-wordpress-importer-bug-author-problem-importing-multiple-wxr-files/#post-2643745)
 * Here’s the summary…
 * 1) Get jQueryify [here](http://www.learningjquery.com/2009/04/better-stronger-safer-jquerify-bookmarklet)
   and add the bookmarklet per the instructions.
 * 2) When you get to the “assign authors” page, right-click on the browser page
   and select “Inspect Element” (Chrome), or “Inspect with Firebug” in Firefox (
   install firebug if you haven’t already). In IE press F12 to start the Dev Tools.
 * 3) Press the jQuerify bookmarklet button that you installed from step 1. This
   will turn on jQuery for the page.
 * 4) Go to the console tab, enable the console if you need to, paste this code 
   in and press RUN:
 * jQuery.noConflict(); //Disable jQuery $ just incase.
 * jQuery(‘#authors li’).each(function() {
    // Get the author login text var username
   = jQuery(this).find(‘strong’).html(); var author_login = jQuery.trim((username.
   split(‘(‘))[0]);
 *  //Figure out which option this author is in the drop down.
    var selectOptionval
   = -1; jQuery(this).find(‘select option’).each(function(){ if (jQuery(this).html()
   === author_login) { selectOptionval = jQuery(this).val(); return false;//quit.
   each() early. } });
 *  // Set the combo box to this author’s option key.
    jQuery(this).find(‘select’).
   val(selectOptionval); // For test… //console.log(author_login + “: ” + selectOptionval);});
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress Importer] [Plugin: WordPress Importer] bug: Author problem importing multiple WXR files](https://wordpress.org/support/topic/plugin-wordpress-importer-bug-author-problem-importing-multiple-wxr-files/)
 *  Thread Starter [mpickell](https://wordpress.org/support/users/mpickell/)
 * (@mpickell)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/plugin-wordpress-importer-bug-author-problem-importing-multiple-wxr-files/#post-2643717)
 * –REMOVED– I fixed the last comment so i removed this comment.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress Importer] [Plugin: WordPress Importer] bug: Author problem importing multiple WXR files](https://wordpress.org/support/topic/plugin-wordpress-importer-bug-author-problem-importing-multiple-wxr-files/)
 *  Thread Starter [mpickell](https://wordpress.org/support/users/mpickell/)
 * (@mpickell)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/plugin-wordpress-importer-bug-author-problem-importing-multiple-wxr-files/#post-2643716)
 * Here’s a hack solution that fit my need. With almost 500 users i couldn’t select
   all of these by hand.
 * I wrote it up on [my blog](http://geekin.wordpress.com/2012/03/23/fixing-authors-when-importing-a-split-wxr-file-for-wordpress/)
   so i could put better description in it
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress Importer] [Plugin: WordPress Importer] bug: Author problem importing multiple WXR files](https://wordpress.org/support/topic/plugin-wordpress-importer-bug-author-problem-importing-multiple-wxr-files/)
 *  Thread Starter [mpickell](https://wordpress.org/support/users/mpickell/)
 * (@mpickell)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/plugin-wordpress-importer-bug-author-problem-importing-multiple-wxr-files/#post-2643650)
 * On that “Assign Authors” page, option 1 is “import this username” suggests to
   me that i’m importing that same user… it’s a little confusing
 * Is it possible to get something i could throw in the `author_select()` function
   of the plugin as a temp fix to select the “or assign posts to…” option and have
   its selection match the `$author['author_login']` or `$author['author_display_name']`
   name (whichever is needed… mine are the same)?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress Importer] [Plugin: WordPress Importer] bug: Author problem importing multiple WXR files](https://wordpress.org/support/topic/plugin-wordpress-importer-bug-author-problem-importing-multiple-wxr-files/)
 *  Thread Starter [mpickell](https://wordpress.org/support/users/mpickell/)
 * (@mpickell)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/plugin-wordpress-importer-bug-author-problem-importing-multiple-wxr-files/#post-2643648)
 * I think i may be able to go back using firebug and auto-select all of those if
   that is necessary… but is that the best way?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress Importer] [Plugin: WordPress Importer] bug: Author problem importing multiple WXR files](https://wordpress.org/support/topic/plugin-wordpress-importer-bug-author-problem-importing-multiple-wxr-files/)
 *  Thread Starter [mpickell](https://wordpress.org/support/users/mpickell/)
 * (@mpickell)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/plugin-wordpress-importer-bug-author-problem-importing-multiple-wxr-files/#post-2643646)
 * no, i have 470 users… would i have to do that in order to get this result?
 * that might be a nice “fill all” checkbox…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Photo Gallery, Sliders, Proofing and Themes - NextGEN Gallery] [Plugin: NextGEN Gallery] Upload problem – Fatal error: Allowed memory size…](https://wordpress.org/support/topic/plugin-nextgen-gallery-upload-problem-fatal-error-allowed-memory-size/)
 *  [mpickell](https://wordpress.org/support/users/mpickell/)
 * (@mpickell)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/plugin-nextgen-gallery-upload-problem-fatal-error-allowed-memory-size/#post-2643573)
 * you try temporarily editing the @ini_set line in wp-admin/admin.php
 * to something like
    `@ini_set( 'memory_limit', apply_filters( 'admin_memory_limit','
   500M' ) );`
 * This might not be necessary if you do what is in esmi’s link, but might be worth
   a try.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress Importer] [Plugin: WordPress Importer] bug: Author problem importing multiple WXR files](https://wordpress.org/support/topic/plugin-wordpress-importer-bug-author-problem-importing-multiple-wxr-files/)
 *  Thread Starter [mpickell](https://wordpress.org/support/users/mpickell/)
 * (@mpickell)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/plugin-wordpress-importer-bug-author-problem-importing-multiple-wxr-files/#post-2643566)
 * or a problem with the import file having an older user id and the new wordpress
   blog having already given that user a new id?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress Importer] [Plugin: WordPress Importer] bug: Author problem importing multiple WXR files](https://wordpress.org/support/topic/plugin-wordpress-importer-bug-author-problem-importing-multiple-wxr-files/)
 *  Thread Starter [mpickell](https://wordpress.org/support/users/mpickell/)
 * (@mpickell)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/plugin-wordpress-importer-bug-author-problem-importing-multiple-wxr-files/#post-2643559)
 * Maybe this line:
 * `$user_id = wp_insert_user( $user_data );`
 * in the `get_author_mapping()` function of the plugin is returning an error and
   therefore defaulting (in the following lines) to admin?
 * If that’s the case, then this “insert user” call should be returning the existing
   user, or maybe a retry on this call with the author’s ‘user_pass’ field blanked
   out since it is randomly generated each time and will never match an existing
   user?
 * Just throwing something out there. i’ll add more debug lines to the plugin tonight
   and try to see where it is failing.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Old Scoop CMS database import?](https://wordpress.org/support/topic/old-scoop-cms-database-import/)
 *  Thread Starter [mpickell](https://wordpress.org/support/users/mpickell/)
 * (@mpickell)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/old-scoop-cms-database-import/#post-2634899)
 * I have a script for this now that i’m finalizing… i’ll post it on my blog and
   link to it here. It works well. Converts Scoop database authors, tags, posts,
   and comments into the WordPress extended RSS format (WXR).
 * If someone needed it now i could send you the current script, just let me know
   here. It’s a php script.
 * The only problem i’m having now is that when i create multiple files (split because
   of large file size), only the first import is putting authors on the comments…
   but if you change the memory and file size parameters as mentioned [here](http://codex.wordpress.org/FAQ_Working_with_WordPress#Importing_and_Exporting),
   it loads a very large (400M+) file successfully.

Viewing 15 replies - 1 through 15 (of 17 total)

1 [2](https://wordpress.org/support/users/mpickell/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/mpickell/replies/page/2/?output_format=md)