Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #511057

    When I try to upload new media to the site, upload arrives to 100% abd I get a thumbnail that is of a broken image. Errore HTTP.
    I just can’t seem to figure it out. Help?

    Thank you!

    #511061

    Ok, I can now upload images, but not so big, any idea on how to unlock this?

    THX

    #511097

    Hey!

    Thank you for the credentials, but we don’t have a link to your website.

    Cheers!
    Dake

    #511183
    #511258

    Hi,

    The maximum file size seems to be 25mb, how big are the images you are trying to upload? You could try to deactivate all plugin to see if one is causing a conflict.

    Best regards,
    Rikard

    #511277

    max 4 MB.
    I had this problem since I moved the site from a subfolder to the root.

    #511378

    Hey!

    Try adding this at the very end of your theme / child theme functions.php file:

    function ava_image_sizes() { 
    	add_image_size('masonry', 0, 0);
    	add_image_size('magazine', 0, 0);
    	add_image_size('widget', 0, 0);
    	add_image_size('featured', 0, 0);
    	add_image_size('featured_large', 0, 0);
    	add_image_size('extra_large', 0, 0);
    	add_image_size('portfolio_small', 0, 0);
    	add_image_size('gallery', 0, 0);
    	add_image_size('entry_with_sidebar', 0, 0);
    	add_image_size('entry_without_sidebar', 0, 0);
    	add_image_size('square', 0, 0);
    }
    add_action( 'after_setup_theme', 'ava_image_sizes', 11 );

    Cheers!
    Josue

    #511424

    It seems to work, thanks!!!

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘canno't upload media’ is closed to new replies.