Ticket #22171: 22171.5.patch
File 22171.5.patch, 4.0 KB (added by , 5 years ago) |
---|
-
readme.txt
7 7 Stable tag: 0.9 8 8 License: GPLv2 or later 9 9 10 Imports posts, images, comments, and categories (blogger tags) from a Blogger blog then migrates authors to WordPress users.10 Imports posts, images, comments, and categories (blogger tags) from a Blogger blog, then migrates authors to WordPress users. 11 11 12 12 == Description == 13 13 … … 84 84 85 85 = What size are the images? = 86 86 87 The importer will attempt to download the a large version of the file if one is available. This is controlled by the setting "LARGE_IMAGE_SIZE" and defaults to a width of 1024. The display size of the images is the "medium" size of images as defined on Word press. You can change this in advance if you want to show a different size.87 The importer will attempt to download the a large version of the file if one is available. This is controlled by the setting "LARGE_IMAGE_SIZE" and defaults to a width of 1024. The display size of the images is the "medium" size of images as defined on WordPress. You can change this in advance if you want to show a different size. 88 88 89 89 = How do I know what images are skipped? = 90 90 91 If you hover over the progress bar for images it will tell you how many images are skipped. To see the filenames of these images you will need to enable Word press debugging to log to file. See http://codex.wordpress.org/Debugging_in_WordPress91 If you hover over the progress bar for images it will tell you how many images are skipped. To see the filenames of these images you will need to enable WordPress debugging to log to file. See http://codex.wordpress.org/Debugging_in_WordPress 92 92 93 93 = What about future posts? = 94 94 … … 104 104 105 105 = The comments don't have avatars = 106 106 107 This is a known limitation of the data that is provided from Blogger. The Word press system uses Gravatar to provide the images for the comment avatars. This relies the email of the person making the comment. Blogger does not provide the email address in the data feed so Wordpress does not display the correct images. You can manually update or script change to the comment email addresses to work around this issue.107 This is a known limitation of the data that is provided from Blogger. The WordPress system uses Gravatar to provide the images for the comment avatars. This relies the email of the person making the comment. Blogger does not provide the email address in the data feed so WordPress does not display the correct images. You can manually update or script change to the comment email addresses to work around this issue. 108 108 109 109 = It does not seem to be processing the images = 110 110 111 The most common reasons for this are lack of memory and timeouts, these should appear in your error log. Also check you've not run out of disk space on your server. Because Word press stores the files in multiple resolutions one image might take up as much as 250kb spread across 5 files of different sizes.111 The most common reasons for this are lack of memory and timeouts, these should appear in your error log. Also check you've not run out of disk space on your server. Because WordPress stores the files in multiple resolutions one image might take up as much as 250kb spread across 5 files of different sizes. 112 112 113 113 = How do I make the images bigger or smaller? / My images are fuzzy = 114 114 … … 186 186 * Added setting author on images 187 187 * Added error handling in get_oauth_link() as suggested by daniel_henrique ref http://core.trac.wordpress.org/ticket/21163 188 188 * Added a check for OpenSSL as suggested by digitalsensus 189 * Fixed issue with SimplePie santizer not getting set in Word press 3.5189 * Fixed issue with SimplePie santizer not getting set in WordPress 3.5 190 190 * Added filter for the congrats function 'blogger_importer_congrats' so other plugins can add in new options 191 191 * Converted manual HTML table to WP_LIST_TABLE 192 192 * Moved inline Javascript to separate file to aid debugging and testing