Viewing 3 replies - 16 through 18 (of 18 total)
  • Yes that looks correct.

    I have also discovered another issue. While the above fix works and resizes the images the meta data of the image isn’t correct. WordPress will still report the original file size even though it’s been resized. I looked at the desktop uploader and yet again the code is different. On the desktop uploader they first handle the upload and then save the data. In xml-rpc they do the opposite. When I moved the handle upload part above the save data it works as expected. It’s unfortunate that wordpress isn’t more consistent.

    Jason

    (@verysimple)

    This is really a great help @oceanicsurfer, thanks for putting in the work. If you have a minute, would you mind testing this? Set your xml-rpc class back to the way it was (broken) and insert this bit of code into imsanity.php at line 121:

    // this is a work-around for uploads via class-wp-xmlrpc-server.php
    // @see https://www.ads-software.com/support/topic/images-dont-resize-when-uploaded-via-mobile-device
    if (!file_exists($oldPath)) {
        $ud = wp_upload_dir();
        $oldPath = $ud['path'] . DIRECTORY_SEPARATOR . $oldPath;
    }
    mrjarbenne

    (@mrjarbenne)

    I gave this a shot and the WordPress iOS app got stuck trying to upload the picture, failing to ever complete. At that point you need to force quit the app otherwise it’s stuck saying you need to wait for the media to upload.

Viewing 3 replies - 16 through 18 (of 18 total)
  • The topic ‘Images don't resize when uploaded via mobile device’ is closed to new replies.