wp_generate_attachment_metadata generates 503 Service Unavailable or 500 timeout errors
wp_generate_attachment_metadata generates 503 Service Unavailable or 500 timeout errors
wp_generate_attachment_metadata generates 503 Service Unavailable or 500 timeout errors
How to host different file formats/types for a media attachment without creating multiple attachments?
How to change upload directory based on frontend form input name or ID?
Is 700,00 jpgs too many for a WordPress site.?
This doesn’t answer the specific issue I was having but does resolve the problem. The cause of my issue was that wp_unique_filename was taking longer and longer as the month went on when we had more images in our media library. We were already namespacing them with year/month dir structure. I ended up adding a … Read more
Regenerate thumbnails unexpected resolution (96 x 96)
Try using media_handle_upload() instead, solved a similar problem for me.
Try this theme I helped build: http://upthemes.com/themes/garage-band/ It does everything you are asking.
Skip the Plugin. You don’t need a PLugin merely to insert all images attached to a post. Just use the shortcode (also available as an “Insert Gallery” button in the Media Manager on the Edit Post screen). EDIT IF you want to display commentary for each one, here’s a suggestion: Use the “caption” field in … Read more
Have you considered using WP’s add_image_size function? Here’s the Codex entry. Basically you could add all the sizes you require throughout your theme via your functions.php and then call the appropriate size in your page/post template. Good luck!