T17i
Forum Replies Created
-
Forum: Plugins
In reply to: [Wordpress Media Flickr] Can find photos but can not select to insertHello,
I have the WordPress 3.2.1 version and 1.1.2 for the plugin, it’s work well.When you click on one photo, do you have the dialog box who ask the size and alignment?
Have you a javaScript error? (in firefox you can open the Js consol with CTRL+SHIFT+J)
Forum: Plugins
In reply to: WordPress-media-flickr: add new sizeyup,
If you want use new size. You find the label returned by the API function: flickr.photos.getSizes
Its “medium 640”You need add in the js:
this.sizes['Medium 640'] = 'size_z';
Add the radio input in the media-flickr.php:
<div id="div_size_z"><input type="radio" id="size_z" name="size" value="size_z" /> <label for="size_z"><?php _e('Medium 640', 'wp-media-flickr') ?> (640 x 480)</label></div>
that all
Forum: Plugins
In reply to: [Post Thumbnail Editor] [Plugin: Post Thumbnail Editor] Images Not SavingI have try your last change, but same problem the old file already exist and aren’t deleted, new file can’t be renamed.
I’ have found why:
The $old_file because $data[‘file’] is not set but $data[‘current’][‘file’] is set.In function.php i have:
if ( isset( $data['current']['file'] ) ){ $old_file = $dir . DIRECTORY_SEPARATOR . $data['current']['file']; }
Forum: Plugins
In reply to: [Post Thumbnail Editor] [Plugin: Post Thumbnail Editor] Images Not SavingAs information i currently use local web server package named xampp with PHP Version 5.2.9.
Forum: Plugins
In reply to: [Post Thumbnail Editor] [Plugin: Post Thumbnail Editor] Images Not SavingHello,
My probleme seem the same.
The new file are not renamed because it already exist(the old have the same name).you can see my debugging log:
https://dpastey.appspot.com//Fm8G/for fix i have unlink( $new_file ); before renamed:
rename( $good_file, $new_file );not sure it’s the right solution…