First time here? Check out the FAQ!
1

Unparsed token in badge page template

Googlebot reported an odd server error on my hosted Askbot site today:

URL: http://expats.askbot.com/badges/%(feedback_faq_url)s

Error details

Last crawled: 4/19/12
First detected: 4/19/12
Googlebot couldn't access this page because the server didn't understand the syntax of Googlebot's request.

Looking at the badges page on my site, I notice that there appears to be an unprocessed token in the markup of the page:

Link to feedback form on the badges page with unparsed %(feedback_faq_url) token in href attribute.

todofixthis's avatar
1.3k
todofixthis
asked 2012-04-21 13:11:33 -0500
Evgeny's avatar
13.2k
Evgeny
updated 2012-04-21 19:31:06 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

2

Yes, it happens to me also, it's probably a bug. Until it's fixed, you can just go to this file (/skins/default/templates/badges.html) and change this

<a href='%(feedback_faq_url)s'>

to this

<a href='{{feedback_faq_url}}'>

Googlebot will be just fine with that :)

zaf's avatar
512
zaf
answered 2012-04-21 18:13:10 -0500
edit flag offensive 0 remove flag delete link

Comments

Thanks, fixed in the repository and on the hosted sites.

Evgeny's avatar Evgeny (2012-04-21 19:30:54 -0500) edit
add a comment see more comments