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
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
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
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
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
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
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
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
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
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
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,
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 =
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.
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:
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
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
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/
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
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
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
20 matches
Mail list logo