Nigini A. Oliveira's profile - activity
5 years ago | marked best answer | How to limit account creation to invited-only users? Hi there, Suppose I am deploying a community with ASKBOT. But because the site is still in the beginning, I would like to restrict the creation of accounts based on invitation until the site has enough content and information organization. Is this implemented? I cannot find anything like that on the site settings page. Thanks. |
6 years ago | received badge | Notable Question (source) |
6 years ago | received badge | Notable Question (source) |
6 years ago | received badge | Famous Question (source) |
6 years ago | received badge | Popular Question (source) |
6 years ago | received badge | Popular Question (source) |
6 years ago | received badge | Famous Question (source) |
6 years ago | asked a question | How to limit account creation to invited-only users? Is there a way to block self-created account? Hi there, Suppose I am deploying a community with ASKBOT. But because the |
6 years ago | asked a question | Django templates vs Macros Django templates vs Macros I have recently started examining how to implement design changes to some parts of the site a |
6 years ago | received badge | Notable Question (source) |
6 years ago | received badge | Self-Learner ( source ) |
6 years ago | received badge | Self-Learner ( source ) |
6 years ago | received badge | Popular Question (source) |
6 years ago | received badge | Famous Question (source) |
6 years ago | edited answer | Can't make ASKBOT work with uWSGI I got it: First I saw I should be executing the uWSGI with the option --wsgi-file and not --module. That got rid of th |
6 years ago | answered a question | Can't make ASKBOT work with uWSGI I got it: The recommended .INI file in previous posts here was this: [uwsgi] socket = /var/uwsgi/askbot.sock user = w |
6 years ago | marked best answer | Problems running "collectstatic" on Mac OS I'm using a Mac OS(El Capitan), Python 2.7 and AskBot source code from the master branch (last commit was this)! I run into the following problem when executing Traceback (most recent call last):
File "manage.py", line 10, in <module>
(...)
ImportError: dlopen([MY_PATH]/python2.7/site-packages/PIL/_imaging.so, 2): Symbol not found: _clock_gettime
Referenced from: [MY_PATH]/python2.7/site-packages/PIL/.dylibs/liblzma.5.dylib (which was built for Mac OS X 10.12)
After going crazy about it, I found HERE that there is a problem with the |
6 years ago | received badge | Scholar ( source ) |
6 years ago | asked a question | Can't make ASKBOT work with uWSGI Can't make ASKBOT work with uWSGI I'm trying to run ASKBOT using uWSGI but I can't figure how. Everything looks right on |
7 years ago | received badge | Popular Question (source) |
7 years ago | received badge | Notable Question (source) |
7 years ago | received badge | Famous Question (source) |
7 years ago | received badge | Enthusiast |
7 years ago | commented question | Logout directing to white page Hey @iffs - Can you edit your question with more info about this "bad request" you are referring to? Do you have any err |
7 years ago | edited question | Problems running "collectstatic" on Mac OS Problems running "collectstatic" on Mac OS I'm using a Mac OS(El Capitan), Python 2.7 and AskBot source code from the ma |
7 years ago | received badge | Editor (source) |
7 years ago | answered a question | Problems running "collectstatic" on Mac OS The solution it to force installing the previous version of the Pillow package: pip install --force-reinstall Pillow==5 |
7 years ago | asked a question | Problems running "collectstatic" on Mac OS Problems running "collectstatic" on Mac OS I'm using a Mac OS(El Capitan), Python 2.7 and AskBot source code from the ma |
7 years ago | commented question | Django 1.10 support Any news on this? I imagine it is time to update the question to versions 1.11 and 2, right? Is there any roadmap we can |
7 years ago | received badge | Nice Question (source) |
8 years ago | received badge | Notable Question (source) |
8 years ago | received badge | Student (source) |
8 years ago | received badge | Popular Question (source) |
8 years ago | commented answer | How can I configure the Google+ login? That's an awesome resource @gopalraha thanks! But this somewhat goes beyond "configuration" steps and touch "developing" level, do you agree? Have you executed that for ASKBOT? If so, do you think these dependencies and changes to settings.py should be included in ASKBOT's code repository? |
8 years ago | received badge | Famous Question (source) |
8 years ago | asked a question | How can I configure the Google+ login? Hey there, I saw that that recently a commit fixed the Google+ login system. So I tried it but I'm having a problem. Here is what I've tried to do:
Request Method: GET
Django Version: 1.8.13
Exception Type: KeyError
Exception Value: u'google-plus'
Exception Location: /var/lib/.../askbot/deps/django_authopenid/views.py in complete_oauth2_signin, line 256
Python Version: 2.7.8
Can anyone help? Is this something related to "django_authopenid" library version? I don't know how to check that as it is part of the settings of the django project. |
8 years ago | commented question | Feature to provide tags descriptions This is indeed a cool feature. Interestingly, it seems that the code for the `Tag` entity is already prepared for that, as it declares the following variable: `tag_wiki = models.OneToOneField( 'Post', null=True, related_name = 'described_tag')`. Does someone know what's the next step for that? I searched the issues at GitHub and could not find a discussion about that! |
9 years ago | received badge | Nice Answer ( source ) |
9 years ago | answered a question | I want to modify the askbot front pages??? You might be searching for the page templates folder. |
9 years ago | received badge | Supporter (source) |
9 years ago | received badge | Teacher ( source ) |
9 years ago | answered a question | Askbot self-test keeps failing I'm having the same problem. It seems that a new version of python setuptools is adding this "0" at the end of the version name. I've tested to change the required version, but it seems that the requirement file is not read to execute "manage.py" tasks. While we don't have a solution, you can add this line to you "settings.py" file: ASKBOT_SELF_TEST = False This will skip the tests! |