install askbot 0.11.x

askbot 0.11.x

python 3.6.11

apache 2.4.51 (shared hosting)

i am trying to install askbot , but i kept getting 'Internal Server Error'

files structure

askbot_proj

├── askbot_site

│ └── proj

├── askbot

│ ├── bin

│ ├── lib

│ └── share

askbot_proj/passenger_wsgi.py

import os import sys

sys.path.insert(0, os.path.dirname(__file__))

from askbot_site.proj.wsgi import application

askbot_proj/askbot_site/proj/wsgi.py

import os

from django.core.wsgi import get_wsgi_application

os.environ.setdefault("DJANGO_SETTINGS_MODULE", "askbot_site.proj.settings")

application = get_wsgi_application()

settings.py and urls.py are in "askbot_proj/askbot_site/proj" which is same folder that wsgi.py file is in

what do i need to correct it?

18thcentury's avatar
11
18thcentury
asked 2021-11-29 23:39:37 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments