Re: Deploying django. Please specify the steps.

2011-03-15 Thread Nate Aune
You are not alone. We've seen many folks struggle with the deployment of Django. It can be done but it requires some reading up on documentation on various components in the stack. I suggest that you watch Jacob Kaplan Moss' Django deployment workshop video at: http://pycon.blip.tv/file/3632436/

Re: Deploying django. Please specify the steps.

2011-03-11 Thread Kenneth Gonsalves
On Fri, 2011-03-11 at 05:34 -0800, balu wrote: > 1. When I open "http://localhost/"; page, it is an error message > "Forbidden. You don't have permission to access / on this server". see if your home directory has an 'x' permission at the end: drwx--x--x 103 lawgon lawgon 4096 2011-03-11 18:

Re: Deploying django. Please specify the steps.

2011-03-11 Thread Graham Dumpleton
Go watch: http://code.google.com/p/modwsgi/wiki/WhereToGetHelp?tm=6#Conference_Presentations That presentation explains a lot about permissions and other errors you can. Recommend that before you even try and get Django running that you get a WSGI hello world script running. Use what is shown i

Re: Deploying django. Please specify the steps.

2011-03-11 Thread balu
1. When I open "http://localhost/"; page, it is an error message "Forbidden. You don't have permission to access / on this server". 2. with in /etc/apache2/sites-available/ directory I created a file named "locahost". In that I placed the Virtual Host settings. NameVirtualHost *:80 DocumentRoo

Re: Deploying django. Please specify the steps.

2011-03-11 Thread Jirka Vejrazka
OK - I'm going to ask the obvious question here - have you made sure that Apache web server user can read ALL your configuration files? The log reveals that there are permission problems on .htaccess file that is stored in your home directory (where Apache can't reach by default). I'm going to make

Re: Deploying django. Please specify the steps.

2011-03-11 Thread Kenneth Gonsalves
On Fri, 2011-03-11 at 04:46 -0800, balu wrote: > Here is the error log sir. nobody asked you for the apache error log. To repeat: please paste the following: 1. what error does your browser show 2. the relevant part of your apache config file (please do not post the whole config file) 3. your dj

Re: Deploying django. Please specify the steps.

2011-03-11 Thread balu
Here is the error log sir. [Wed Feb 09 22:23:25 2011] [notice] Apache/2.2.16 (Ubuntu) configured -- resuming normal operations [Wed Feb 09 23:28:09 2011] [notice] caught SIGTERM, shutting down [Wed Mar 09 20:10:30 2011] [notice] Apache/2.2.16 (Ubuntu) configured -- resuming normal operations [We

Re: Deploying django. Please specify the steps.

2011-03-11 Thread Kenneth Gonsalves
On Fri, 2011-03-11 at 13:40 +0100, Xavier Ordoquy wrote: > >> I had gone through the official site. But couldn't understand it > >> completely the configuration process. > >> > >> apache, mod_wsgi, nginx, mysql on ubuntu 10.10 > > > > first make up your mind - do you want apache or nginx? You ca

Re: Deploying django. Please specify the steps.

2011-03-11 Thread Xavier Ordoquy
Le 11 mars 2011 à 13:25, Kenneth Gonsalves a écrit : > On Fri, 2011-03-11 at 04:17 -0800, balu wrote: >> I tried to deploy django with the following. But I couldn't able >> succeed. Please let me know the exact steps in configuring apache >> server, configuring mod_wsgi. >> >> I had gone through

Re: Deploying django. Please specify the steps.

2011-03-11 Thread Kenneth Gonsalves
On Fri, 2011-03-11 at 04:17 -0800, balu wrote: > I tried to deploy django with the following. But I couldn't able > succeed. Please let me know the exact steps in configuring apache > server, configuring mod_wsgi. > > I had gone through the official site. But couldn't understand it > completely th

Deploying django. Please specify the steps.

2011-03-11 Thread balu
Hi all :) I tried to deploy django with the following. But I couldn't able succeed. Please let me know the exact steps in configuring apache server, configuring mod_wsgi. I had gone through the official site. But couldn't understand it completely the configuration process. apache, mod_wsgi, ngin