Image Upload/Edit Borked in 2.7
-
Uploading images is a giant pain now (since I’ve moved to 2.7) and I would really like to see this fixed. I would love to fix it myself if I only knew the correct path. Otherwise this is a bug and WP will have to address it.
Uploading images (using either the browser uploader or the flash uploader, using several browsers on several operating systems) will not allow changes to the image display size. I am restricted to only using a full-sized image. Once uploaded I am able to edit the image and reduce the image size, but I am still not able to set it up to create a proper thumbnail and generate the usual link.
All of this can be done manually in the HTML side of the editor.
Here is an example of an image I have been working on:
https://www.soundunreason.com/InkWell/?p=673
I have fixed this page and all four of its images. The original code for the uploaded and WP edited image was thus:
[caption id="attachment_684" align="aligncenter" width="252" caption="Edit Filter: After"]<img class="size-full wp-image-684 " title="editfilter-amarok2" src="https://www.soundunreason.com/InkWell/wp-content/uploads/2009/01/editfilter-amarok2.png" alt="Edit Filter: After" width="252" height="220" />[/caption] <p style="text-align: center;"></p>
I was able to recode the HTML to fix the problems:
[caption id="attachment_684" align="aligncenter" width="300" caption="Edit Filter: After"]<a href="https://www.soundunreason.com/InkWell/wp-content/uploads/2009/01/editfilter-amarok2.png" target="_blank"><img class="size-medium wp-image-684 " title="editfilter-amarok2" src="https://www.soundunreason.com/InkWell/wp-content/uploads/2009/01/editfilter-amarok2.png" alt="Edit Filter: After" width="300" /></a>[/caption] <p style="text-align: center;"></p>
Essentially I am emulating the HTML from images I uploaded before 2.7 was released. As you can see WP is leaving out some important information. Further, the ability to use anything but the full-sized radio button (ie: thumbnail) is completely unavailable in both the uploaders and in the edit dialog.
(The thumbnails are generated through rescaling at page rendering and are never stored on my server, so you can exclude a permissions issue.)
Something changed in 2.7 which has completely broken this functionality. What has changed and what is the official solution?
- The topic ‘Image Upload/Edit Borked in 2.7’ is closed to new replies.