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.

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
todofixthis's avatar
1.3k
todofixthis
asked 13 years ago
Evgeny's avatar
13.2k
Evgeny
updated 13 years ago

Comments

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 :)

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
zaf's avatar
512
zaf
answered 13 years ago
link

Comments

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

Evgeny's avatar Evgeny (13 years ago)
see more comments