renmiri
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: how to export *some* categories of posts from WP 1.5 to WP 2.0I have an XML export for a category you set at wp_config.php but it is for WP 2.0 here
https://blogger-bee.com/index.php/Blog_to_Wiki_importThe good news is that all you have to do on 1.5 is change one line on Eric Pierce’s Export script
https://epierce.blog.usf.edu/2005/04/26/wpexport-02On Eric’s MT.php change the SQL query to say which category you want. If you wanted Category 99 for instance you would do:
$query = “SELECT $wpdb->posts.post_date, …yada..yada..yada..JOIN $wpdb->categories ON ($wpdb->post2cat.category_id = $wpdb->categories.cat_ID) WHERE $wpdb->post2cat.category_id = 99 “You can do a similar change on his SQL.php to get an SQL Export for the cat you want
Forum: Plugins
In reply to: Developers Question? Accessing Comments through Xml-Rpc WP 2.0A pretty simple export from WP 1.5 or older to Movable Type is available at
https://epierce.blog.usf.edu/2005/04/26/wpexport-02For a 2.0 version with added Export to XML and Export to Wikipedia functionality go here
https://blogger-bee.com/index.php/Blog_to_Wiki_importI also have an XML-RPC call to WP here if you want to build from there..
https://blogger-bee.com/wp/testwp1.php and https://blogger-bee.com/wp/testwp.phpForum: Fixing WordPress
In reply to: export to MTPierce’s plugin is an WordPress Export plugin that exports to Movable Type or SQL and it works very well. For the 1.5 or older version go to the author’s page
https://epierce.blog.usf.edu/2005/04/26/wpexport-02For a 2.0 version with added Export to XML and Export to Wikipedia functionality go here
https://blogger-bee.com/index.php/Blog_to_Wiki_importPS: To make Eric’s script work for 2.0 all you have to do is change the field user_nickname to display_name on the SQL call at his MT.php file. My GZ file has the correct MT.php and some extra goodies
Forum: Fixing WordPress
In reply to: WordPress 2.0 exported into free WordPress helpPierce’s plugin is an WordPress Export plugin that exports to Movable Type or SQL and it works very well. For the 1.5 or older version go to the author’s page
https://epierce.blog.usf.edu/2005/04/26/wpexport-02For a 2.0 version with added Export to XML and Export to Wikipedia functionality go here
https://blogger-bee.com/index.php/Blog_to_Wiki_importPS: To make Eric’s script work for 2.0 all you have to do is change the field user_nickname to display_name on the SQL call at his MT.php file. My GZ file has the correct MT.php and some extra goodies
Forum: Fixing WordPress
In reply to: Export from WordPressThere is an WordPress Export plugin that exports to Movable Type or SQL and it works very well. For the 1.5 or older version go to the author’s page
https://epierce.blog.usf.edu/2005/04/26/wpexport-02For a 2.0 version with added Export to XML and Export to Wikipedia functionality go here
https://blogger-bee.com/index.php/Blog_to_Wiki_import