parenthesis's profile - activity
7 years ago | received badge | Notable Question (source) |
10 years ago | received badge | Popular Question (source) |
12 years ago | received badge | Famous Question (source) |
12 years ago | received badge | Famous Question (source) |
13 years ago | received badge | Supporter ( source ) |
13 years ago | marked best answer | Where to set APP_URL? It's in the live settings -> forum parameters and urls. The default is askbot.org, which is not helpful, we'll need to change that. |
13 years ago | commented answer | Where to set APP_URL? thanks Evgeny! for other readers: "live settings" is the settings accessible directly from the forum website (not the admin menu). |
13 years ago | asked a question | Where to set APP_URL? Validation emails always point users to I tried:
Any ideas? |
13 years ago | asked a question | Standard file locations and permissions With askbot running on Apache/mod_wsgi, what locations do you use for its folders, such as
Connected to that, how do you handle server updates (production site vs. sandbox)? What do you put under EDIT: Just to clarify -- my installation works fine, I am only looking for practical recipes on how to manage the installation properly, and in standard fashion. Thank you :) |
13 years ago | commented question | Location of `/media` folder? I thought about it, but askbot documentation said apache/mod_wsgi is the most efficient. I will try nginx next :) |
13 years ago | marked best answer | Location of `/media` folder? In apache configs the alias is a simple expression mapping a url and anything under that url to a directory on the server's file system - and the corresponding sub-directories. So the case of askbot we have to alias three directories: Alias /m/ /path/to/askbot/skins/ Alias /upfiles/ /path/to/django-project/askbot/upfiles/ Alias /admin/media/ /usr/local/lib/python2.6/site-packages/django/contrib/admin/media/ The part that you need adjust manually is where the skins, upfiles and django hosted. We should indeed just create a script that just creates correct server configuration clause, in fact we will do it this week. If you tell at what path django is installed and askbot - I could give you a more concrete answer. |
13 years ago | received badge | Scholar ( source ) |
13 years ago | commented answer | Location of `/media` folder? Thank you, that worked. Looking forward to the update! Sorry I cannot upvote your answer, not enough points. |
13 years ago | received badge | Student (source) |
13 years ago | received badge | Editor (source) |
13 years ago | asked a question | Location of `/media` folder? I'm new to django and askbot and I'm confused about deployment. I'm trying to set up askbot to run under mod_wsgi with Apache. All went well with installation and a local server is working ( Am I supposed to create that folder and somehow copy all non- The project was created using $ ls
askbot __init__.py __init__.pyc log manage.py settings.py settings.pyc urls.py urls.pyc
|