最近 用 Babel V2 2.5.0-dev 搭建了一个网站
http://www.35zhi.com/首先遇到的问题是发帖失败,点“创建”
后会跳转到www.v2ex.com然后我试图在
topic.py 上作以下改动:
can_continue = True
if ('Host' in self.request.headers):
if (self.request.headers['Host'] not in ['
www.35zhi.com', '
shengwuzhi.appspot.com', '
35zhi.com', '
www.v2ex.com', '
v2ex.appspot.com', '
fast.v2ex.com', '
beta.v2ex.com', 'localhost:10000']):
can_continue = False
else:
can_continue = False
if ('User-Agent' not in self.request.headers):
can_continue = False
if ('Cookie' not in self.request.headers):
can_continue = False
if ('Referer' in self.request.headers):
has_v2ex = False
if ('http://localhost:10000' in self.request.headers['Referer']):
has_v2ex = True
if ('
http://www.v2ex.com' in self.request.headers['Referer']):
has_v2ex = True
if ('
http://v2ex.appspot.com' in self.request.headers['Referer']):
has_v2ex = True
if ('
https://www.v2ex.com' in self.request.headers['Referer']):
has_v2ex = True
if ('
https://v2ex.appspot.com' in self.request.headers['Referer']):
has_v2ex = True
if ('
http://www.35zhi.com' in self.request.headers['Referer']):
has_v2ex = True
if ('
http://shengwuzhi.appspot.com' in self.request.headers['Referer']):
has_v2ex = True
if ('
https://www.35zhi.com' in self.request.headers['Referer']):
has_v2ex = True
if ('
https://shengwuzhi.appspot.com' in self.request.headers['Referer']):
不过与此同时,我Deploy的时候遇到以下错误:
GMAutoUpdate: token fetch failed with error '请求超时。' [NSURLErrorDomain -1001]
于是我开VPN再Deploy结果成功了。
然后,在开新帖的时候,遇到一个 500 Sever Error:
http://www.35zhi.com/new/qna或许我中间某些环节操作失误?
求教!
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
https://www.v2ex.com/t/12690
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.