Viewing 13 replies - 31 through 43 (of 43 total)
  • Thread Starter jefferisp7

    (@jefferisp7)

    UPDATE: it appears these problems are all related to the ownership and permission issue of WordPress installs of plugins and themes. Apparently, when Pair.com uses SIM, it installs WordPress with ownership as Nobody, standard for Apache servers. But when you then use WordPress to install plugins, it writes the ownership as nobody, so images and plugins are creating folders without proper permissions.

    This isn’t a problem I guess if you do everything via sftp as the owner. But it makes working within WP problematic and does not save you time.

    I am having the same problem and I am not using any caching

    Thread Starter jefferisp7

    (@jefferisp7)

    Try this: maxxemm wrote:

    I got the same problem after upgrading WP from 3.6.1 to 3.8.1.
    It looks like there was a change in wp-includes/media.php function wp_constrain_dimensions(): width and height is set to max(1, $current_<w/h> * $ratio). I have changed:
    $w = max ( 1, intval( $current_width * $ratio ) );
    $h = max ( 1, intval( $current_height * $ratio ) );
    to
    $w = intval( $current_width * $ratio );
    $h = intval( $current_height * $ratio );
    as it was in v3.6.
    It’s a hack rather than fix, so do it at your own risk.

    A few other have had this happen and it is always a plugin, permission or caching problem. I grabbed your image and posted it at http://test.savethecolors.com/test-of-png/

    That site is running twenty ten with no plugins.

    Thread Starter jefferisp7

    (@jefferisp7)

    we tested with Twenty 14 and no plugins and deleted super cache and the problem still existed. We haven’t updated since then.

    This is a big problem! I have exactly the same problem with one of my sites.

    yes I spent an hour wondering where my inserted media/pic was going, little did I know it was there just looked like a period 1px by 1px, what is the fix for this

    Hi guys.

    I had the same problem and after hours spend on searching for solution decides to look into it myself.

    Basically I had 9 different thumbnail sizes set in my function.php after limiting the amount to 8 by removing once image size everything started to work as it should.

    I have no idea why, but it seem that reducing the amount of generating images helped.

    GWKaplan

    (@gwkaplan)

    Hi jefferisp7 I have the same problem. Did you find any solutions?

    I am having the same problem as the others with the insert media file generating a 1px image. The happened to be bmp images and not jpgs, wonder if that caused the problem?

    Seems to me it has a problem with bitmapped images–when I’m home tonight I’ll convert the bmps to jpgs and will report if that solved the problem.

    My father in law is having a similar problem. He’s uploading images to the media library–using Safari (have to figure out what version he’s using)– but they are uploading as 1 pixel width and 1 pixel height. This, in turn, results in 1) no thumbnail present for the photo in media library and 2) the photo inserted into a post as width=”1″ and height=”1″. Accordingly, he’s asked me to help troubleshoot. The workaround is to manually adjust the HTML code with different width/height dimensions (pixels or percentages). However, it doesn’t fix the root of the problem.

    Interestingly, when he sends me the images to upload and I do it (PC / Firefox 30.0), they work fine, which makes me believe it isn’t something server-side. I’m going to test and have him download firefox or chrome and see if that works. Will report more later.

Viewing 13 replies - 31 through 43 (of 43 total)
  • The topic ‘Images will NOT post in 3.8 WRITING size as 1px by 1px’ is closed to new replies.