Re: mod_wsgi problem

2019-06-06 Thread Kasper Laudrup
On June 6, 2019 4:51:49 AM GMT+02:00, Davin Pore wrote: >how able to resolve this issue. I tried to install the mod_wsgi on >manual >procedure. > >[image: mod_wsgi.jpg] > >-- >You received this message because you are subscribed to the Google >Groups "Django users" group. >To unsubscribe from th

Re: mod_wsgi problem

2019-06-06 Thread Joel Mathew
Always read installation README and github README before installing anything. It seems you dont even have a basic compiler installed. For Debian based systems, install: `sudo apt install build-essential` Sincerely yours, Joel G Mathew On Thu, 6 Jun 2019 at 17:09, Davin Pore wrote: > how ab

mod_wsgi problem

2019-06-06 Thread Davin Pore
how able to resolve this issue. I tried to install the mod_wsgi on manual procedure. [image: mod_wsgi.jpg] -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to djan

Re: mod_Wsgi Problem

2012-01-04 Thread Tom Evans
On Wed, Jan 4, 2012 at 3:17 PM, Hassan wrote: > but now i have another problem , i cant get the admin interface to > work !!! whats missing ?? > Please raise a new thread for each separate issue, as this will allow people to help you more effectively, and the problem/solution will be more easily

Re: mod_Wsgi Problem

2012-01-04 Thread Hassan
but now i have another problem , i cant get the admin interface to work !!! whats missing ?? this is my httpd.conf : WSGIScriptAlias /mysite "C:/mysite/apache/django.wsgi" Order deny,allow Allow from all -- You received this message because you are subscribed to the Google Groups "Django

Re: mod_Wsgi Problem

2012-01-04 Thread Guddu
Glad that it helped. For serving static files, you could read through the Django documentation at https://docs.djangoproject.com/en/1.3/howto/static-files/ Regards, Guddu -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussi

Re: mod_Wsgi Problem

2012-01-04 Thread Hassan
thnx now its working well , now i want to know how can i serve static files using apache , and i really still dont understand what is serving static files is ? Hope you can help me , -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to t

Re: mod_Wsgi Problem

2012-01-04 Thread Anurag Chourasia
You will need to allow apache access to the folder where you have your wsgi script. Please add this in your httpd.conf and restart apache and see if it helps. Order deny,allow Allow from all Regards, Anurag On Wed, Jan 4, 2012 at 6:52 PM, Hassan wrote: > i tryed > > WSGIScriptAlias /mysite1

Re: mod_Wsgi Problem

2012-01-04 Thread Hassan
i tryed WSGIScriptAlias /mysite1 "C:/mysite/django.wsgi" and then http://localhost:8080/mysite1 but i keep geting this : Forbidden You don't have permission to access /mysite1 on this server. what is this , how can i fix it : -- You received this message because you are subscribed to the Go

Re: mod_Wsgi Problem

2012-01-04 Thread kenneth gonsalves
On Wed, 2012-01-04 at 17:02 +0530, Anurag Chourasia wrote: > path = 'C:/mysite' try putting path = 'C:' (this would work in linux - should work for windows) -- regards Kenneth Gonsalves -- You received this message because you are subscribed to the Google Groups "Django users" group. To post t

Re: mod_Wsgi Problem

2012-01-04 Thread Anurag Chourasia
Could you try changing your WSGIScriptAlias in httpd.conf From WSGIScriptAlias / "C:/mysite/django.wsgi" To WSGIScriptAlias /MYSITE "C:/mysite/django.wsgi" And then access http:localhost:port/MYSITE and tell is the results. Regards, Anurag On Jan 4, 2012 7:19 AM, "Hassan" wrote: > Dear ALL,

mod_Wsgi Problem

2012-01-04 Thread Hassan
Dear ALL, i have my application in "C:/mysite" and i created a wsgi file in "C:/mysite" , that has : import os import sys path = 'C:/mysite' if path not in sys.path: sys.path.append(path) os.environ['DJANGO_SETTINGS_MODULE'] = 'mysite.settings' import django.core.handlers.wsgi application =

Re: mod_wsgi problem with installation

2010-07-11 Thread John Griessen
tazimk wrote: hi, Trying to figure out why make gives following errors . What is wrong with installation ? Saw similar with buildout when a package could not be found. How are you installing? -- You received this message because you are subscribed to the Google Groups "Django users" group.

Re: mod_wsgi problem with installation

2010-07-10 Thread Graham Dumpleton
You have not supplied all the output, but likely that you don't have either python-dev or httpd-dev packages installed and so cant find header files for one of the other. Read the README in the mod_wsgi source code for requirements as to what must be installed on your system. Graham On Jul 10, 9:

mod_wsgi problem with installation

2010-07-10 Thread tazimk
hi, Trying to figure out why make gives following errors . What is wrong with installation ? mod_wsgi.c:14532: error: initializer element is not constant mod_wsgi.c:14532: warning: data definition has no type or storage class mod_wsgi.c:14533: warning: parameter names (without types) in functio

Re: append_slash and mod_wsgi problem when Django lives in subdirectory

2009-03-06 Thread Benedykt
On Mar 5, 11:51 pm, Graham Dumpleton wrote: > What version of Django are you using? > > Are you perhaps using a pre 1.0 version where SCRIPT_NAME, which > defines mount point, was not being properly handled by Django. Yes, it was the reason - I was using 0.9.7. I upgraded to the current version

Re: append_slash and mod_wsgi problem when Django lives in subdirectory

2009-03-05 Thread Graham Dumpleton
On Mar 6, 5:14 am, Benedykt wrote: > Dear sirs, > I have configured my web server sohttp://localhost/wsgipoints to > Django connected with WSGI: > WSGIScriptAlias /wsgi /var/www/django.wsgi > > Now I can see that when I request URL "http://localhost/wsgi/myapp/ > test/", Django sees URL "myapp/

append_slash and mod_wsgi problem when Django lives in subdirectory

2009-03-05 Thread Benedykt
Dear sirs, I have configured my web server so http://localhost/wsgi points to Django connected with WSGI: WSGIScriptAlias /wsgi /var/www/django.wsgi Now I can see that when I request URL "http://localhost/wsgi/myapp/ test/", Django sees URL "myapp/test/". It is nice when I write url rules - they

Re: mod_wsgi problem (python 2.6.1, Apache 2.2.11, Windows XP SP3)

2009-01-25 Thread Graham Dumpleton
This isn't going to be Django issue, so if you do have any useful information, perhaps post any followups to one of the discussions on mod_wsgi Google Group going on about Python 2.6 and mod_wsgi. This message has also been posted there. http://groups.google.com/group/modwsgi/browse_frm/thread

mod_wsgi problem (python 2.6.1, Apache 2.2.11, Windows XP SP3)

2009-01-25 Thread Jonathan Prater
Hopefully, someone here can help me with this issue. I've got a mod_wsgi.so compiled against Python 2.6.1 and Apache 2.2.11 for use on Windows. It loads perfectly well (no errors during Apache startup), and I've followed the steps given on the Django website and the mod_wsgi site for getting