On 10-Aug-06, at 12:43 AM, Robin Gruyters wrote:

> My hosting provider doesn't give shell access, so I can't execute like
> "syncdb", "startapp", "startproject", etc.
>
> Is there another way to do this? (e.g. by creating a runsync.py  
> script?! (or
> something?))

short answer - without shell access, django programming is going to  
be a major pita. Long answer - you can create everything, directory  
structure etc etc offline on your dev machine and upload it to your  
production machine (too much to expect svn on that?). You could also  
pipe the sqlall to a file and create a script to initialise/update  
your database which you can run using phppgadmin or whatever.  
Ideally, if there is some way you could use svn on your production  
machine, you could do everything on your local machine and just svn  
up whenever you want changes. Even creating a superuser can be done  
by creating an sql script offline.

It can be done, but if you are serious about django go for root  
access - or at least shell access

-- 

regards
kg
http://lawgon.livejournal.com
http://nrcfosshelpline.in/web/



--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to