Re: Have you experienced the thing I have done like the following.

2021-03-27 Thread Kasper Laudrup
On 27/03/2021 06.17, Sangbom Suhk wrote: > Huray I resolve my problem! > > I found the solution from googling. > https://stackoverflow.com/questions/24122175/django-mod-wsgi-exception-occurred-processing-wsgi-script > Glad to hear you figured it out. Thanks for sharing the solution. Kind regards

Re: Have you experienced the thing I have done like the following.

2021-03-26 Thread Sangbom Suhk
Huray I resolve my problem! I found the solution from googling. https://stackoverflow.com/questions/24122175/django-mod-wsgi-exception-occurred-processing-wsgi-script Thanks. 2021년 3월 27일 토요일 오후 12시 51분 11초 UTC+9에 Sangbom Suhk님이 작성: > My wsgi.py content is like this > > """ > WSGI config for dj

Re: Have you experienced the thing I have done like the following.

2021-03-26 Thread Sangbom Suhk
My wsgi.py content is like this """ WSGI config for django_app project. It exposes the WSGI callable as a module-level variable named ``application``. For more information on this file, see https://docs.djangoproject.com/en/3.1/howto/deployment/wsgi/ """ import os from django.core.wsgi import

Re: Have you experienced the thing I have done like the following.

2021-03-26 Thread Kasper Laudrup
On 26/03/2021 15.35, Mr. X Offencer wrote: > Are you running your  manage.py runserver command in right directory > That is probably not relevant as it seems like Sangbom is having issues with deploying his application, not running the development server. Kind regards, Kasper Laudrup -- You re

Re: Have you experienced the thing I have done like the following.

2021-03-26 Thread Kasper Laudrup
On 26/03/2021 13.34, Sangbom Suhk wrote: > ModuleNotFoundError: No module named 'django_app' > Without being an expert on the details, it seems like the WSGI module cannot find your Django application. What's in your .wsgi file? Maybe this could help: https://www.thecodeship.com/deployment/dep

Re: Have you experienced the thing I have done like the following.

2021-03-26 Thread Sangbom Suhk
Watching for file changes with StatReloader Performing system checks... System check identified no issues (0 silenced). March 26, 2021 - 23:48:29 Django version 3.1.7, using settings 'django_app.settings' Starting development server at http://127.0.0.1:8000/ Quit the server with CONTROL-C. 2021년

Re: Have you experienced the thing I have done like the following.

2021-03-26 Thread Sangbom Suhk
Yes, I did. It's work fine. 2021년 3월 26일 금요일 오후 11시 37분 8초 UTC+9에 mr.xof...@gmail.com님이 작성: > Are you running your manage.py runserver command in right directory > > On Fri, 26 Mar 2021, 19:06 Sangbom Suhk, wrote: > >> Hi guyes! >> >> Now I'm trying to install django framework and make python-b

Re: Have you experienced the thing I have done like the following.

2021-03-26 Thread Mr. X Offencer
Are you running your manage.py runserver command in right directory On Fri, 26 Mar 2021, 19:06 Sangbom Suhk, wrote: > Hi guyes! > > Now I'm trying to install django framework and make python-based web. For > this purpose, I installed apache2, python3.8.5 and libapache2-mod-wsgi-py3, > and set a

Have you experienced the thing I have done like the following.

2021-03-26 Thread Sangbom Suhk
Hi guyes! Now I'm trying to install django framework and make python-based web. For this purpose, I installed apache2, python3.8.5 and libapache2-mod-wsgi-py3, and set a virtual host according to the django guide document. My work flow was like the following. 1. apt install apache2 apache2-d