• I just made a simple plugin to install a custom shortcode to embed a vimeo player.

    Raw Shortcode:

    <?php
    // [embedvimeo id="xxx" width="xxx" height="xxx"]
    function embedvimeo_func( $atts ) {
        $a = shortcode_atts( array(
            'id' => '00000000',
            'width' => '500',
            'height' => '281',
        ), $atts );
    
        return '<iframe src="https://player.vimeo.com/video/' . $a["id"] . '" width="' . $a["width"] . '" height="' . $a["height"] . '" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>';
    }
    add_shortcode( 'embedvimeo', 'embedvimeo_func' );
    ?>

    Shortcode works fine, and I have no problems when using a web browser.

    When I use the WP iPhone or iPad app to look at posts or pages, I get this pop up:

    Unable to Sync
    The operation couldn’t be completed. (NSXMLParserErrorDomain error 111.)

    Here is the error log:

    2015/07/24 17:35:04:537 WPAnalytics session started
    2015/07/24 17:35:04:604 ===========================================================================
    2015/07/24 17:35:04:605 Launching WordPress for iOS 5.3.1 (5.3.1)…
    2015/07/24 17:35:04:605 Crash count: 0
    2015/07/24 17:35:04:605 Debug mode: Production
    2015/07/24 17:35:04:605 Extra debug: YES
    2015/07/24 17:35:04:606 Device model: iPhone 6 (iPhone7,2)
    2015/07/24 17:35:04:606 OS: iPhone OS 8.4
    2015/07/24 17:35:04:606 Language: en
    2015/07/24 17:35:04:607 UDID: 183A3366-7A2C-4E70-9220-4A84C06E2AFC
    2015/07/24 17:35:04:607 APN token: (null)
    2015/07/24 17:35:04:607 Launch options: (null)
    2015/07/24 17:35:04:607 No blogs configured on device.
    2015/07/24 17:35:04:607 ===========================================================================
    2015/07/24 17:35:04:881 MediaService cleanUnusedMediaFileFromTmpDir
    2015/07/24 17:35:04:981 <BlogService: 0x1740104f0> syncBlogsForAccount:success:failure:
    2015/07/24 17:35:05:011 didFinishLaunchingWithOptions state: 1
    2015/07/24 17:35:05:154 <WordPressAppDelegate: 0x1740b85a0> applicationDidBecomeActive:
    2015/07/24 17:35:05:258 Feedback response received: {
    “feedback-enabled” = 0;
    }
    2015/07/24 17:35:05:310 0 media items to check for cleanup
    2015/07/24 17:35:14:636 Helpshift Enabled
    2015/07/24 17:35:20:164 Tracks sendQueuedEvents Called…
    2015/07/24 17:35:20:170 Track sending events…
    2015/07/24 17:35:20:391 Tracks sendQueuedEvents completed…
    2015/07/24 17:35:35:403 Tracks sendQueuedEvents Called…
    2015/07/24 17:35:40:287 Error while retrieving WordPressComOAuthKeychainServiceName token: Error Domain=SFHFKeychainUtilsErrorDomain Code=-2000 “The operation couldn’t be completed. (SFHFKeychainUtilsErrorDomain error -2000.)”
    2015/07/24 17:35:40:294 Error while deleting WordPressComOAuthKeychainServiceName token: Error Domain=SFHFKeychainUtilsErrorDomain Code=-2000 “The operation couldn’t be completed. (SFHFKeychainUtilsErrorDomain error -2000.)”
    2015/07/24 17:35:40:331 Error while deleting WordPressComOAuthKeychainServiceName token: Error Domain=SFHFKeychainUtilsErrorDomain Code=-25300 “The operation couldn’t be completed. (SFHFKeychainUtilsErrorDomain error -25300.)”
    2015/07/24 17:35:41:506 Error Domain=NSCocoaErrorDomain Code=133000 “The operation couldn’t be completed. (Cocoa error 133000.)”
    2015/07/24 17:35:50:405 Tracks sendQueuedEvents Called…
    2015/07/24 17:35:50:407 Track sending events…
    2015/07/24 17:35:50:513 Tracks sendQueuedEvents completed…
    2015/07/24 17:36:02:629 <EditSiteViewController: 0x14fd0c500> viewDidLoad
    2015/07/24 17:36:05:522 Tracks sendQueuedEvents Called…
    2015/07/24 17:36:09:164 No instructions, do nothing
    2015/07/24 17:36:14:558 Copying attribute author
    2015/07/24 17:36:14:558 Copying attribute authorAvatarURL
    2015/07/24 17:36:14:558 Copying attribute authorID
    2015/07/24 17:36:14:558 Copying attribute content
    2015/07/24 17:36:14:558 Copying attribute date_created_gmt
    2015/07/24 17:36:14:558 Copying attribute mt_excerpt
    2015/07/24 17:36:14:558 Copying attribute mt_text_more
    2015/07/24 17:36:14:558 Copying attribute password
    2015/07/24 17:36:14:558 Copying attribute pathForDisplayImage
    2015/07/24 17:36:14:558 Copying attribute permaLink
    2015/07/24 17:36:14:558 Copying attribute postID
    2015/07/24 17:36:14:558 Copying attribute postTitle
    2015/07/24 17:36:14:558 Copying attribute post_thumbnail
    2015/07/24 17:36:14:558 Copying attribute remoteStatusNumber
    2015/07/24 17:36:14:558 Copying attribute status
    2015/07/24 17:36:14:559 Copying attribute wp_slug
    2015/07/24 17:36:14:559 Copying attribute metaIsLocal
    2015/07/24 17:36:14:559 Copying attribute metaPublishImmediately
    2015/07/24 17:36:14:559 Copying attribute commentCount
    2015/07/24 17:36:14:559 Copying attribute geolocation
    2015/07/24 17:36:14:559 Copying attribute latitudeID
    2015/07/24 17:36:14:559 Copying attribute likeCount
    2015/07/24 17:36:14:559 Copying attribute longitudeID
    2015/07/24 17:36:14:559 Copying attribute postFormat
    2015/07/24 17:36:14:559 Copying attribute publicID
    2015/07/24 17:36:14:559 Copying attribute tags
    2015/07/24 17:36:14:559 Copying relationship blog
    2015/07/24 17:36:14:559 Skipping relationship original
    2015/07/24 17:36:14:559 Skipping relationship revision
    2015/07/24 17:36:14:559 Copying relationship comments
    2015/07/24 17:36:14:559 Copying relationship media
    2015/07/24 17:36:14:560 Copying relationship categories
    2015/07/24 17:36:15:031 !!! Attempted to create a revision of a revision
    2015/07/24 17:36:20:520 Tracks sendQueuedEvents Called…
    2015/07/24 17:36:20:523 Track sending events…
    2015/07/24 17:36:20:666 Tracks sendQueuedEvents completed…
    2015/07/24 17:36:35:682 Tracks sendQueuedEvents Called…
    2015/07/24 17:36:47:696 <PostSettingsViewController: 0x14fd8dbd0> viewDidLoad
    2015/07/24 17:36:50:684 Tracks sendQueuedEvents Called…
    2015/07/24 17:36:50:686 Track sending events…
    2015/07/24 17:36:50:791 Tracks sendQueuedEvents completed…
    2015/07/24 17:37:05:800 Tracks sendQueuedEvents Called…
    2015/07/24 17:37:05:801 Track sending events…
    2015/07/24 17:37:05:915 Tracks sendQueuedEvents completed…
    2015/07/24 17:37:07:218 <PostPreviewViewController: 0x14fd274d0> viewDidLoad
    2015/07/24 17:37:07:228 User-Agent set to: Mozilla/5.0 (iPhone; CPU iPhone OS 8_4 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Mobile/12H143
    2015/07/24 17:37:07:229 <PostPreviewViewController: 0x14fd274d0> showSimplePreviewWithMessage:
    2015/07/24 17:37:07:298 <PostPreviewViewController: 0x14fd274d0> webViewDidStartLoad:
    2015/07/24 17:37:07:322 <PostPreviewViewController: 0x14fd274d0> webViewDidFinishLoad:
    2015/07/24 17:37:09:412 User-Agent set to: wp-iphone/5.3.1 (iPhone OS 8.4, iPhone) Mobile
    2015/07/24 17:37:09:975 User-Agent set to: wp-iphone/5.3.1 (iPhone OS 8.4, iPhone) Mobile
    2015/07/24 17:37:10:680 <WordPressAppDelegate: 0x1740b85a0> applicationWillResignActive:
    2015/07/24 17:37:11:377 <WordPressAppDelegate: 0x1740b85a0> applicationDidEnterBackground:
    2015/07/24 17:37:11:388 Tracks sendQueuedEvents Called…
    2015/07/24 17:37:53:204 <WordPressAppDelegate: 0x1740b85a0> applicationWillEnterForeground:
    2015/07/24 17:37:54:103 <WordPressAppDelegate: 0x1740b85a0> applicationDidBecomeActive:
    2015/07/24 17:38:09:109 Tracks sendQueuedEvents Called…
    2015/07/24 17:38:09:112 Track sending events…
    2015/07/24 17:38:09:223 Tracks sendQueuedEvents completed…
    2015/07/24 17:38:24:233 Tracks sendQueuedEvents Called…
    2015/07/24 17:38:39:235 Tracks sendQueuedEvents Called…
    2015/07/24 17:38:54:238 Tracks sendQueuedEvents Called…
    2015/07/24 17:39:09:237 Tracks sendQueuedEvents Called…
    2015/07/24 17:39:24:239 Tracks sendQueuedEvents Called…
    2015/07/24 17:39:39:242 Tracks sendQueuedEvents Called…
    2015/07/24 17:39:54:240 Tracks sendQueuedEvents Called…
    2015/07/24 17:40:09:242 Tracks sendQueuedEvents Called…
    2015/07/24 17:40:24:244 Tracks sendQueuedEvents Called…
    2015/07/24 17:40:39:246 Tracks sendQueuedEvents Called…
    2015/07/24 17:40:54:248 Tracks sendQueuedEvents Called…
    2015/07/24 17:41:09:251 Tracks sendQueuedEvents Called…
    2015/07/24 17:41:24:253 Tracks sendQueuedEvents Called…
    2015/07/24 17:41:39:256 Tracks sendQueuedEvents Called…
    2015/07/24 17:41:54:256 Tracks sendQueuedEvents Called…
    2015/07/24 17:42:09:258 Tracks sendQueuedEvents Called…
    2015/07/24 17:42:13:893 <WordPressAppDelegate: 0x1740b85a0> applicationWillResignActive:
    2015/07/24 17:42:22:244 <WordPressAppDelegate: 0x1740b85a0> applicationDidBecomeActive:
    2015/07/24 17:42:37:256 Tracks sendQueuedEvents Called…
    2015/07/24 17:42:37:258 Track sending events…
    2015/07/24 17:42:37:526 Tracks sendQueuedEvents completed…
    2015/07/24 17:42:38:717 <WordPressAppDelegate: 0x1740b85a0> applicationWillResignActive:
    2015/07/24 17:42:42:809 <WordPressAppDelegate: 0x1740b85a0> applicationDidBecomeActive:
    2015/07/24 17:42:43:604 <WordPressAppDelegate: 0x1740b85a0> applicationWillResignActive:
    2015/07/24 17:42:57:817 Tracks sendQueuedEvents Called…
    2015/07/24 17:42:57:818 Track sending events…
    2015/07/24 17:42:57:907 Tracks sendQueuedEvents completed…
    2015/07/24 17:43:03:921 <WordPressAppDelegate: 0x1740b85a0> applicationDidBecomeActive:
    2015/07/24 17:43:18:929 Tracks sendQueuedEvents Called…
    2015/07/24 17:43:18:931 Track sending events…
    2015/07/24 17:43:19:033 Tracks sendQueuedEvents completed…
    2015/07/24 17:43:31:939 <WordPressAppDelegate: 0x1740b85a0> applicationWillResignActive:
    2015/07/24 17:43:34:038 Tracks sendQueuedEvents Called…
    2015/07/24 17:43:49:042 Tracks sendQueuedEvents Called…
    2015/07/24 17:44:04:044 Tracks sendQueuedEvents Called…
    2015/07/24 17:44:19:046 Tracks sendQueuedEvents Called…
    2015/07/24 17:44:34:045 Tracks sendQueuedEvents Called…
    2015/07/24 17:44:49:048 Tracks sendQueuedEvents Called…
    2015/07/24 17:45:04:050 Tracks sendQueuedEvents Called…
    2015/07/24 17:45:19:052 Tracks sendQueuedEvents Called…
    2015/07/24 17:45:31:190 <WordPressAppDelegate: 0x1740b85a0> applicationDidBecomeActive:
    2015/07/24 17:45:32:881 <WordPressAppDelegate: 0x1740b85a0> applicationWillResignActive:
    2015/07/24 17:45:34:061 <WordPressAppDelegate: 0x1740b85a0> applicationDidEnterBackground:
    2015/07/24 17:45:34:082 Tracks sendQueuedEvents Called…
    2015/07/24 17:45:34:085 Track sending events…
    2015/07/24 17:45:34:289 Tracks sendQueuedEvents completed…
    2015/07/24 19:15:32:841 <WordPressAppDelegate: 0x1740b85a0> applicationWillEnterForeground:
    2015/07/24 19:15:33:632 <WordPressAppDelegate: 0x1740b85a0> applicationDidBecomeActive:
    2015/07/24 19:15:37:602 No instructions, do nothing
    2015/07/24 19:15:37:843 Copying attribute author
    2015/07/24 19:15:37:844 Copying attribute authorAvatarURL
    2015/07/24 19:15:37:844 Copying attribute authorID
    2015/07/24 19:15:37:844 Copying attribute content
    2015/07/24 19:15:37:844 Copying attribute date_created_gmt
    2015/07/24 19:15:37:845 Copying attribute mt_excerpt
    2015/07/24 19:15:37:845 Copying attribute mt_text_more
    2015/07/24 19:15:37:845 Copying attribute password
    2015/07/24 19:15:37:845 Copying attribute pathForDisplayImage
    2015/07/24 19:15:37:846 Copying attribute permaLink
    2015/07/24 19:15:37:846 Copying attribute postID
    2015/07/24 19:15:37:846 Copying attribute postTitle
    2015/07/24 19:15:37:846 Copying attribute post_thumbnail
    2015/07/24 19:15:37:846 Copying attribute remoteStatusNumber
    2015/07/24 19:15:37:846 Copying attribute status
    2015/07/24 19:15:37:846 Copying attribute wp_slug
    2015/07/24 19:15:37:846 Copying attribute metaIsLocal
    2015/07/24 19:15:37:846 Copying attribute metaPublishImmediately
    2015/07/24 19:15:37:846 Copying attribute commentCount
    2015/07/24 19:15:37:846 Copying attribute geolocation
    2015/07/24 19:15:37:846 Copying attribute latitudeID
    2015/07/24 19:15:37:846 Copying attribute likeCount
    2015/07/24 19:15:37:846 Copying attribute longitudeID
    2015/07/24 19:15:37:846 Copying attribute postFormat
    2015/07/24 19:15:37:846 Copying attribute publicID
    2015/07/24 19:15:37:846 Copying attribute tags
    2015/07/24 19:15:37:847 Copying relationship blog
    2015/07/24 19:15:37:847 Skipping relationship original
    2015/07/24 19:15:37:847 Skipping relationship revision
    2015/07/24 19:15:37:847 Copying relationship comments
    2015/07/24 19:15:37:847 Copying relationship media
    2015/07/24 19:15:37:847 Copying relationship categories
    2015/07/24 19:15:38:238 !!! Attempted to create a revision of a revision
    2015/07/24 19:15:45:204 WebEditor error:
    In file: file:///private/var/mobile/Containers/Bundle/Application/7EED71C2-F1CD-418F-84D6-87329C910E6E/WordPress.app/ZSSRichTextEditor.js
    In line: 206
    IndexSizeError: DOM Exception 1: Index or size was negative, or greater than the allowed value.
    2015/07/24 19:15:45:211 <PostPreviewViewController: 0x14fdd7010> viewDidLoad
    2015/07/24 19:15:45:225 WebEditor error:
    In file: file:///private/var/mobile/Containers/Bundle/Application/7EED71C2-F1CD-418F-84D6-87329C910E6E/WordPress.app/ZSSRichTextEditor.js
    In line: 206
    IndexSizeError: DOM Exception 1: Index or size was negative, or greater than the allowed value.
    2015/07/24 19:15:45:233 User-Agent set to: Mozilla/5.0 (iPhone; CPU iPhone OS 8_4 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Mobile/12H143
    2015/07/24 19:15:45:234 Showing real preview for https://onlineguncoach.com/hello-world/
    2015/07/24 19:15:45:281 <PostPreviewViewController: 0x14fdd7010> webViewDidStartLoad:
    2015/07/24 19:15:46:759 User-Agent set to: wp-iphone/5.3.1 (iPhone OS 8.4, iPhone) Mobile
    2015/07/24 19:15:46:873 <PostPreviewViewController: 0x14fdd7010> webView:didFailLoadWithError:Error Domain=NSURLErrorDomain Code=-999 “The operation couldn’t be completed. (NSURLErrorDomain error -999.)” UserInfo=0x174872fc0 {NSErrorFailingURLStringKey=https://onlineguncoach.com/hello-world/, NSErrorFailingURLKey=https://onlineguncoach.com/hello-world/}
    2015/07/24 19:15:47:271 User-Agent set to: wp-iphone/5.3.1 (iPhone OS 8.4, iPhone) Mobile
    2015/07/24 19:15:47:756 WebEditor error:
    In file: file:///private/var/mobile/Containers/Bundle/Application/7EED71C2-F1CD-418F-84D6-87329C910E6E/WordPress.app/ZSSRichTextEditor.js
    In line: 206
    IndexSizeError: DOM Exception 1: Index or size was negative, or greater than the allowed value.
    2015/07/24 19:15:47:764 <PostSettingsViewController: 0x14fdda320> viewDidLoad
    2015/07/24 19:15:47:769 WebEditor error:
    In file: file:///private/var/mobile/Containers/Bundle/Application/7EED71C2-F1CD-418F-84D6-87329C910E6E/WordPress.app/ZSSRichTextEditor.js
    In line: 206
    IndexSizeError: DOM Exception 1: Index or size was negative, or greater than the allowed value.
    2015/07/24 19:15:48:641 Tracks sendQueuedEvents Called…
    2015/07/24 19:15:48:645 Track sending events…
    2015/07/24 19:15:48:906 Tracks sendQueuedEvents completed…
    2015/07/24 19:16:00:395 No instructions, do nothing
    2015/07/24 19:16:00:539 Copying attribute author
    2015/07/24 19:16:00:539 Copying attribute authorAvatarURL
    2015/07/24 19:16:00:539 Copying attribute authorID
    2015/07/24 19:16:00:539 Copying attribute content
    2015/07/24 19:16:00:539 Copying attribute date_created_gmt
    2015/07/24 19:16:00:539 Copying attribute mt_excerpt
    2015/07/24 19:16:00:539 Copying attribute mt_text_more
    2015/07/24 19:16:00:540 Copying attribute password
    2015/07/24 19:16:00:540 Copying attribute pathForDisplayImage
    2015/07/24 19:16:00:540 Copying attribute permaLink
    2015/07/24 19:16:00:540 Copying attribute postID
    2015/07/24 19:16:00:540 Copying attribute postTitle
    2015/07/24 19:16:00:540 Copying attribute post_thumbnail
    2015/07/24 19:16:00:540 Copying attribute remoteStatusNumber
    2015/07/24 19:16:00:540 Copying attribute status
    2015/07/24 19:16:00:540 Copying attribute wp_slug
    2015/07/24 19:16:00:540 Copying attribute metaIsLocal
    2015/07/24 19:16:00:540 Copying attribute metaPublishImmediately
    2015/07/24 19:16:00:540 Copying attribute commentCount
    2015/07/24 19:16:00:540 Copying attribute geolocation
    2015/07/24 19:16:00:541 Copying attribute latitudeID
    2015/07/24 19:16:00:541 Copying attribute likeCount
    2015/07/24 19:16:00:541 Copying attribute longitudeID
    2015/07/24 19:16:00:541 Copying attribute postFormat
    2015/07/24 19:16:00:541 Copying attribute publicID
    2015/07/24 19:16:00:541 Copying attribute tags
    2015/07/24 19:16:00:541 Copying relationship blog
    2015/07/24 19:16:00:541 Skipping relationship original
    2015/07/24 19:16:00:541 Skipping relationship revision
    2015/07/24 19:16:00:541 Copying relationship comments
    2015/07/24 19:16:00:542 Copying relationship media
    2015/07/24 19:16:00:542 Copying relationship categories
    2015/07/24 19:16:00:770 !!! Attempted to create a revision of a revision
    2015/07/24 19:16:03:566 WebEditor error:
    In file: file:///private/var/mobile/Containers/Bundle/Application/7EED71C2-F1CD-418F-84D6-87329C910E6E/WordPress.app/ZSSRichTextEditor.js
    In line: 206
    IndexSizeError: DOM Exception 1: Index or size was negative, or greater than the allowed value.
    2015/07/24 19:16:03:932 Tracks sendQueuedEvents Called…
    2015/07/24 19:16:03:934 Track sending events…
    2015/07/24 19:16:04:018 Tracks sendQueuedEvents completed…
    2015/07/24 19:16:19:029 Tracks sendQueuedEvents Called…
    2015/07/24 19:16:19:032 Track sending events…
    2015/07/24 19:16:19:140 Tracks sendQueuedEvents completed…
    2015/07/24 19:16:34:146 Tracks sendQueuedEvents Called…
    2015/07/24 19:16:49:204 No instructions, do nothing
    2015/07/24 19:16:49:263 Tracks sendQueuedEvents Called…
    2015/07/24 19:16:49:264 Track sending events…
    2015/07/24 19:16:49:348 Tracks sendQueuedEvents completed…
    2015/07/24 19:16:50:417 Showing alert with title: Unable to Sync and message The operation couldn’t be completed. (NSXMLParserErrorDomain error 111.)
    2015/07/24 19:16:55:482 No instructions, do nothing
    2015/07/24 19:16:56:760 Showing alert with title: Unable to Sync and message The operation couldn’t be completed. (NSXMLParserErrorDomain error 111.)
    2015/07/24 19:17:04:230 WPAnalytics session stopped
    2015/07/24 19:17:04:355 Tracks sendQueuedEvents Called…
    2015/07/24 19:17:04:358 Track sending events…
    2015/07/24 19:17:04:476 Tracks sendQueuedEvents completed…
    2015/07/24 19:17:08:780 No instructions, do nothing
    2015/07/24 19:17:08:838 Copying attribute author
    2015/07/24 19:17:08:838 Copying attribute authorAvatarURL
    2015/07/24 19:17:08:838 Copying attribute authorID
    2015/07/24 19:17:08:838 Copying attribute content
    2015/07/24 19:17:08:839 Copying attribute date_created_gmt
    2015/07/24 19:17:08:839 Copying attribute mt_excerpt
    2015/07/24 19:17:08:839 Copying attribute mt_text_more
    2015/07/24 19:17:08:839 Copying attribute password
    2015/07/24 19:17:08:839 Copying attribute pathForDisplayImage
    2015/07/24 19:17:08:839 Copying attribute permaLink
    2015/07/24 19:17:08:839 Copying attribute postID
    2015/07/24 19:17:08:839 Copying attribute postTitle
    2015/07/24 19:17:08:839 Copying attribute post_thumbnail
    2015/07/24 19:17:08:839 Copying attribute remoteStatusNumber
    2015/07/24 19:17:08:839 Copying attribute status
    2015/07/24 19:17:08:839 Copying attribute wp_slug
    2015/07/24 19:17:08:839 Copying attribute metaIsLocal
    2015/07/24 19:17:08:839 Copying attribute metaPublishImmediately
    2015/07/24 19:17:08:839 Copying attribute commentCount
    2015/07/24 19:17:08:839 Copying attribute geolocation
    2015/07/24 19:17:08:839 Copying attribute latitudeID
    2015/07/24 19:17:08:839 Copying attribute likeCount
    2015/07/24 19:17:08:839 Copying attribute longitudeID
    2015/07/24 19:17:08:839 Copying attribute postFormat
    2015/07/24 19:17:08:839 Copying attribute publicID
    2015/07/24 19:17:08:839 Copying attribute tags
    2015/07/24 19:17:08:839 Copying relationship blog
    2015/07/24 19:17:08:839 Skipping relationship original
    2015/07/24 19:17:08:839 Skipping relationship revision
    2015/07/24 19:17:08:839 Copying relationship comments
    2015/07/24 19:17:08:840 Copying relationship media
    2015/07/24 19:17:08:840 Copying relationship categories
    2015/07/24 19:17:08:862 No instructions, do nothing
    2015/07/24 19:17:09:089 !!! Attempted to create a revision of a revision
    2015/07/24 19:17:10:040 Showing alert with title: Unable to Sync and message The operation couldn’t be completed. (NSXMLParserErrorDomain error 111.)
    2015/07/24 19:17:19:485 Tracks sendQueuedEvents Called…
    2015/07/24 19:17:19:489 Track sending events…
    2015/07/24 19:17:19:582 Tracks sendQueuedEvents completed…
    2015/07/24 19:17:34:588 Tracks sendQueuedEvents Called…
    2015/07/24 19:17:49:587 Tracks sendQueuedEvents Called…
    2015/07/24 19:18:00:168 <WordPressAppDelegate: 0x1740b85a0> applicationWillResignActive:
    2015/07/24 19:18:01:263 <WordPressAppDelegate: 0x1740b85a0> applicationDidEnterBackground:
    2015/07/24 19:18:01:276 Tracks sendQueuedEvents Called…
    2015/07/24 19:18:01:475 WebEditor error:
    In file: file:///private/var/mobile/Containers/Bundle/Application/7EED71C2-F1CD-418F-84D6-87329C910E6E/WordPress.app/ZSSRichTextEditor.js
    In line: 206
    IndexSizeError: DOM Exception 1: Index or size was negative, or greater than the allowed value.
    2015/07/24 19:18:01:481 <WordPressAppDelegate: 0x1740b85a0> applicationWillTerminate:
    2015/07/24 19:18:07:938 ===========================================================================
    2015/07/24 19:18:07:939 Launching WordPress for iOS 5.3.1 (5.3.1)…
    2015/07/24 19:18:07:939 Crash count: 0
    2015/07/24 19:18:07:939 Debug mode: Production
    2015/07/24 19:18:07:939 Extra debug: YES
    2015/07/24 19:18:07:939 Device model: iPhone 6 (iPhone7,2)
    2015/07/24 19:18:07:939 OS: iPhone OS 8.4
    2015/07/24 19:18:07:939 Language: en
    2015/07/24 19:18:07:940 UDID: 183A3366-7A2C-4E70-9220-4A84C06E2AFC
    2015/07/24 19:18:07:940 APN token: (null)
    2015/07/24 19:18:07:940 Launch options: (null)
    2015/07/24 19:18:07:940 All blogs on device:
    2015/07/24 19:18:07:944 <Blog Name: Online Gun Coach URL: https://onlineguncoach.com XML-RPC: https://onlineguncoach.com/xmlrpc.php jetpack: ???Jetpack not installed>
    2015/07/24 19:18:07:944 ===========================================================================
    2015/07/24 19:18:08:179 MediaService cleanUnusedMediaFileFromTmpDir
    2015/07/24 19:18:08:334 didFinishLaunchingWithOptions state: 1
    2015/07/24 19:18:08:425 <WordPressAppDelegate: 0x1700bf5c0> applicationDidBecomeActive:
    2015/07/24 19:18:08:564 Feedback response received: {
    “feedback-enabled” = 0;
    }
    2015/07/24 19:18:08:602 0 media items to check for cleanup
    2015/07/24 19:18:09:829 No instructions, do nothing
    2015/07/24 19:18:11:511 Showing alert with title: Unable to Sync and message The operation couldn’t be completed. (NSXMLParserErrorDomain error 111.)
    2015/07/24 19:18:17:963 Helpshift Disabled
    2015/07/24 19:18:23:433 Tracks sendQueuedEvents Called…
    2015/07/24 19:18:23:438 Track sending events…
    2015/07/24 19:18:23:675 Tracks sendQueuedEvents completed…
    2015/07/24 19:18:38:692 Tracks sendQueuedEvents Called…
    2015/07/24 19:18:53:695 Tracks sendQueuedEvents Called…
    2015/07/24 19:19:08:697 Tracks sendQueuedEvents Called…
    2015/07/24 19:19:23:700 Tracks sendQueuedEvents Called…
    2015/07/24 19:19:38:702 Tracks sendQueuedEvents Called…
    2015/07/24 19:19:53:705 Tracks sendQueuedEvents Called…
    2015/07/24 19:20:06:728 No instructions, do nothing
    2015/07/24 19:20:07:914 Showing alert with title: Unable to Sync and message The operation couldn’t be completed. (NSXMLParserErrorDomain error 111.)
    2015/07/24 19:20:08:707 Tracks sendQueuedEvents Called…
    2015/07/24 19:20:08:709 Track sending events…
    2015/07/24 19:20:08:818 Tracks sendQueuedEvents completed…
    2015/07/24 19:20:10:414 No instructions, do nothing
    2015/07/24 19:20:10:590 Copying attribute author
    2015/07/24 19:20:10:591 Copying attribute authorAvatarURL
    2015/07/24 19:20:10:591 Copying attribute authorID
    2015/07/24 19:20:10:591 Copying attribute content
    2015/07/24 19:20:10:591 Copying attribute date_created_gmt
    2015/07/24 19:20:10:591 Copying attribute mt_excerpt
    2015/07/24 19:20:10:591 Copying attribute mt_text_more
    2015/07/24 19:20:10:591 Copying attribute password
    2015/07/24 19:20:10:591 Copying attribute pathForDisplayImage
    2015/07/24 19:20:10:591 Copying attribute permaLink
    2015/07/24 19:20:10:591 Copying attribute postID
    2015/07/24 19:20:10:591 Copying attribute postTitle
    2015/07/24 19:20:10:591 Copying attribute post_thumbnail
    2015/07/24 19:20:10:592 Copying attribute remoteStatusNumber
    2015/07/24 19:20:10:592 Copying attribute status
    2015/07/24 19:20:10:592 Copying attribute wp_slug
    2015/07/24 19:20:10:592 Copying attribute metaIsLocal
    2015/07/24 19:20:10:592 Copying attribute metaPublishImmediately
    2015/07/24 19:20:10:592 Copying attribute commentCount
    2015/07/24 19:20:10:592 Copying attribute geolocation
    2015/07/24 19:20:10:592 Copying attribute latitudeID
    2015/07/24 19:20:10:592 Copying attribute likeCount
    2015/07/24 19:20:10:592 Copying attribute longitudeID
    2015/07/24 19:20:10:592 Copying attribute postFormat
    2015/07/24 19:20:10:592 Copying attribute publicID
    2015/07/24 19:20:10:592 Copying attribute tags
    2015/07/24 19:20:10:592 Copying relationship blog
    2015/07/24 19:20:10:592 Skipping relationship original
    2015/07/24 19:20:10:592 Skipping relationship revision
    2015/07/24 19:20:10:592 Copying relationship comments
    2015/07/24 19:20:10:592 Copying relationship media
    2015/07/24 19:20:10:593 Copying relationship categories
    2015/07/24 19:20:11:003 !!! Attempted to create a revision of a revision
    2015/07/24 19:20:11:705 Showing alert with title: Unable to Sync and message The operation couldn’t be completed. (NSXMLParserErrorDomain error 111.)
    2015/07/24 19:20:23:826 Tracks sendQueuedEvents Called…
    2015/07/24 19:20:23:829 Track sending events…
    2015/07/24 19:20:23:936 Tracks sendQueuedEvents completed…
    2015/07/24 19:20:38:947 Tracks sendQueuedEvents Called…
    2015/07/24 19:20:53:949 Tracks sendQueuedEvents Called…
    2015/07/24 19:21:08:951 Tracks sendQueuedEvents Called…
    2015/07/24 19:21:19:856 <PostSettingsViewController: 0x12ceb3a90> viewDidLoad
    2015/07/24 19:21:23:954 Tracks sendQueuedEvents Called…
    2015/07/24 19:21:26:873 <WPPostViewController: 0x12cd53e00> savePost
    2015/07/24 19:21:26:893 Copying attribute author
    2015/07/24 19:21:26:893 Copying attribute authorAvatarURL
    2015/07/24 19:21:26:893 Copying attribute authorID
    2015/07/24 19:21:26:893 Copying attribute content
    2015/07/24 19:21:26:893 Copying attribute date_created_gmt
    2015/07/24 19:21:26:893 Copying attribute mt_excerpt
    2015/07/24 19:21:26:893 Copying attribute mt_text_more
    2015/07/24 19:21:26:893 Copying attribute password
    2015/07/24 19:21:26:893 Copying attribute pathForDisplayImage
    2015/07/24 19:21:26:893 Copying attribute permaLink
    2015/07/24 19:21:26:893 Copying attribute postID
    2015/07/24 19:21:26:893 Copying attribute postTitle
    2015/07/24 19:21:26:893 Copying attribute post_thumbnail
    2015/07/24 19:21:26:893 Copying attribute remoteStatusNumber
    2015/07/24 19:21:26:893 Copying attribute status
    2015/07/24 19:21:26:893 Copying attribute wp_slug
    2015/07/24 19:21:26:893 Copying attribute metaIsLocal
    2015/07/24 19:21:26:894 Copying attribute metaPublishImmediately
    2015/07/24 19:21:26:894 Copying attribute commentCount
    2015/07/24 19:21:26:894 Copying attribute geolocation
    2015/07/24 19:21:26:894 Copying attribute latitudeID
    2015/07/24 19:21:26:894 Copying attribute likeCount
    2015/07/24 19:21:26:894 Copying attribute longitudeID
    2015/07/24 19:21:26:894 Copying attribute postFormat
    2015/07/24 19:21:26:894 Copying attribute publicID
    2015/07/24 19:21:26:894 Copying attribute tags
    2015/07/24 19:21:26:894 Copying relationship blog
    2015/07/24 19:21:26:894 Skipping relationship original
    2015/07/24 19:21:26:894 Skipping relationship revision
    2015/07/24 19:21:26:894 Copying relationship comments
    2015/07/24 19:21:26:894 Copying relationship media
    2015/07/24 19:21:26:894 Copying relationship categories
    2015/07/24 19:21:26:955 No instructions, do nothing
    2015/07/24 19:21:28:071 post uploaded: Test
    2015/07/24 19:21:28:199 Showing alert with title: Unable to Sync and message The operation couldn’t be completed. (NSXMLParserErrorDomain error 111.)
    2015/07/24 19:21:31:007 No instructions, do nothing
    2015/07/24 19:21:31:091 Copying attribute author
    2015/07/24 19:21:31:092 Copying attribute authorAvatarURL
    2015/07/24 19:21:31:092 Copying attribute authorID
    2015/07/24 19:21:31:092 Copying attribute content
    2015/07/24 19:21:31:092 Copying attribute date_created_gmt
    2015/07/24 19:21:31:092 Copying attribute mt_excerpt
    2015/07/24 19:21:31:092 Copying attribute mt_text_more
    2015/07/24 19:21:31:092 Copying attribute password
    2015/07/24 19:21:31:092 Copying attribute pathForDisplayImage
    2015/07/24 19:21:31:092 Copying attribute permaLink
    2015/07/24 19:21:31:092 Copying attribute postID
    2015/07/24 19:21:31:092 Copying attribute postTitle
    2015/07/24 19:21:31:092 Copying attribute post_thumbnail
    2015/07/24 19:21:31:092 Copying attribute remoteStatusNumber
    2015/07/24 19:21:31:092 Copying attribute status
    2015/07/24 19:21:31:092 Copying attribute wp_slug
    2015/07/24 19:21:31:092 Copying attribute metaIsLocal
    2015/07/24 19:21:31:092 Copying attribute metaPublishImmediately
    2015/07/24 19:21:31:092 Copying attribute commentCount
    2015/07/24 19:21:31:092 Copying attribute geolocation
    2015/07/24 19:21:31:092 Copying attribute latitudeID
    2015/07/24 19:21:31:092 Copying attribute likeCount
    2015/07/24 19:21:31:092 Copying attribute longitudeID
    2015/07/24 19:21:31:092 Copying attribute postFormat
    2015/07/24 19:21:31:092 Copying attribute publicID
    2015/07/24 19:21:31:092 Copying attribute tags
    2015/07/24 19:21:31:092 Copying relationship blog
    2015/07/24 19:21:31:093 Skipping relationship original
    2015/07/24 19:21:31:093 Skipping relationship revision
    2015/07/24 19:21:31:093 Copying relationship comments
    2015/07/24 19:21:31:093 Copying relationship media
    2015/07/24 19:21:31:093 Copying relationship categories
    2015/07/24 19:21:31:115 No instructions, do nothing
    2015/07/24 19:21:31:374 !!! Attempted to create a revision of a revision
    2015/07/24 19:21:32:392 Showing alert with title: Unable to Sync and message The operation couldn’t be completed. (NSXMLParserErrorDomain error 111.)
    2015/07/24 19:21:38:065 No instructions, do nothing
    2015/07/24 19:21:38:956 Tracks sendQueuedEvents Called…
    2015/07/24 19:21:38:960 Track sending events…
    2015/07/24 19:21:39:025 WebEditor error:
    In file: file:///private/var/mobile/Containers/Bundle/Application/7EED71C2-F1CD-418F-84D6-87329C910E6E/WordPress.app/ZSSRichTextEditor.js
    In line: 206
    IndexSizeError: DOM Exception 1: Index or size was negative, or greater than the allowed value.
    2015/07/24 19:21:39:082 Tracks sendQueuedEvents completed…
    2015/07/24 19:21:39:246 Showing alert with title: Unable to Sync and message The operation couldn’t be completed. (NSXMLParserErrorDomain error 111.)
    2015/07/24 19:21:40:879 No instructions, do nothing
    2015/07/24 19:21:41:034 !!! Already have revision
    2015/07/24 19:21:41:306 !!! Attempted to create a revision of a revision
    2015/07/24 19:21:43:547 WebEditor error:
    In file: file:///private/var/mobile/Containers/Bundle/Application/7EED71C2-F1CD-418F-84D6-87329C910E6E/WordPress.app/ZSSRichTextEditor.js
    In line: 206
    IndexSizeError: DOM Exception 1: Index or size was negative, or greater than the allowed value.
    2015/07/24 19:21:43:759 No instructions, do nothing
    2015/07/24 19:21:44:728 WebEditor error:
    In file: file:///private/var/mobile/Containers/Bundle/Application/7EED71C2-F1CD-418F-84D6-87329C910E6E/WordPress.app/ZSSRichTextEditor.js
    In line: 206
    IndexSizeError: DOM Exception 1: Index or size was negative, or greater than the allowed value.
    2015/07/24 19:21:44:890 Showing alert with title: Unable to Sync and message The operation couldn’t be completed. (NSXMLParserErrorDomain error 111.)
    2015/07/24 19:21:54:095 Tracks sendQueuedEvents Called…
    2015/07/24 19:21:54:099 Track sending events…
    2015/07/24 19:21:54:381 Tracks sendQueuedEvents completed…
    2015/07/24 19:22:03:693 No instructions, do nothing
    2015/07/24 19:22:04:890 Showing alert with title: Unable to Sync and message The operation couldn’t be completed. (NSXMLParserErrorDomain error 111.)
    2015/07/24 19:22:06:791 No instructions, do nothing
    2015/07/24 19:22:06:898 Copying attribute author
    2015/07/24 19:22:06:898 Copying attribute authorAvatarURL
    2015/07/24 19:22:06:898 Copying attribute authorID
    2015/07/24 19:22:06:898 Copying attribute content
    2015/07/24 19:22:06:898 Copying attribute date_created_gmt
    2015/07/24 19:22:06:898 Copying attribute mt_excerpt
    2015/07/24 19:22:06:898 Copying attribute mt_text_more
    2015/07/24 19:22:06:898 Copying attribute password
    2015/07/24 19:22:06:898 Copying attribute pathForDisplayImage
    2015/07/24 19:22:06:899 Copying attribute permaLink
    2015/07/24 19:22:06:899 Copying attribute postID
    2015/07/24 19:22:06:899 Copying attribute postTitle
    2015/07/24 19:22:06:899 Copying attribute post_thumbnail
    2015/07/24 19:22:06:899 Copying attribute remoteStatusNumber
    2015/07/24 19:22:06:899 Copying attribute status
    2015/07/24 19:22:06:899 Copying attribute wp_slug
    2015/07/24 19:22:06:899 Copying attribute metaIsLocal
    2015/07/24 19:22:06:899 Copying attribute metaPublishImmediately
    2015/07/24 19:22:06:899 Copying attribute commentCount
    2015/07/24 19:22:06:899 Copying attribute geolocation
    2015/07/24 19:22:06:899 Copying attribute latitudeID
    2015/07/24 19:22:06:899 Copying attribute likeCount
    2015/07/24 19:22:06:899 Copying attribute longitudeID
    2015/07/24 19:22:06:899 Copying attribute postFormat
    2015/07/24 19:22:06:899 Copying attribute publicID
    2015/07/24 19:22:06:899 Copying attribute tags
    2015/07/24 19:22:06:899 Copying relationship blog
    2015/07/24 19:22:06:899 Skipping relationship original
    2015/07/24 19:22:06:899 Skipping relationship revision
    2015/07/24 19:22:06:899 Copying relationship comments
    2015/07/24 19:22:06:900 Copying relationship media
    2015/07/24 19:22:06:900 Copying relationship categories
    2015/07/24 19:22:06:922 No instructions, do nothing
    2015/07/24 19:22:07:158 !!! Attempted to create a revision of a revision
    2015/07/24 19:22:08:234 Showing alert with title: Unable to Sync and message The operation couldn’t be completed. (NSXMLParserErrorDomain error 111.)
    2015/07/24 19:22:09:401 Tracks sendQueuedEvents Called…
    2015/07/24 19:22:09:403 Track sending events…
    2015/07/24 19:22:09:496 Tracks sendQueuedEvents completed…
    2015/07/24 19:22:09:803 No instructions, do nothing
    2015/07/24 19:22:11:111 Showing alert with title: Unable to Sync and message The operation couldn’t be completed. (NSXMLParserErrorDomain error 111.)
    2015/07/24 19:22:11:448 <WordPressAppDelegate: 0x1700bf5c0> applicationWillResignActive:
    2015/07/24 19:22:12:036 <WordPressAppDelegate: 0x1700bf5c0> applicationDidEnterBackground:
    2015/07/24 19:22:12:047 Tracks sendQueuedEvents Called…
    2015/07/24 19:22:12:048 Track sending events…
    2015/07/24 19:22:12:218 Tracks sendQueuedEvents completed…
    2015/07/24 19:35:36:152 <WordPressAppDelegate: 0x1700bf5c0> applicationWillEnterForeground:
    2015/07/24 19:35:36:683 <WordPressAppDelegate: 0x1700bf5c0> applicationDidBecomeActive:
    2015/07/24 19:35:41:093 No instructions, do nothing
    2015/07/24 19:35:44:618 No instructions, do nothing
    2015/07/24 19:35:45:836 Showing alert with title: Unable to Sync and message The operation couldn’t be completed. (NSXMLParserErrorDomain error 111.)
    2015/07/24 19:35:51:696 Tracks sendQueuedEvents Called…
    2015/07/24 19:35:51:700 Track sending events…
    2015/07/24 19:35:51:988 Tracks sendQueuedEvents completed…
    2015/07/24 19:35:57:457 No instructions, do nothing
    2015/07/24 19:35:58:745 Showing alert with title: Unable to Sync and message The operation couldn’t be completed. (NSXMLParserErrorDomain error 111.)
    2015/07/24 19:36:03:617 No instructions, do nothing
    2015/07/24 19:36:03:872 Copying attribute author
    2015/07/24 19:36:03:873 Copying attribute authorAvatarURL
    2015/07/24 19:36:03:873 Copying attribute authorID
    2015/07/24 19:36:03:873 Copying attribute content
    2015/07/24 19:36:03:873 Copying attribute date_created_gmt
    2015/07/24 19:36:03:873 Copying attribute mt_excerpt
    2015/07/24 19:36:03:873 Copying attribute mt_text_more
    2015/07/24 19:36:03:873 Copying attribute password
    2015/07/24 19:36:03:874 Copying attribute pathForDisplayImage
    2015/07/24 19:36:03:874 Copying attribute permaLink
    2015/07/24 19:36:03:874 Copying attribute postID
    2015/07/24 19:36:03:874 Copying attribute postTitle
    2015/07/24 19:36:03:874 Copying attribute post_thumbnail
    2015/07/24 19:36:03:874 Copying attribute remoteStatusNumber
    2015/07/24 19:36:03:874 Copying attribute status
    2015/07/24 19:36:03:875 Copying attribute wp_slug
    2015/07/24 19:36:03:875 Copying attribute metaIsLocal
    2015/07/24 19:36:03:875 Copying attribute metaPublishImmediately
    2015/07/24 19:36:03:875 Copying attribute commentCount
    2015/07/24 19:36:03:875 Copying attribute geolocation
    2015/07/24 19:36:03:875 Copying attribute latitudeID
    2015/07/24 19:36:03:876 Copying attribute likeCount
    2015/07/24 19:36:03:876 Copying attribute longitudeID
    2015/07/24 19:36:03:876 Copying attribute postFormat
    2015/07/24 19:36:03:876 Copying attribute publicID
    2015/07/24 19:36:03:876 Copying attribute tags
    2015/07/24 19:36:03:876 Copying relationship blog
    2015/07/24 19:36:03:877 Skipping relationship original
    2015/07/24 19:36:03:877 Skipping relationship revision
    2015/07/24 19:36:03:877 Copying relationship comments
    2015/07/24 19:36:03:877 Copying relationship media
    2015/07/24 19:36:03:877 Copying relationship categories
    2015/07/24 19:36:03:915 No instructions, do nothing
    2015/07/24 19:36:04:169 !!! Attempted to create a revision of a revision
    2015/07/24 19:36:05:161 Showing alert with title: Unable to Sync and message The operation couldn’t be completed. (NSXMLParserErrorDomain error 111.)
    2015/07/24 19:36:07:008 Tracks sendQueuedEvents Called…
    2015/07/24 19:36:07:009 Track sending events…
    2015/07/24 19:36:07:098 Tracks sendQueuedEvents completed…
    2015/07/24 19:36:22:106 Tracks sendQueuedEvents Called…
    2015/07/24 19:36:37:109 Tracks sendQueuedEvents Called…
    2015/07/24 19:36:52:442 Tracks sendQueuedEvents Called…
    2015/07/24 19:37:11:405 Tracks sendQueuedEvents Called…
    2015/07/24 19:37:26:407 Tracks sendQueuedEvents Called…
    2015/07/24 19:37:26:409 Track sending events…
    2015/07/24 19:37:26:520 Tracks sendQueuedEvents completed…
    2015/07/24 19:37:28:593 All archived log files erased.
    2015/07/24 19:37:29:629 All archived log files erased.
    2015/07/24 19:37:34:110 All archived log files erased.
    2015/07/24 19:37:41:529 Tracks sendQueuedEvents Called…
    2015/07/24 19:37:48:794 No instructions, do nothing
    2015/07/24 19:37:51:069 Showing alert with title: Unable to Sync and message The operation couldn’t be completed. (NSXMLParserErrorDomain error 111.)
    2015/07/24 19:37:56:460 All archived log files erased.
    2015/07/24 19:37:56:532 Tracks sendQueuedEvents Called…
    2015/07/24 19:37:56:534 Track sending events…
    2015/07/24 19:37:56:639 Tracks sendQueuedEvents completed…
    2015/07/24 19:38:11:653 Tracks sendQueuedEvents Called…
    2015/07/24 19:38:11:655 Track sending events…
    2015/07/24 19:38:11:754 Tracks sendQueuedEvents completed…
    2015/07/24 19:38:13:238 <BlogService: 0x1702112e0> syncBlogsForAccount:success:failure:
    2015/07/24 19:38:15:066 No instructions, do nothing
    2015/07/24 19:38:17:400 Showing alert with title: Unable to Sync and message The operation couldn’t be completed. (NSXMLParserErrorDomain error 111.)
    2015/07/24 19:38:26:764 Tracks sendQueuedEvents Called…
    2015/07/24 19:38:26:767 Track sending events…
    2015/07/24 19:38:26:870 Tracks sendQueuedEvents completed…
    2015/07/24 19:38:41:510 <WordPressAppDelegate: 0x1700bf5c0> applicationWillResignActive:
    2015/07/24 19:38:41:880 Tracks sendQueuedEvents Called…
    2015/07/24 19:38:42:307 <WordPressAppDelegate: 0x1700bf5c0> applicationDidEnterBackground:
    2015/07/24 19:38:42:317 Tracks sendQueuedEvents Called…
    2015/07/24 19:38:42:538 <WordPressAppDelegate: 0x1700bf5c0> applicationWillTerminate:
    2015/07/24 19:38:45:888 ===========================================================================
    2015/07/24 19:38:45:889 Launching WordPress for iOS 5.3.1 (5.3.1)…
    2015/07/24 19:38:45:889 Crash count: 0
    2015/07/24 19:38:45:889 Debug mode: Production
    2015/07/24 19:38:45:889 Extra debug: YES
    2015/07/24 19:38:45:889 Device model: iPhone 6 (iPhone7,2)
    2015/07/24 19:38:45:889 OS: iPhone OS 8.4
    2015/07/24 19:38:45:890 Language: en
    2015/07/24 19:38:45:890 UDID: 183A3366-7A2C-4E70-9220-4A84C06E2AFC
    2015/07/24 19:38:45:890 APN token: (null)
    2015/07/24 19:38:45:890 Launch options: (null)
    2015/07/24 19:38:45:890 All blogs on device:
    2015/07/24 19:38:45:893 <Blog Name: Online Gun Coach URL: https://onlineguncoach.com XML-RPC: https://onlineguncoach.com/xmlrpc.php jetpack: ???Jetpack not installed>
    2015/07/24 19:38:45:894 ===========================================================================
    2015/07/24 19:38:46:008 MediaService cleanUnusedMediaFileFromTmpDir
    2015/07/24 19:38:46:179 didFinishLaunchingWithOptions state: 1
    2015/07/24 19:38:46:272 0 media items to check for cleanup
    2015/07/24 19:38:46:273 <WordPressAppDelegate: 0x1742b17c0> applicationDidBecomeActive:
    2015/07/24 19:38:46:347 Feedback response received: {
    “feedback-enabled” = 0;
    }
    2015/07/24 19:38:48:816 <EditSiteViewController: 0x126e70430> viewDidLoad
    2015/07/24 19:38:53:048 <WordPressAppDelegate: 0x1742b17c0> applicationWillResignActive:
    2015/07/24 19:38:53:995 <WordPressAppDelegate: 0x1742b17c0> applicationDidEnterBackground:
    2015/07/24 19:38:54:010 Tracks sendQueuedEvents Called…
    2015/07/24 19:38:54:012 Track sending events…
    2015/07/24 19:38:54:293 Tracks sendQueuedEvents completed…
    2015/07/24 19:38:56:042 Helpshift Disabled
    2015/07/24 19:38:58:953 <WordPressAppDelegate: 0x1742b17c0> applicationWillEnterForeground:
    2015/07/24 19:38:59:829 <WordPressAppDelegate: 0x1742b17c0> applicationDidBecomeActive:
    2015/07/24 19:39:00:605 <BlogService: 0x170204d70> syncBlogsForAccount:success:failure:
    2015/07/24 19:39:14:848 Tracks sendQueuedEvents Called…
    2015/07/24 19:39:14:849 Track sending events…
    2015/07/24 19:39:14:935 Tracks sendQueuedEvents completed…
    2015/07/24 19:39:20:485 No instructions, do nothing
    2015/07/24 19:39:21:698 Showing alert with title: Unable to Sync and message The operation couldn’t be completed. (NSXMLParserErrorDomain error 111.)
    2015/07/24 19:39:29:944 Tracks sendQueuedEvents Called…
    2015/07/24 19:39:29:947 Track sending events…
    2015/07/24 19:39:30:050 Tracks sendQueuedEvents completed…
    2015/07/24 19:39:45:066 Tracks sendQueuedEvents Called…
    2015/07/24 19:40:00:064 Tracks sendQueuedEvents Called…
    2015/07/24 19:40:15:066 Tracks sendQueuedEvents Called…
    2015/07/24 19:40:30:069 Tracks sendQueuedEvents Called…
    2015/07/24 19:40:45:070 Tracks sendQueuedEvents Called…
    2015/07/24 19:40:45:390 <WordPressAppDelegate: 0x1742b17c0> applicationWillResignActive:
    2015/07/24 19:40:45:404 <WordPressAppDelegate: 0x1742b17c0> applicationDidEnterBackground:
    2015/07/24 19:40:45:418 Tracks sendQueuedEvents Called…
    2015/07/24 19:42:26:244 <WordPressAppDelegate: 0x1742b17c0> applicationWillEnterForeground:
    2015/07/24 19:42:26:730 <WordPressAppDelegate: 0x1742b17c0> applicationDidBecomeActive:
    2015/07/24 19:42:33:415 No instructions, do nothing
    2015/07/24 19:42:34:631 Showing alert with title: Unable to Sync and message The operation couldn’t be completed. (NSXMLParserErrorDomain error 111.)

Viewing 1 replies (of 1 total)
  • Thread Starter davellan

    (@davellan)

    2015/07/26 21:34:08:599 ===========================================================================
    2015/07/26 21:34:08:600 Launching WordPress for iOS 5.3.1 (5.3.1)…
    2015/07/26 21:34:08:600 Crash count: 0
    2015/07/26 21:34:08:600 Debug mode: Production
    2015/07/26 21:34:08:600 Extra debug: YES
    2015/07/26 21:34:08:601 Device model: iPhone 6 (iPhone7,2)
    2015/07/26 21:34:08:601 OS: iPhone OS 8.4
    2015/07/26 21:34:08:601 Language: en
    2015/07/26 21:34:08:601 UDID: 183A3366-7A2C-4E70-9220-4A84C06E2AFC
    2015/07/26 21:34:08:602 APN token: (null)
    2015/07/26 21:34:08:602 Launch options: (null)
    2015/07/26 21:34:08:602 All blogs on device:
    2015/07/26 21:34:08:609 <Blog Name: Online Gun Coach URL: https://onlineguncoach.com XML-RPC: https://onlineguncoach.com/xmlrpc.php jetpack: ???Jetpack not installed>
    2015/07/26 21:34:08:609 ===========================================================================
    2015/07/26 21:34:08:846 MediaService cleanUnusedMediaFileFromTmpDir
    2015/07/26 21:34:09:120 didFinishLaunchingWithOptions state: 1
    2015/07/26 21:34:09:232 <WordPressAppDelegate: 0x1702a7bc0> applicationDidBecomeActive:
    2015/07/26 21:34:09:344 Feedback response received: {
    “feedback-enabled” = 0;
    }
    2015/07/26 21:34:09:402 0 media items to check for cleanup
    2015/07/26 21:34:11:334 No instructions, do nothing
    2015/07/26 21:34:13:758 Showing alert with title: Unable to Sync and message The operation couldn’t be completed. (NSXMLParserErrorDomain error 111.)
    2015/07/26 21:34:18:636 Helpshift Disabled

Viewing 1 replies (of 1 total)
  • The topic ‘Error on iPhone App – Unable to Sync, NSXMLParserErrorDomain error 111’ is closed to new replies.