First time here? Check out the FAQ!

RubenDjOn's profile - activity

2014-10-19 23:10:06 -0500 received badge Famous Question (source)
2014-04-18 05:26:23 -0500 commented answer Where to set APP_URL?

In new versions the url is: mysitte.com/settings/QA_SITE_SETTINGS/

2014-04-16 10:27:50 -0500 asked a question Sanction package version

Hello,

I'm using askbot git version: github.com/ASKBOT/askbot-devel. I've noticed that in requirements (github.com/ASKBOT/askbot-devel/blob/master/askbot_requirements_dev.txt), there is a package named: sanction. I've used pip install -r askbot_requirements_dev.txt) in a virtualenv. Sanction version's installed was 0.4.1 and askbot seems to work well with lower sanction version. Wich is the prefered sanction version, maybe 0.3 or 0.3.1?

FYI when sanction 0.4.1 is installed, the oauth not wotk well, it's because in sanction 0.4 are some breaking changes:

Breaking: removed redirect_uri from Client.__init__ (didn't make sense to be there. This has been added to auth_uri and request_token.

The error that is thown by Django is:

__init__() got an unexpected keyword argument 'redirect_uri'

Wich is the best solution? Install lower version of sanction (wich one?), or patch lines in askbot to adapt it to sanction => 0.4

Thanks.

2014-04-16 10:06:21 -0500 answered a question error in manage.py add_missing_subscriptions

Only a test

2014-04-15 21:08:15 -0500 received badge Editor (source)
2014-04-15 21:03:56 -0500 commented question error in manage.py add_missing_subscriptions

Ok, It seems that is a problem with circular import. I need to look at my others apps code and see wich one is causing this situation. Thanks.

2014-04-15 18:55:40 -0500 asked a question error in manage.py add_missing_subscriptions

Hello!

I'm having a problem when running python manage.py add_missing_subscriptions. The error is:

File "/var/www/project/src/apps/askbot/mail/__init__.py", line 15, in < module > from askbot.conf import settings as askbot_settings

ImportError: cannot import name settings

I'v entered into debug (putting a pdb.set_trace in line 14, and when I execute from askbot.conf import settings as askbot_settings it gives me the same error. This is normal, but when I execute python manage.py runserver 0.0.0.0:8001, the same line (from askbot.conf import settings as askbot_settings) in the debug, doesn't raise any error. I've looking at the sys.path, and paths are the same in both cases.

I don't know where is the problem. Any help will be appreciated.

Thanks