Hi,
I downloaded Django stack, followed the instructions and also changed the path to Django in path in /installdir/scripts/setenv.sh, to use my python 3.4. I can see the welcome page on localhost:portnumber, but i can't access my project. I keep getting errors in Apache log:
[Fri Jan 22 09:15:19.285113 2016] [:error] [pid 11492:tid 924] [client ::1:53463] mod_wsgi (pid=11492): Target WSGI script 'C:/Users/kk/Bitnami Django Stack projects/tmessenger/tmessenger/wsgi.py' cannot be loaded as Python module.
[Fri Jan 22 09:15:19.285113 2016] [:error] [pid 11492:tid 924] [client ::1:53463] mod_wsgi (pid=11492): Exception occurred processing WSGI script 'C:/Users/kk/Bitnami Django Stack projects/tmessenger/tmessenger/wsgi.py'.
[Fri Jan 22 09:15:19.285113 2016] [:error] [pid 11492:tid 924] [client ::1:53463] Traceback (most recent call last):
[Fri Jan 22 09:15:19.285113 2016] [:error] [pid 11492:tid 924] [client ::1:53463] File "C:/Users/kk/Bitnami Django Stack projects/tmessenger/tmessenger/wsgi.py", line 21, in <module>
[Fri Jan 22 09:15:19.285113 2016] [:error] [pid 11492:tid 924] [client ::1:53463] application = get_wsgi_application()
[Fri Jan 22 09:15:19.285113 2016] [:error] [pid 11492:tid 924] [client ::1:53463] File "C:\\Bitnami\\djangostack-1.8.8-0\\python\\lib\\site-packages\\django\\core\\wsgi.py", line 13, in get_wsgi_application
[Fri Jan 22 09:15:19.286113 2016] [:error] [pid 11492:tid 924] [client ::1:53463] django.setup()
[Fri Jan 22 09:15:19.286113 2016] [:error] [pid 11492:tid 924] [client ::1:53463] File "C:\\Bitnami\\djangostack-1.8.8-0\\python\\lib\\site-packages\\django\\__init__.py", line 17, in setup
[Fri Jan 22 09:15:19.286113 2016] [:error] [pid 11492:tid 924] [client ::1:53463] configure_logging(settings.LOGGING_CONFIG, settings.LOGGING)
[Fri Jan 22 09:15:19.286113 2016] [:error] [pid 11492:tid 924] [client ::1:53463] File "C:\\Bitnami\\djangostack-1.8.8-0\\python\\lib\\site-packages\\django\\conf\\__init__.py", line 55, in __getattr__
[Fri Jan 22 09:15:19.286113 2016] [:error] [pid 11492:tid 924] [client ::1:53463] self._setup(name)
[Fri Jan 22 09:15:19.286113 2016] [:error] [pid 11492:tid 924] [client ::1:53463] File "C:\\Bitnami\\djangostack-1.8.8-0\\python\\lib\\site-packages\\django\\conf\\__init__.py", line 43, in _setup
[Fri Jan 22 09:15:19.286113 2016] [:error] [pid 11492:tid 924] [client ::1:53463] self._wrapped = Settings(settings_module)
[Fri Jan 22 09:15:19.286113 2016] [:error] [pid 11492:tid 924] [client ::1:53463] File "C:\\Bitnami\\djangostack-1.8.8-0\\python\\lib\\site-packages\\django\\conf\\__init__.py", line 99, in __init__
[Fri Jan 22 09:15:19.287113 2016] [:error] [pid 11492:tid 924] [client ::1:53463] mod = importlib.import_module(self.SETTINGS_MODULE)
[Fri Jan 22 09:15:19.287113 2016] [:error] [pid 11492:tid 924] [client ::1:53463] File "C:\\Bitnami\\djangostack-1.8.8-0\\python\\lib\\importlib\\__init__.py", line 37, in import_module
[Fri Jan 22 09:15:19.287113 2016] [:error] [pid 11492:tid 924] [client ::1:53463] __import__(name)
[Fri Jan 22 09:15:19.287113 2016] [:error] [pid 11492:tid 924] [client ::1:53463] ImportError: No module named tmessenger.settings
Does anyone know how to fix that?Also, how to check that Django stack is using right python version?Thanks.