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?
Thanks,
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/JUTvMucLwLYJ.
To post to this group, send email to django...@googlegroups.com.
To unsubscribe from this group, send email to django-users...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
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 about wsgi? Or is there a "here's what you do if you don't have a development server" tutorial somewhere?
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/UhMFGZB6YS0J.
To post to this group, send email to django...@googlegroups.com.
To unsubscribe from this group, send email to django-users...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
--
You received this message because you are subscribed to the Google Groups "Django users" group.
To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/1pD4k3PdhtEJ.
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 hope that it will pick up the admin stuff later when it gets to talk about wsgi? Or is there a "here's what you do if you don't have a development server" tutorial somewhere?You should not be doing the tutorial - or any development - on your server. Install Django locally and do it there, then deploy when you are ready and not before.
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: start with Oracle's VirtualBox and build a Ubuntu virtual machine, Enable the desktop, mySQL, and SSLServer. Get easy_install which comes with pip. Install Django via pip, add Python-mySQL and Mako - then off you go. It's a whole lot easier this way.