Re: Development server won't work from a shared web host

2012-09-08 Thread Javier Guerra Giraldez
On Sat, Sep 8, 2012 at 12:55 AM, graeme wrote: > Why Mako? As a personal preference it is fine, but why general advice for > newbies? Many people are happy with Django templates - although I far prefer > Jinja which had the advantages without some of the more annoying > restrictions. after a quic

Re: Development server won't work from a shared web host

2012-09-07 Thread graeme
On Friday, September 7, 2012 8:38:56 AM UTC+5:30, ecs1749 wrote: > > Well, that's almost true :-) > > Granted - it's a lot easier so far but I had to track down several things > (and a whole lot of "here's how" tips) that were taken for granted (like > pip which require easy_install so on a

Re: Development server won't work from a shared web host

2012-09-07 Thread graeme
On Tuesday, September 4, 2012 11:43:53 AM UTC+5:30, Daniel Roseman wrote: > > On Tuesday, 4 September 2012 03:32:08 UTC+1, ecs1749 wrote: >> >> Thanks for the reply. Yes, I saw that message. I am a bit lost where to >> go next if I completely ignore that tutorial regarding doing admin from the

Re: Development server won't work from a shared web host

2012-09-06 Thread ecs1749
Well, that's almost true :-) Granted - it's a lot easier so far but I had to track down several things (and a whole lot of "here's how" tips) that were taken for granted (like pip which require easy_install so on and so forth). In retrospect, I recommend future newbee to take this route:

Re: Development server won't work from a shared web host

2012-09-06 Thread Kurtis Mullins
Hey, All you should need to get through the Django Tutorial is Python and Django. During development you can use SQLite which is built in and doesn't need any third-party libraries. Good luck! On Thu, Sep 6, 2012 at 1:23 PM, ecs1749 wrote: > Thanks. I might as well bite bits of it. It's tough

Re: Development server won't work from a shared web host

2012-09-06 Thread ecs1749
Thanks. I might as well bite bits of it. It's tough going because there are so many dependencies. It's hard to gather all of the right packages just to get through the Django tutorial. On Thursday, September 6, 2012 6:59:02 AM UTC-7, Demian Brecht wrote: > > You *can* install Django on Linux,

Re: Development server won't work from a shared web host

2012-09-06 Thread Demian Brecht
You *can* install Django on Linux, Mac or Windows. Choose the environment that you're most accustomed to if you're just trying to get things done. However, if you want to learn Linux at the same time (at least, bits of it), then I fully endorse going down that path. On Wed, Sep 5, 2012 at 9:19 PM,

Re: Development server won't work from a shared web host

2012-09-05 Thread ecs1749
Ok, ok. I now have a Ubuntu/server with a Ubuntu desktop running using oracle vm virtualbox. I know almost nothing about Linux. I don't even know how to ssh to this beast sitting in front of me. I hope this is a start... On Tuesday, September 4, 2012 9:19:57 AM UTC-7, Marcin wrote: > > Yo

Re: Development server won't work from a shared web host

2012-09-04 Thread Marcin Tustin
You don't have a computer that you can develop on at all? How are you writing this email? Developing over ssh is going to be a huge pain. Now, you *maybe* can use the runserver command - if you do add the --help switch it will tell you how to run it to bind to a particular interface and port. It m

Re: Development server won't work from a shared web host

2012-09-04 Thread ecs1749
I don't have a local machine I can use to learn Django - just a personal acct from a shared host. The question I kept asking was: How do I get into admin and follow the tutorial without the development server because the tutorial doesn't tell me that. Regards, On Monday, September 3, 2012 11

Re: Development server won't work from a shared web host

2012-09-04 Thread ecs1749
To answer my own question, I found the following: http://www.andymboyle.com/django-tutorials/ On Monday, September 3, 2012 7:32:08 PM UTC-7, ecs1749 wrote: > > Thanks for the reply. Yes, I saw that message. I am a bit lost where to > go next if I completely ignore that tutorial regarding doing

Re: Development server won't work from a shared web host

2012-09-03 Thread Daniel Roseman
On Tuesday, 4 September 2012 03:32:08 UTC+1, ecs1749 wrote: > > Thanks for the reply. Yes, I saw that message. I am a bit lost where to > go next if I completely ignore that tutorial regarding doing admin from the > development server (which I don't have). Do I dive into tutorial #3 and > h

Re: Development server won't work from a shared web host

2012-09-03 Thread ecs1749
Thanks for the reply. Yes, I saw that message. I am a bit lost where to go next if I completely ignore that tutorial regarding doing admin from the development server (which I don't have). Do I dive into tutorial #3 and hope that it will pick up the admin stuff later when it gets to talk ab

Re: Development server won't work from a shared web host

2012-09-03 Thread Jonathan Baker
In the 'Running the Development Server' section of this pagein the tutorial it states that: "Although this server is convenient for development, resist the temptation to use it in anything resembling a production environment. The development server can h

Development server won't work from a shared web host

2012-09-03 Thread ecs1749
I have Django working from a shared host account (westhost). I was able to follow all of the steps in tutorials 1 & 2 except the part on starting the development server. Apparently westhost won't let you run that. Without the development server, how do I access the Django admin functions? T