When using Windows Live Writer for blogging with Drupal you have to consider a few things, when setting up your account as explained here for example.
But even then, you cannot download any categories from Drupal for use in Windows Live Writer. There is a small bug in the blogapi.module (located under /modules/blogapi/ in your Drupal installation).
Inside this file there is a function at the end of it named _blogapi_get_node_types().
function _blogapi_get_node_types() {
$available_types = array_keys(array_filter(variable_get('blogapi_node_types', array('blog' => 1))));
$types = array();
foreach (node_get_types() as $type => $name) {
if (node_access('create', $type) && in_array($type, $available_types)) {
$types[] = $type;
}
}
You simply have to delete the red marked parts and everything will work as expected.
Comments
Wann kommt...
Sat, 2008-08-30 15:16 by Uwe Keim (not verified)...ein SFF-Update? :-)
Der Uwe :D ...ich bin kräftig
Sat, 2008-08-30 15:19 by Jens SchallerDer Uwe :D
...ich bin kräftig dabei, aber habe noch einiges zu tun. Im September auf jeden Fall!
Cool!
Tue, 2008-09-02 07:31 by Uwe Keim (not verified)Ich freu mich!
Thanks for the fix.
Tue, 2008-08-26 18:47 by John Lockwood (not verified)It worked nicely.
Thanks
Thu, 2008-06-05 20:47 by Robert MacLean (not verified)Only thing for tags that worked with 6.2!
Thank you!
Thu, 2008-06-05 21:49 by Jens SchallerI'm glad this was of use for you.