Tagged Questions
0
votes
0answers
18 views
Django slowdown - thousands of unused datababase calls
I have a weird issue with a database consisting of about 27,000 items in the main table, and ~400,000 items in a many-to-many linking those items. The database is a Postgresql, running from Psycopg2, ...
0
votes
1answer
24 views
Smoothly converting a static website to Django
I currently have a simple apache /var/www setup. I have a bunch of static HTML files in a directory (let's call it /var/www/mydir), which show up on http://mysite.com/mydir/filename.htm.
Now, I want ...
1
vote
1answer
42 views
allow acces to files only via cgi
I ve got a working django.cgi file which allows serving content.
From many tutorials i got the following snippet for my .htaccess file:
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ ...
1
vote
1answer
21 views
Django, apache2, css not displaying…might be requiring authentication?
Running CentOS 6.4, Apache 2.2.15, Django 1.5.
User nobody
Group nobody
LoadModule wsgi_module /usr/lib64/httpd/modules/mod_wsgi.so
LoadModule alias_module modules/mod_alias.so
LoadModule ...
-1
votes
1answer
111 views
You don't have permission to access / on this server [closed]
I am getting the above error while trying to acces my Django application in Apache .
I have done good home work before posting this question here .
But still getting this error .
Here is my ...
0
votes
0answers
43 views
Error with subprocess in python and apache as well as requests
I am trying to develop a website with django, and I had everything running fairly well under my development environment but now that I am trying to deploy it to an apache based server I am running ...
0
votes
1answer
56 views
Django Based framework virtual host setup https on Apache
I am using a django based framework and have successfully figured Apache settings for http mode. Basically I have done the setting correctly on <VirtualHost *:80> ... </VirtualHost> and ...
0
votes
1answer
86 views
apache2 django mod_wsgi htaccess
I want to have Apache serving .htaccess file to fix firefox Access-Control-Allow-Origin.
I'm using mod_wsgi and my httpd.conf looks like this:
Alias /static/ /home/ubuntu/my-django-app/static/
...
0
votes
0answers
20 views
Apache 3rd party libraries when running Django
I am using Apache2 to serve a Django app. The Django app uses Intel libraries with Numpy. However, when Apache loads the Python scripts, it doesn't use the Intel libraries.
Here is what I have in ...
0
votes
0answers
25 views
Apache vhosting ubuntu one named entry serving all urls
I have 2 URL's and two django webapps to serve. Using the following example configuration, a get request for www.server2.com results in the page for www.server1.com.
Example Incoming URLS: ( ...
1
vote
0answers
128 views
Django Response always Chunked with text/html cannot set Content-Length
In my Django Application's views.py , I return an HttpResponse object after attempting to set the following HTTP Header fields:
# Create a Response Object with the content to return
response = ...
0
votes
1answer
100 views
Caching Django Responses with mod_wsgi and Apache2 mem_cache
I've followed the following article in an attempt to setup Apache2 caching in order to use it with Django on Ubuntu 12.10 with mod_wsgi. I want Apache to cache some requests for me.
...
0
votes
0answers
63 views
Configure Django with Apache
I am trying to get my Django application running under apache with mod_python but I do not know what is the problem.
my django project is under the directory /srv/APCC
Apache virtual host configs as ...
0
votes
1answer
73 views
Issue in deployment zc.buildout with apache
I am facing some issues with deploying my buildout project (Django) in Apache using mod_wsgi.
My folder structure:
t/
bootstrap.py
setup.py
bin/
buildout
django
django.wsgi
...
0
votes
0answers
90 views
django sites framework and aliases
I developed a blog engine with Django, and added the multi site support.
The problem is that I have two domain names :
example1.com
example2.com
The multi site is configured for :
example1.com
...
2
votes
3answers
50 views
Too many PostgreSQL processes running (using Django to write to DB)
I'm using Django to write to a Postgres DB on my server. The server receives about 800 insert requests every 15 minutes. Recently when I run ps aux on the server this is the number of postgres ...
2
votes
2answers
270 views
Apache HTTP Basic Auth - 401 error after supplying username and password
I am attempting to configure my amazon server with Apache Http to prompt the user for username/password upon hitting the domain via browser.
Here is a snippet from my app.conf file (included in the ...
0
votes
0answers
32 views
Django-Mediagenerator won't parse css when running on Apache
I'm using django-mediagenerator to integrate SASS with my Django app and serve images and static content with dynamic versioning.
So, while running it locally with Python's runserver_plus command, ...
0
votes
2answers
99 views
Trouble with Apache, mod_wsgi, and Django configuration
Just set up a 64 bit ubuntu EC2 instance using the Bitnami DjangoStack image.
So far I have installed a few python dependencies and removed the Project django app which was created by default. I ...
2
votes
3answers
112 views
500 server error on django site after shifting to server
I was using Django site on local machine with ubuntu and have just uploaded but getting 500 internal server error and I am unable to understand the reason. Seems like it is unable to see some modules ...
0
votes
1answer
110 views
Django error in Apache 2.2: Database backend fails in production but successful in development
I've been working on a Django app and have it working very nicely on Django's development server. I am using SQL Server 2008 R2 (my only option for this data) as my database, so I developed the app ...
0
votes
0answers
44 views
django mutiple sites virtualHost configuration Error
I have two sites and both were working fine in Embedded mode, I like to change them to Daemon mode configuration in Apache2
The problem is if I try to access site-2, it is showing site-1 only. why it ...
0
votes
1answer
68 views
Django: Two Websites with Same Codebase and Separate Domain, Settings.py, WSGI File, but cannot do separate database
I think this is likely a WSGI/Apache configuration issue.
I have a Django website served through Apache with mod_wsgi. I am trying to run a second website from the same codebase but through a ...
0
votes
1answer
86 views
Django+WSGI: Use app at subpath without changes
I'd like to serve a Django application from a subdirectory (for example http://www.stackoverflow.com/django_app/).
I've set up mod_wsgi to serve the page via
WSGIScriptAlias /django_app ...
0
votes
1answer
335 views
Apache2 Setup Virtual Hosts with Subdomains using Django Projects
I'm using Django 1.4 with Python 2.7 on Ubuntu Server 12.04. I'm trying to host multiple websites on a single server. I'm new to Apache and seem to have written something incorrectly when setting ...
5
votes
1answer
140 views
settings in apache for django app which need ssl for some pages
My django app (let me call it partlysecureapp)has an index page which is visible to all.All the other pages (reachable from links on index page) need the user to log in. I want to use the app with SSL ...
1
vote
2answers
377 views
Force django_compressor to recompile css/less files
We let users upload their own custom css/less to our django app.
All our css/less files are compressed by django_compressor "on-the-fly".
When the app is initially deployed all css files are moved ...
4
votes
1answer
109 views
Close TCP port 80 and 443 after forking in Django
I am trying to fork() and exec() a new python script process from within a Django app that is running in apache2/WSGI Python. The new python process is daemonized so that it doesn't hold any ...
0
votes
0answers
111 views
Mapping subdomains to django projects using dynamic vhosts or rewrite [closed]
So I want to be able to dynamically determine the django wsgi script based on the subdomain.
test.example.com -> /djangopath/test/django.wsgi
test2.example.com -> /djangopath/test2/django.wsgi
...
0
votes
1answer
130 views
Django + mod_wsgi: Can someone advise me on my setup and rewrite rules
This is my first time deploying Django to a recently acquired Linode server and I'm curious if someone can look over my deployment and help me fix some nagging issues and advise me whether i'm doing ...
1
vote
1answer
53 views
running two django apps with SSL in same apache server
I have apache2 installed in ubuntu lucid ,and have enabled ssl .Now I am running a django app (lets say myapp1 )on it using mod_wsgi.
I have configured the /etc/apache2/sites_enabled/ssl file and ...
0
votes
1answer
198 views
Django: Serving server files with Apache and mod_xsendfile
I am having trouble serving my server files for User download. I am using Apache with mod_xsendfile. Firstly, if I try to download the file on the development server the file is of 0 bytes. Secondly, ...
1
vote
1answer
429 views
multiple domains, multiple django projects, one server
Hi I'm new to apache and mod_wsgi and am trying to figure out how to configure both so that i can have www.example1.com use djangoproject1 and www.example2.com use djangoproject2.
I followed this ...
0
votes
0answers
148 views
django- deploy with mod_wsgi css not showing
I am using libapache2-mod_wsgi for deploying my django app. I wrote httpd.conf as follows:
Alias /static/ /home/ubuntu/similarkind/similarkind/static/
<Directory ...
2
votes
3answers
2k views
How does one deploy a django application on OS X Server?
How would one deploy a Django application on OS X Server 2.0 without using homebrew or a different flavor of python than the one shipped with OS X 10.8.1? I'm using the cocoa bindings in a Django ...
0
votes
2answers
44 views
URL.py in Django unexpected behaviour
I've configured url.py as is explained in different places of the Django documentation, but its behaviour is completely anomalous, between consecutives acceses. In Debug Mode and after looking for an ...
1
vote
1answer
573 views
error encounter during mezzanine's deployment with Apache2 wsgi
I tried the mezzanine, and excited about it. deploy it to ubuntu server + apache2 + mod_wsgi.
but i cannot insert a image, cannot see the browse window.
and when i try visit /gallery/, always an ...
0
votes
3answers
459 views
How make apache serve static files to django
I have a django web application running on our apache2 production server using mod_python, but no static files are found (css,images ... )
All our static stuff is under /var/my.site/example/static
...
0
votes
1answer
129 views
django permission denied on file upload
I'm getting errors trying to upload a file with the django admin interface using apache2 and mod_wsgi.
my django settings:
MEDIA_ROOT = '/var/www/mysite/web/media'
model image field:
image_big = ...
1
vote
0answers
74 views
Deploying Django on Windows 2008 Server
There is an existing Django project that I am going to deploy on Windows 2008 Server. All required python libs have been installed. To check if everything is good I use python manage.py runserver ...
0
votes
1answer
158 views
Permissions for users accessing website via LAN (Django)
I am stuck on this problem.
The Idea is to allow users accessing my website through the LAN or local network to skip a login page and access the website as an anonymous user with special permissions. ...
0
votes
2answers
592 views
django - ImportError: No module named modpython
I'm trying to setup django on my vhost and got stuck on this error:
MOD_PYTHON ERROR
ProcessId: 4496
Interpreter: 'ouiop'
ServerName: 'ouiop.com'
DocumentRoot: ...
1
vote
1answer
153 views
Why doesn't Apache display 404 errors with Django and mod_wsgi?
With my current Apache & Django setup, when I go to a page that does not exist, the root page for the website is displayed rather than a 404 error. Here is my httpd.conf file:
Alias /robots.txt ...
0
votes
1answer
147 views
Django admin interface not working in Apache2
I setup Django 1.4 on my testing server and everything works fine, except for the admin interface, which returns either a 404 or 403 error, depending on my configuration.
I also noticed that the ...
1
vote
1answer
211 views
The logs of POST/GET requests from Django application on Apache
Django development server is really nice, it shows the log of all POST/GET requests as well as other events in real time. Example of logs from Django dev server:
[04/Jul/2012 19:23:27] "GET ...
1
vote
1answer
95 views
How to enable SSL for a whole django site with apache2+ubuntu 11?
I need to enable SSL for one of my entire django site. Currently the site is hosted with Apache2 in Ubuntu 11.1 and just accessible through http. I'd like to know the following,
1) Apache ...
0
votes
1answer
90 views
Multi-threading under Apache resulting in duplicate threads
I am running a python thread pool under Apache2 to handle incoming special HTTP requests.
The idea is that I have a single "handler" thread per request source - so if I have three devices (A,B,C) ...
0
votes
1answer
2k views
Stuck with deploying django with apache + mod_wsgi
I get an 500 internal server error and in the log files it writes:
[Thu Jun 14 16:30:22 2012] [error] [client 127.0.0.1] ImportError: Could not import settings 'mysite.settings' (Is it on sys.path?): ...
0
votes
0answers
49 views
apache2 & Django: _bsddb.so permission denied.
I am using apache2 and Django to build a web interface in ubuntu.
Problem is that:
def hashopen(file, flag='c', mode=0666, pgsize=None, ffactor=None, nelem=None,
cachesize=None, lorder=None, ...
0
votes
1answer
212 views
Correct escaping of % in the URL with Apache
I have a Django project where I have a search page which takes input through a POST and redirect to /search/<search string>/ and this page renders the result. The percentage sign (%) is used as ...

