Re: Calling out for Help!

2011-02-08 Thread Chris Hannam
I have found http://stackoverflow.com/questions/tagged/django to be an awesome resource. CH -- 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,

Re: Looking for IDE + FTP

2011-02-08 Thread Chris Hannam
I really enjoy Wing IDE, it has an excellent debugger. It won't do your ftp stuff but it will make solving bugs a lot easier. CH -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to

Re: Database per user

2011-02-06 Thread Chris Hannam
Hi, http://docs.djangoproject.com/en/1.2/topics/db/multi-db/ contain information about setting up multiple databases. I personally have no idea how this would scale to may users. If you are looking to store large amounts of data I would look at an alternative to SQLite. I have found 

Re: File Upload

2011-02-06 Thread Chris Hannam
Hi, startswith is usually a string method. Looks like something is calling .startwith() on a tuple rather than the expected string. When you instantiate your model are you certain all the values are correct? Try logging all the values before creating the model and look for a tuple where there

Re: Amazing work

2011-02-05 Thread Chris Hannam
Hi, Plone (which runs on Zope) is not that unusual a CMS system for business. It suffers from a lack of documentation like Zope but there is a pretty thriving community behind Plone currently. Certainly worth a look if nothing else. CH -- You received this message because you are subscribed to

Re: Help on adding CSS to django project

2011-02-04 Thread Chris Hannam
Apologies for that premature send: > Hi, > The way I have approached this is to have a static dir set in my urls.py: > > (r'^static/(?P.*)$', 'django.views.static.serve', { 'document_root': settings.MEDIA_ROOT } ) settings.py has the following MEDIA_ROOT =

Re: Help on adding CSS to django project

2011-02-04 Thread Chris Hannam
> > Hi guys, > am very new to django and am having troubles adding css to my pages > even though i've found some tutorials online > and followed it word for word. Hi, The way I have approached this is to have a static dir set in my urls.py: -- You received this message because you are