quesada's profile - activity

8 years ago received badge Notable Question (source)
10 years ago received badge Famous Question (source)
10 years ago received badge Famous Question (source)
12 years ago received badge Popular Question (source)
13 years ago received badge Famous Question (source)
13 years ago received badge Good Answer ( source )
13 years ago received badge Nice Question (source)
13 years ago received badge Nice Answer ( source )
13 years ago 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.

13 years ago received badge Supporter ( source )
13 years ago received badge Student (source)
13 years ago received badge Editor (source)
13 years ago 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.

13 years ago commented answer What language translations are available in Askbot?

The link above is broken.

13 years ago received badge Scholar ( source )
13 years ago 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
13 years ago 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?

13 years ago 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.

13 years ago 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.

13 years ago 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.

13 years ago received badge Necromancer ( source )
13 years ago received badge Teacher ( source )
13 years ago 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

13 years ago 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.

13 years ago 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.

13 years ago 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...