• Resolved jtrip

    (@jtrip)


    Hello, I am trying to use this plugin however when I try to regenerate one or all of my images, after it is done processing there are no new images in my uploads folder. I see no message or other indication of errors or failures. My sizes are registered as so:

    
      add_action( 'after_setup_theme', 'add_image_sizes_setup' );
      function add_image_sizes_setup()
      {
        add_image_size('gallery-thumb', 175, 175, false); 
        add_image_size('sidebar-img', 360); 
        add_image_size('sidebar-gallery', 110, 110, false); 
        add_image_size('medium', 181, 181, false); 
        add_image_size('four-col-grid', 262.5, 148, false); 
      }
    

    I have also tried it with the add_image_size functions not wrapped in a function with the add_action.

    I thought it could be a permissions issue, but I haven’t had any issues while uploading and would expect an error message if it tried to create a file and could not.

    • This topic was modified 7 years, 6 months ago by jtrip.
Viewing 1 replies (of 1 total)
  • Thread Starter jtrip

    (@jtrip)

    My bad (partially), WP support search is terrible so I didn’t see how common this issue is.

    I just needed to install php gd.

    on Debian Jessie, running PHP5.6 I needed to install:
    php5-gd
    which I found by looking through the results of:
    apt-cache search gd | grep php

    for the uncomfortable that’s something like:
    sudo apt-get install php5-gd
    and then
    sudo systemctl restart apache2
    (if you are running systemd, which is default on Jessie)

    • This reply was modified 7 years, 6 months ago by jtrip.
    • This reply was modified 7 years, 6 months ago by jtrip.
Viewing 1 replies (of 1 total)
  • The topic ‘Regeneration fails without indication’ is closed to new replies.