First time here? Check out the FAQ!

quesada's profile - activity

2017-02-09 09:51:24 -0500 received badge Notable Question (source)
2015-04-04 12:17:47 -0500 received badge Famous Question (source)
2015-03-19 10:47:09 -0500 received badge Famous Question (source)
2013-02-19 11:54:39 -0500 received badge Popular Question (source)
2012-07-10 07:49:36 -0500 received badge Famous Question (source)
2012-05-17 21:56:32 -0500 received badge Good Answer ( source )
2012-04-03 14:06:07 -0500 received badge Nice Question (source)
2012-03-19 16:47:31 -0500 received badge Nice Answer ( source )
2011-12-22 06:25:32 -0500 marked best answer What are the steps to switch to a language other than 'en'?

Actually, most of the spanish translation strings are simply commented out in the spanish .po catalogue. One example is the string "badges", visible in the top navigation menu:

#~ msgid "badges"
#~ msgstr "medallas"

The comment format is #~, which means the strings are ignored because they are obsolete. Why they are obsolete I don't know, but a simple fix is to run

[PROJECT_ROOT/apps/askbot/] PROJECT_ROOT/manage.py jinja2_makemessages --no-wrap -l es -e html,py,txt

That is, run that command from the askbot app subdirectory (not from PROJECT_ROOT where manage.py lives).

That will un-obsolete the es askbot strings and make them visible/translatable from rosetta.

2011-12-20 05:32:39 -0500 received badge Supporter ( source )
2011-12-19 12:37:29 -0500 received badge Student (source)
2011-12-19 12:27:20 -0500 received badge Editor (source)
2011-12-19 12:26:51 -0500 asked a question What are the steps to switch to a language other than 'en'?

I've tried setting LANGUAGE_CODE = "es" or to anything other than "en" and it didn't work.

2011-12-19 12:16:39 -0500 commented answer What language translations are available in Askbot?

The link above is broken.

2011-12-15 01:33:27 -0500 received badge Scholar ( source )
2011-12-15 01:33:27 -0500 marked best answer changing the logo on settings/GENERAL_SKIN_SETTINGS/ doesn't work

Works on my development machine, I think you must have issues the deployment, probably one of the settings in your settings.py:

  • CSRF_COOKIE_DOMAIN setting value
  • FILE_UPLOAD_TEMP_DIR - either setting value or permissions
  • ASKBOT_FILE_UPLOAD_DIR
  • ASKBOT_UPLOADED_FILES_URL
2011-12-12 15:48:31 -0500 commented answer Create Admin User Error - "CSRF verification failed. Request aborted."

This is a local computer. Maybe I can use the hosts file to redirect some domain name (say test.com) to localhost, and use such domain in the CSRF_ COOKIE _DOMAIN?

2011-12-12 13:57:45 -0500 commented answer Create Admin User Error - "CSRF verification failed. Request aborted."

CSRF_COOKIE_DOMAIN = '127.0.0.1'is exactly what I have, but I still get thes CSRF error when a form button is pressed.

2011-12-11 21:14:16 -0500 commented answer Create Admin User Error - "CSRF verification failed. Request aborted."

I have the same problem. I tried the localhost IP address, but the CSRF error persists. I also tried the ip that my internet provider gives me (dynamic), but no dice.

2011-12-11 17:36:58 -0500 asked a question changing the logo on settings/GENERAL_SKIN_SETTINGS/ doesn't work

It simply displays an empty image spot, so it's clear that there is supposed to be an image there... but the image is not shown. I've tried with .jpg and .gif. In fact, I've tried downloading the askbot logo, and uploading it again on that setting, to have the closest thing to the original set up. Still no logo displayed.

2011-11-25 07:52:09 -0500 received badge Necromancer ( source )
2011-11-25 07:52:09 -0500 received badge Teacher ( source )
2011-11-25 07:38:52 -0500 answered a question Where is the bug tracking system for Askbot?

If I understand this right, the current best place to post bugs is this: http://bugs.askbot.org/projects/askbot/issues

2011-11-25 07:37:21 -0500 answered a question Is there a way to list all the unfixed bugs in Askbot?

There's a redmine bug tracker for askbot here: http://bugs.askbot.org/projects/askbot/issues

Seems to be active.

2011-11-11 16:47:04 -0500 asked a question Selecting a different language doesn't translate URLs

reproduce by: Select "english" from the drop-down list. Then the url says http://mydomain.com/en/fragen/ instead of http://mydomain.com/en/questions/ , and gives page not found although other links are ok.

2011-11-10 09:58:00 -0500 answered a question CSRF token missing or incorrect

This 'CSRF verification failed' is still present in the current default skin (Nov 21st 2011), master branch. It prevents the user to log into the admin console, to change the skin. Is there any other way to change the skin? The one this site uses (default in the packaged version of askbot) does work...