Windows Live Writer 我认为是最复杂的应用程序 编辑 和 发布 博客上的文章,该应用程序可用于两个托管博客 wordpress.com,,,, SharePoint,,,, 博主,,,, 打字以及那些 自托管。     
连接之前 Windows Live Writer 使用平台的博客 WordPress,我们首先必须打勾 远程发布。 原子出版协议 和 XML-RPC 从 仪表板 > 设置 > 写作。

连接后,Windows Live Writer导入了博客的某些元素,包括 图形主题 (可选)和 标签这。当博客有一个 数据库 非常一致,尤其是 标签表-uri(大数字)可能有可能 博客是主机的服务器 不允许WLW的连接并捍卫以下错误:
无效的服务器响应 – 从博客服务器接收到的WP.GETTAGS方法的响应无效。


发生此错误,尤其是在我们要导入标签列表时(wp_tags)在Windows Live Writer中。
错误详细信息:
Unexpected Error Occurred     
An unexpected error has occurred within the application.
WindowsLive.Writer.Extensibility.BlogClient.BlogClientInvalid     
ServerResponseException: Invalid Server Response - The response to the wp.getTags method received from the blog server was invalid:
Invalid response document returned from XmlRpc server     
   at WindowsLive.Writer.BlogClient.Clients.XmlRpcBlogClient.      
CallMethod(String methodName, XmlRpcValue[] parameters)      
   at WindowsLive.Writer.BlogClient.Clients.MetaweblogClient.      
WordPressGetKeywords(String blogId)      
   at WindowsLive.Writer.BlogClient.Clients.MetaweblogClient.      
GetKeywords(String blogId)      
   at WindowsLive.Writer.BlogClient.Blog.RefreshKeywords()      
   at WindowsLive.Writer.PostEditor.PostPropertyEditing.      
SharedPropertiesController.<.ctor>b__0(Object sender, EventArgs args)      
   at System.Windows.Forms.Control.OnClick(EventArgs e)      
   at WindowsLive.Writer.Controls.BitmapButton.OnClick(EventArgs e)      
   at System.Windows.Forms.Control.WmMouseUp      
(Message& m, MouseButtons button, Int32 clicks)      
   at System.Windows.Forms.Control.WndProc(Message& m)      
   at System.Windows.Forms.ScrollableControl.WndProc(Message& m)      
   at System.Windows.Forms.ContainerControl.WndProc(Message& m)      
   at System.Windows.Forms.UserControl.WndProc(Message& m)      
   at System.Windows.Forms.Control.ControlNativeWindow.      
OnMessage(Message& m)      
   at System.Windows.Forms.Control.ControlNativeWindow.      
WndProc(Message& m)      
   at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)错误的原因:
在进口时( 标签 在我们的情况下)托管博客的服务器比平常更需要 内存限制 (RAM)分配给执行 PHP脚本 它已经过时了。因此,服务器拒绝连接或停止导入。 “从XMLRPC服务器返回的无效响应文档“。
解决错误:
与错误一样 “metaweblog.newpost“,解决方案也来自 .htaccess。我们将不得不添加一行 MAREASCA内存限制 分配给博客所在的Web托管帐户。为此,添加.htaccess行:
value memory_limit 256M值 256m 一个 “memory_limit” 放 最大表达尺寸的贝蒂 在哪一个 PHP脚本可以使用它。限制 “memory_limit” 被隐式建立在 128m 通过文件 php.ini (config-ul php_ini_all 在PHP服务器上)在大多数重置的服务器上 PHP 5.3.10。过去 PHP 5.2.0 值为 8m,随着版本的发布 PHP 5.2.0,已将此值设置为 16m。    
进口之前 标签 在WLW 您可以将此限制增加超过1.28亿,但您还必须考虑到 Web服务器的总内存。指示 “memory_limit” 实际上,可以防止php脚本写错,以消耗服务器上可用的所有内存。建议在导入之后将此行从.htaccess删除,以返回由 php.ini。 
如果您无法访问该值的修改设置 “memory_limit”在这种情况下 “敏感的” 服务器的。
 
			