Re: Django Web Hosting Service

2007-11-26 Thread rp
Although more expensive ($34/mo), I found highspeedrails.com to be excellent--you can also host multiple sites on one account. As my webfaction sites grew, they didn't hold up the way that highspeedrails.com did. I eventually moved things over there.

fileField pdf validation

2006-12-23 Thread rp
Does anyone have a recommended way to validate PDF files which are being uploaded? I only plan on uploading PDFs through the admin but wanted to know a more robust way than simply checking the extension. file_reference = models.FileField(upload_to='xxdirnamexx', blank=True,

Re: Trying to Extend User - but system not writing to database.

2006-10-23 Thread rp
These posts are very helpful: http://www.b-list.org/weblog/2006/06/06/django-tips-extending-user-model http://www.b-list.org/weblog/2006/09/02/django-tips-user-registration Both suggest using OneToOneField instead of ForeignKey: user = models.OneToOneField(User) instead of: user =

Re: ANN: Chesspark - A django based online chess community.

2006-10-20 Thread rp
nice! --~--~-~--~~~---~--~~ 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

new site, satellite internet, and the django admin

2006-10-13 Thread rp
here's a sporadic after work project motivated by my cousin, she and her partner are avid poker players travelling in an airstream trailer/using the django admin . . . http://www.thepokeratlas.com (no links/connections to online poker) e.g. of tournament data:

Re: web stats, mod_python profiler

2006-10-01 Thread rp
Thanks, Malcolm --~--~-~--~~~---~--~~ 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

Re: web stats, mod_python profiler

2006-10-01 Thread rp
Thanks, Malcom --~--~-~--~~~---~--~~ 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

web stats, mod_python profiler

2006-09-27 Thread rp
Does anyone have an example of using the mod_python profiling support: "django.core.handlers.profiler-hotshot" It's mentioned on this page: (http://code.djangoproject.com/wiki/ProfilingDjango) Thanks! Raman --~--~-~--~~~---~--~~ You received this message

Re: multiple database, messy solution?

2006-09-19 Thread rp
Hi Gregor, Thanks for the note. I'm quite excited about trying it this out. I'll post the results (I'm still a meeting away from finalizing the server changes) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

multiple database, messy solution?

2006-09-19 Thread rp
Hi, I work for a company that has a retail website with separate (1) staging and (2) live versions--separate mysql databases and web apps. We make changes on staging, Q/A them, and move them live. Changes are mostly mysql data changes. We're going to start using django for mysql changes to

Re: Forms with error reporting

2006-09-12 Thread rp
You can use the manipulators described on this page: http://www.djangoproject.com/documentation/forms/ Do a find on "if form.has_errors" to see a template example containing general form errors as well as field specific form errors. Let me know if you need more info. thanks, raman

Re: Set up problems ( webfaction )

2006-07-18 Thread rp
>Wound up just copying the admin media directories into my media >directory. Pipe up if there's a better way ... Instead of copying, you can use a symbolic link to the media files: If the httpd.conf had: alias /media/ /home2/rp/webapps/django/media_files/media the link would be s

Re: "no module named admin", webfaction

2006-07-17 Thread rp
Harish Mallipeddi wrote: > Hi, > > Did you enable Admin in the project settings file? You need to enable it > before you can start using it. Read the Django documentation to find out > more info on this. > > Cheers, > Harish > > On 7/18/06, Raman Prasad <[EMAIL PROTECTED]> wrote: > > > > > > Hi,