URL: http://en.forums.wordpress.com/topic.php?id=5897&replies=5
I was looking for a way to post new articles remotely, and cross domain. I only needed to post new articles, not read, edit or anything like that, so I did not need a whole GUI or any other Interface like those WP-Desktop-clients. I wrote this script which calls up my WP server and posts the article. WP handles it accordingly. Now, it works well, but there is a long wait with the fsockopen, it seems to continue until a timeout. if anyone know how to fix that, let me know. please. Beyond that, this isnt perfect, and is obviously left open for changes that will accustom to your own needs. some of this code i used and altered and modified some functions from xmlrpc.php. completely modded tho...
There are actually going to be 2 scripts. 1 is on the WP server, and one will be on the web server that is connecting to Wordpress.
The method. I have to send all the Article peices (title, post, categorys, blah balh) to this script via POST. this could be done with a form or something.
Source: http://en.forums.wordpress.com/topic.php?id=5897&replies=5
<?php // Some browser-embedded clients send cookies. We don't want them. include('./wp-config.php'); //Function to check user function login_pass_ok($user_login, $user_pass) { if (!user_pass_ok($user_login, $user_pass)) { return false; } return true; } //This function will post into wp function blogger_newPost($post_title, $post_content, $user_login, $user_pass, $post_category) { global $wpdb; if (!login_pass_ok($user_login, $user_pass)) { return false; } $cap = 'publish_posts'; //publish_posts; $user = get_userdatabylogin($user_login); if ( !user_can_create_post($user->ID)){ return false; } $post_status = 'publish'; $post_author = $user->ID; foreach($post_category as $key=>$val){ $post_category[$key] = get_cat_ID($val); } //$post_categories = array_unique($post_categories); $post_date = current_time('mysql'); $post_date_gmt = current_time('mysql', 1); $post_data = compact('post_author', 'post_date', 'post_date_gmt', 'post_content', 'post_title', 'post_category', 'post_status'); $post_ID = wp_insert_post($post_data); if (!$post_ID) { return false; } return $post_ID; } //the wp username and pass must be send via POST. you may want to improve on this. //GET THE POSTED VARS $logon = $_POST['logon']; $pass = $_POST['pass']; $title = $_POST['title']; $content = $_POST['content']; //$content = htmlspecialchars_decode($content); $category = $_POST['category']; if( login_pass_ok($logon, $pass) == false){ echo "FAIL - INVALID LOGON OR PASS"; }else{ $posted = blogger_newPost($title, $content, $logon, $pass, $category); if ($posted == false){ echo "FAIL - INSERT QRY ERROR"; }else{ echo "SUCCESS"; } } ?> **************************************** <html> <head><!--I am skipping this --></head> <body> <!-- get the article info with this form --> <form action="<?=$SERVER['PHP_SELF'];?>" method="POST"> <table> <tr> <td align='right'>Title:</td><td><input type='text' name='title'></td> </tr><tr> <td align='right'>Article</td><td><textarea name='article'></textarea></td> </tr><tr> <td align='right'>WP User Login:</td><td><input type='text' name='logon'></td> </tr></tr> <td align='right'>WP User Pass:</td><td><input type='password' name='pass'></td> </tr><tr> <td colspan='2' align='center'><input type='submit' name='submit' value='publish_me'></td> </tr> <!-- Note: Im skipping the categorys! u can make a form for category choice if you want to! --> </table> </form> <?php // once the form is submitted we must send the contents to our WP for publishing //$category = urlencode($_POST['catagory']); //once everything is set, we just need to POST these to the remote_post.php which in // on the WP server. //open remote posting script //set the headers $req = 'title='. $title . '&content=' . $content . '&category=' . $category . '&logon=' . $logon . '&pass=' . $pass; $header .= "POST /path/to/remote_post.php HTTP/1.0rn"; $header .= "Host: www.usprchive.comrn"; $header .= "Content-Type: application/x-www-form-urlencodedrn"; $header .= "Connection: Closernrn"; $SUCCESS = false; //here are my own personal notes. ill leave them for you to decipher //-- NOTE!:!:!:! The FEOF Seems to be very SLOW! I think that this is //-- because fter "success" is written, feof still dose not return //-- TRUE - causing the while loop to continue until the socket times //-- out - which is 60 seconds. so it takes a minute to complete this //-- loop. UGH! I am working on various methods here - im not sure what //-- it is and I am not sure if that is the problem. nothing I do changes //-- it, it is going on and on until it times out. I think its this because //-- it is approx. 1 minute loading when actually running this script. //check the connection if (!$fp) { $status_message = "$errstr ($errno)"; $res = "FAILED"; } // if connect ok write the POST request variables else { //read the results for a "SUCCESS" -ful DB insert //what happens here is we scan through the opened page (remote_host.php) // line by line. if we find a line that says "SUCCESS" than the operation // worked. if not the line says "FAILED'... well you know while (!feof($fp) && $SUCCESS==false) { //success = false - trying to fix the feof problem did not work $SUCCESS = true; } $last_line = $res; } } } if ($SUCCESS == true){ //If everything went OK! do something - i didnt put my actions, as they //werent relevant. you could display a successful message or status or something }else{ //same thing here. the little thing will display the last line that was //displayed on remote_post.php - since i made it dispay an error message echo $last_line; } } ?> </body> </html>
Comments
Subscribe to comments
You need to login to post a comment.

Hey, First off, Thanks, this seems to be exactly what I'm looking for. I'm just not exactly sure what is supposed to be replaced/how to replace it in the second script. I assume its just things in lines 96-101 but I cant get it to work. Weird thing is I don't get any error messages back. Can you offer any help? Thanks again!
This looks useful. I need to modify it to pick up the data from an existing cms (I'm converting an old site), including the post date. I have several thousand posts to transfer, but the old cms is non-standard so there's nothing readymade to do this. I think I saw this on another site where you said you were picking up articles from a database, so do you have any tips on how to achieve this without human intervention?