上传cpedialog过程中400错误的解决办法

    cpedialog是一个基于Google AppEngine的博客工具,可以用它来在Google AppEngine上建立自己的博客,同时它还可以整合picasaweb相册,在线管理的Feed Reader,支持tag并可以将你的delicious tag展示到网页上。目前已经释出2.0beta版,2.0中增加了许多新功能,如:Google analytics,google books library等。

 

    cpedialog项目主页:http://code.google.com/p/cpedialog/

 

    按照安装指南 安装cpedialog,出现如下错误:

 

Error 400: --- begin server output ---
Creating a composite index failed: This index:
entity_type: "Archive"
ancestor: false
Property {
 name: "date"
 direction: 2
}

is not necessary, since single-property indices are built in. Please remove it from 
your index file and upgrade to the latest version of the SDK, if you haven't
already.
--- end server output ---

 


    这段出错提示的意思应该是:appengine内建了对单属性的索引,因此没有必要对Archive建立索引(Archive只有一个属性:date)。

     因此修改cpedialog目录下的index.yaml文件,将只有单个属性的索引注释掉,重新update即可。

 

     修改后的index.yaml 文件。

 

你可能感兴趣的:(Google,项目管理)