archon810
Forum Replies Created
-
Indeed, this looks like it’s missing. You probably need to drop the wp_relevanssi_* tables:
wp_relevanssi
wp_relevanssi_cache
wp_relevanssi_excerpt_cache
wp_relevanssi_log
wp_relevanssi_stopwordsand remove all the options from wp_options:
delete from wp_options where option_name like 'relevanssi%' limit 100;Looks like this plugin is no longer maintained, so don’t hope for an answer. That’s unfortunate.
Forum: Plugins
In reply to: [Solr for WordPress] [Plugin: Solr for WordPress] Custom Theme Integration?I’m also not sure why the plugin doesn’t integrate into regular search results the same way, for example, http://wordpress.org/support/plugin/relevanssi does.
There’s a lot of unnecessary work before the plugin starts working right and doesn’t break the search page UI otherwise.
So was this ever fixed properly?
Forum: Plugins
In reply to: [Liveblog] [Plugin: Liveblog] Image upload sizesI see most of the work is already done – the POST request returns something like
{“type”:”success”,”data”:{“id”:65564,”title”:”Screenshot_2012-08-30-18-09-11″,”filename”:”nexusae0_Screenshot_2012-08-30-18-09-11.png”,”url”:”http:\/\/domain.com\/wp-content\/uploads\/2012\/09\/nexusae0_Screenshot_2012-08-30-18-09-11.png”,”meta”:{“width”:”720″,”height”:”1280″,”hwstring_small”:”height=’96’ width=’54′”,”file”:”2012\/09\/nexusae0_Screenshot_2012-08-30-18-09-11.png”,”sizes”:{“thumbnail”:{“file”:”nexusae0_Screenshot_2012-08-30-18-09-11-150×150.png”,”width”:”150″,”height”:”150″},”medium”:{“file”:”nexusae0_Screenshot_2012-08-30-18-09-11-351×625.png”,”width”:”351″,”height”:”625″},”large”:{“file”:”nexusae0_Screenshot_2012-08-30-18-09-11-576×1024.png”,”width”:”576″,”height”:”1024″},”wptouch-new-thumbnail”:{“file”:”nexusae0_Screenshot_2012-08-30-18-09-11-92×92.png”,”width”:”92″,”height”:”92″}},”image_meta”:{“aperture”:”0″,”credit”:””,”camera”:””,”caption”:””,”created_timestamp”:”0″,”copyright”:””,”focal_length”:”0″,”iso”:”0″,”shutter_speed”:”0″,”title”:””}}}}
So the JS already has all the uploaded sizes. The work is almost done 🙂
Forum: Plugins
In reply to: [Liveblog] Can't drag and drop images into liveblogFWIW, I’m using FF 16 on Win7x64, and drag&drop works for me.
http://domain.com/wordpress/wp-includes/js/plupload/plupload does not exist – that directory contains these files:
changelog.txt handlers.dev.js handlers.js license.txt plupload.flash.js plupload.flash.swf plupload.html4.js plupload.html5.js plupload.js plupload.silverlight.js plupload.silverlight.xap wp-plupload.dev.js wp-plupload.jsWhen I upload a file, I get a POST request to http://domain.com/wp-admin/admin-ajax.php with something like:
name Screenshot_2012-09-03-11-28-01.png
action upload-attachment
_wpnonce XXXXXXXXX
async-upload Screenshot_2012-09-03-11-28-01.png
Size 224.53 KB (229922 bytes)
Content-Type image/pngNot too sure what’s going on, just mostly providing some feedback from a fellow user.
@ralph83 hmm, didn’t get any email, looks like my contact form is borked. I can’t offer any specific tips – you just have to have persistence, a good subject, decent design, and lots of luck.
@ralph83 Yup, http://www.androidpolice.com. It’s more than 6mln actually (monthly).
@por_ I created this a few years back and have been reliably using it ever since on a production site with 6mln pageviews: http://beerpla.net/projects/smartdomdocument-a-smarter-php-domdocument-class.
I just compared your code and mine and turns out this problem is well known and I already resolved it in SmartDOMDocument. I even noted the garbled output in the post, but of course after these years forgot all about it.
Check it out.
Glad to see some fast action here as well as another report confirming the same problem within 3 minutes of mine.
I had the same problem after updating, but it was solved by switching from Flash to HTML5 in the plugin settings and re-saving. Not sure what that’s all about.
For me both of the top solutions weren’t enough, but the 3rd one you just added did the trick. Thanks, Lester.
Forum: Plugins
In reply to: [JSON API] [Plugin: JSON API] Security Issues and Stolen Information?By having a website on the web, you’re also in danger of someone scraping you – it’s not as structured, but is being done on a regular basis every day. So really, it’s the same thing, you’re just making the data a little more available. I’d say for those who steal content, it’s easier to just scrape than use this API that you may or may not provide.
Ticket opened with wptouch support here: http://www.bravenewcode.com/support/topic/wptouch-force-suppresses-comment-bubbles-if-disqus-is-installed (you need to be logged in to their Pro support to see it, so the link is useful to BraveNewCode staff and wptouch pro members).
I hope this will lead to a solution that doesn’t require hacks like the code above (which btw still doesn’t show comment bubbles on individual post pages).
OK, in wptouch-pro, all that I needed to do in the end is adding this to the custom CSS for mobile:
.disqus .comment-bubble { display: block !important; }