Re: advice location of site for production and devel

2006-04-10 Thread [EMAIL PROTECTED]
Neat, Jacob. thanks Derek --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to [EMAI

Re: advice location of site for production and devel

2006-04-10 Thread Jacob Kaplan-Moss
On Apr 10, 2006, at 2:43 PM, [EMAIL PROTECTED] wrote: >> 2- First thing I need to know is this: If it is a project with some >> applications, the project should have a home page. From this home >> page, >> the user can choose from running applications. In the tutorial I've >> read nothing abou

Re: advice location of site for production and devel

2006-04-10 Thread [EMAIL PROTECTED]
> 2- First thing I need to know is this: If it is a project with some > applications, the project should have a home page. From this home page, > the user can choose from running applications. In the tutorial I've > read nothing about that project home page. How can I do it? Create a > view und

Re: advice location of site for production and devel

2006-04-10 Thread Waylan Limberg
On 4/9/06, Luis P. Mendes <[EMAIL PROTECTED]> wrote: > > I have the project in /home/luis/myproject. Is it for a security reason > that it should not be placed under htdocs? or other... Yes, that is certainly part of it. Consider your settings.py file. It has all your DB connection settings (use

Re: advice location of site for production and devel

2006-04-09 Thread Luis P. Mendes
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Thank you for your help. I was able to load the index page of the only application I developed of my project using apache, but I needed to change some urls. I haven't yet understand this process completely. So I ask you for some 'light'. I have th

Re: advice location of site for production and devel

2006-04-04 Thread Kenneth Gonsalves
On Tuesday 04 Apr 2006 5:47 pm, Luis P. Mendes wrote: > I thought of having a development site under my /home account and > it is running fine with the django pre-built runserver command. keep it there and configure apache/modpython to access it > > But, I'd like to copy the project, from time t

Re: advice location of site for production and devel

2006-04-04 Thread Rudolph
You should NEVER put your Python files inside apache's htdocs (there's no need to do this). Only the media files should be in webaccessible locations. You could put both the testing and production code in your home directory: /home/joe/test/ /home/joe/production/ /home/joe/django/ You could of c

Re: advice location of site for production and devel

2006-04-04 Thread Grimboy
Are you following http://www.djangoproject.com/documentation/modpython/? On 04/04/06, Luis P. Mendes <[EMAIL PROTECTED]> wrote: > > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > Hi, > > I'm building my first dynamic web site using Django. mod_python is > installed and runs well. I tried t

advice location of site for production and devel

2006-04-04 Thread Luis P. Mendes
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I'm building my first dynamic web site using Django. mod_python is installed and runs well. I tried the example supplied at its docs. I thought of having a development site under my /home account and it is running fine with the django pre-buil