ddeconin
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Ajax Thumbnail Rebuild] Error 500I don’t have access to this limit (shared host) but even when I disable all my plugins it does not work
Forum: Plugins
In reply to: [Plugin: W3 Total Cache] list of javascript that can be moved to footer?Indeed, in the w3tc minify settings you can choose if a .js (Javascript) is embed in <head> (bl,nbl), embed after <body> (bl, nbl) and embed before </body> (bl, nbl).
I was googling for pages that had a list of possible settings for various plugins, but didn’t find any.
I guess having a list in this forum would avoid a lot of trial and error.Forum: Plugins
In reply to: [Plugin: Ajax Thumbnail Rebuild] Error 500would someone be so kind as to help me debugging this ?
Forum: Plugins
In reply to: [Plugin: Ajax Thumbnail Rebuild] Error 500firebug shows that its
action=ajax_thumbnail_rebuild&do=getlist&onlypostthumbs=0
that gives the errorForum: Plugins
In reply to: [Plugin: Dashboard Commander] wordpress.com stats dashboard widget is missingThx for the workaround, ill try it soon !
increasing wordpress memory fixed it
Forum: Plugins
In reply to: [w3tc] Uncaught ReferenceErrorIn the meantime I had modified some minify settings and the issue was gone. Don’t know which change did the trick though….
Forum: Plugins
In reply to: [Plugin: Review Ratings (shortcodes & buttons)] Toolbar dissapears in chromefixed by clearing the cache…
Forum: Plugins
In reply to: [w3tc] Uncaught ReferenceErrorI allways get an ‘unable to send your request’ error on the support tab, but no clue as to what causes the problem.
Forum: Plugins
In reply to: [Plugin: Auto Post Thumbnail] no featured thumbnail appearsHi,
I figured it out finaly. When I moved the blog and I copied the pictures the thumbnail has an ID in the metadata that is not found anymore in the metadata.
I temporary edited the plugin code so that it would not look for that, but instaid go straight to the code piece where it adds the thumbnails to the media library from the url.
I guess I could start from your plugin and make a re-populate media library out of that.Forum: Plugins
In reply to: [Plugin: Auto Post Thumbnail] no featured thumbnail appearsHi adityamooley,
Due to lack of time I have not yet gotten to the bottom of my problem with the media library (see above).
I wanted to add some way to log some debug entries in a file your plugin to see what it does when excuting the code to the scan, but I could not find how.
How do you debug the plugin ? I tried creating and opening a file and then log entries in there, but I cannot get it to work.Thx,
D.
Forum: Plugins
In reply to: [Plugin: Auto Post Thumbnail] no featured thumbnail appearsThe issue seems to be with the fact that I had copied the data from another blog using export/import. I used the steps I found in the codex to modify the url’s of the images inside the post and was able to re-add the images in the media library using another plugin, now there are no links between the images in the post and the media library. I guess that since there is no actual link, your plugin is not able to perform all steps involved in setting the featured thumbnail.
l tried your plugin on the original blog an there it worked.
One feature request: In the batch processing, an ‘override’ current post thumbnail might be handy.Forum: Hacks
In reply to: my add cathegory code does not work in 3.0.1Found it :
$append_terms[0] = $term->name ;
does not work anymore, it needs to be
$append_terms[0] = $term->term_id;
seems that wp_set_post_terms is more picky about what is in the array it gets.Forum: Hacks
In reply to: debug a plugin running in the admin menuBut better solutions for debugging are welcome.
Forum: Hacks
In reply to: debug a plugin running in the admin menuit works now.