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.