• Dear all,

    This is my first post here, so I hope you can help! I am attempting to insert images in my blog posts, but I either get a http error message, or the screen just goes blank and I cannot see the image. This is most frustrating! My server runs PHP5 and I have tried disabling plugins but I am afraid that is as far as my knowledge runs.

    The images I am attempting to insert are quite large, digital camera size so around 2000px but the file size is well within the limits. The image sizes I thought had constricting parameters but the few times the image has gone in, it has been full size.

    I am not sure if you need any other information, if so I’ll be happy to provide.

    Many thanks,

    David

Viewing 2 replies - 1 through 2 (of 2 total)
  • perhaps you need to bump php memory
    try one of these

    1. Try adding this line to your wp-config.php file:
    define('WP_MEMORY_LIMIT', '128M');
    
    2. If you have access to your PHP.ini file, change the line in PHP.ini
    If your line shows 32M try 128M:
    memory_limit = 64M ; Maximum amount of memory a script may consume (64MB)
    
    3. If you don't have access to PHP.ini try adding this to an .htaccess file:
    php_value memory_limit 128M

    Thread Starter classiccarriages

    (@classiccarriages)

    Hi Samuel

    I really appreciate the reply. I will try these methods and let you know if they were succesful!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Problems with Image uploading’ is closed to new replies.