• Hi, I’m using wp 2.5.1 and recently Installed this plugin.
    In the imageExtractor.php I’ve edited this line
    $destinationDir="/wp-content/uploads/";
    and then activated and deactivated and activated again the plugin

    I’ve used these lines to test it.

    <?php if (have_posts()) : ?>
    <?php while (have_posts()) : the_post(); ?>
        <?php image_extractor(true, 1, 395, 0, ”, ”, ‘<div>’, ‘</div>’); ?>
    <?php endwhile; ?>
    <?php endif; ?>

    and also the one suggested in the site:

    <?php
      while (have_posts()) : the_post();
        image_extractor(true, 1, 395, 0, ”, ”, ‘<div>’, ‘</div>’);
        the_excerpt();
      endwhile;
    ?>

    After that my index.php turned blank and didn’t display anything…

    Then the PLUGIN .zip file at the WP plugin directory is different to the one in the developers site which has a hidden folder with another files inside… can it be this? If so, which one works?

    Any idea on what’s going wrong? =( thx.

    http://wordpress.org/extend/plugins/image-extractor/

Viewing 4 replies - 1 through 4 (of 4 total)
  • i did the same 🙂 and i saw blank screen too. ShirouJune are not alone

    Thread Starter Rodeo Imagination

    (@shiroujune)

    Yep. Try Post-thumb plugin, it’s the best plugin for extracting images for different purpouses.

    regards~

    I use image extractor too

    a seperate folder named: extract in the root of the WP

    chmod 777

    $destinationDir="/extract/";

    and it works like a charm 😉

    Thread Starter Rodeo Imagination

    (@shiroujune)

    Thx for the tip Monika =) it will of help to other users, I’ll test your solution one of these days as I am currently using POST-THUMB for the same needs. Regards!

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

The topic ‘[Plugin: IMAGE EXTRACTOR] doesn’t work on WP2.5.1…’ is closed to new replies.