What would be the advantages/disadvantages of remote plugin installation?
Also look into this tool – http://markjaquith.wordpress.com/2010/07/24/plugin-installer-tool/
Also look into this tool – http://markjaquith.wordpress.com/2010/07/24/plugin-installer-tool/
I figured I’d just look in the Android application’s source code to see how it communicates. You can quickly see XML-RPC in the source. So another way to access the blog is using WordPress XML-RPC support. It was improved and enabled by default in version 3.5 very recently. I don’t understand why they brought it … Read more
the XML-RPC protocol can do that for you, look up how to use it with curl: http://shoaibmir.wordpress.com/2009/03/10/using-curl-for-xmlrpc-calls/ and what the actual tags are: http://codex.wordpress.org/XML-RPC_Support
Built in to the current version of WordPress there is “Remote Publishing” settings for Atom or XML-RPC, but that is geared towards programs that help you blog outside of your WordPress control panel. You can configure it in the Settings > Writing area of your site’s WordPress dashboard. If you want to publish the content … Read more
Remote REST request to check login status
CORS & Remote access to WP via RestAPI
I wonder why there seem to be so few people having trouble with this. It’s a major bug and thus I created the following ticket just now: https://core.trac.wordpress.org/ticket/18069 Not an answer, but just FYI.
This doesn’t seem to be error coming from WP itself, but is likely generated by curl, which WP likes to pick first for network requests. I’d try to replicate request with curl by hand on your hosting and elsewhere. If you are content with doing network request in other way you can tweak to make … Read more
You could use a custom field for a post which is saved via XMLRPC by using the action hook xmlrpc_publish_post. wpse_from_xmlrpc() could than check this custom field. <?php add_action( ‘xmlrpc_publish_post’, ‘add_xmlrpc_postmeta’ ); function add_xmlrpc_postmeta( $post_id ){ update_post_meta( $post_id, ‘send-by-xmlrpc’, 1 ); } function wpse_from_xmlrpc( $post_id ){ $xmlrpc = get_post_meta( $post_id, ‘send-by-xmlrpc’, true ); if( $xmlrpc … Read more
Connect to live db whilst working locally