Re: Using the URLconf defined in polls.urls, Django tried these URL patterns, in this order

2018-10-23 Thread Manjunath
You are welcome. I suggest you go through the documentation & guide carefully and work accordingly.. I learned the same way!! On Wednesday, October 24, 2018 at 8:17:06 AM UTC+5:30, Bugs Bunny wrote: > > i use this and work, thanks (y) > > On Tue, Oct 23, 2018 at 1:04 AM Manjunath > wrote: > >>

Re: Using the URLconf defined in polls.urls, Django tried these URL patterns, in this order

2018-10-23 Thread Bugs Bunny
i use this and work, thanks (y) On Tue, Oct 23, 2018 at 1:04 AM Manjunath wrote: > Your project urls are set to address starting with admin & polls. > > You can browse *localhost:8000/polls/* > > On Monday, October 22, 2018 at 11:06:22 PM UTC+5:30, Bugs Bunny wrote: >> >> Regards for the answers

Re: Channels: about max message size

2018-10-23 Thread Andrew Godwin
Hmm, it's possible the 0.x series didn't have response streaming for files so there'd be a limit, but I honestly can't remember, that was years ago. There's really not much I can do other than recommending an upgrade to something vaguely recent. Also make sure Heroku is not cutting you off with a

RE: Django auto-deletes field related to MySQL Transactions

2018-10-23 Thread Matthew Pava
And make sure your form is posting to the save view and not the delete view. Maybe show us your template. From: django-users@googlegroups.com [mailto:django-users@googlegroups.com] On Behalf Of Joel Sent: Tuesday, October 23, 2018 11:32 AM To: django-users@googlegroups.com Subject: Re: Django a

Re: Django auto-deletes field related to MySQL Transactions

2018-10-23 Thread Joel
You could have a signal which captures all these and logs its origin. On Tue, 23 Oct, 2018, 9:35 PM RyanW, wrote: > Yes, I honestly don't see how Django could be doing this either. The only > I could think of was user deletion, but no one has claimed to have done so. > > No other apps are conne

Re: Django auto-deletes field related to MySQL Transactions

2018-10-23 Thread RyanW
Yes, I honestly don't see how Django could be doing this either. The only I could think of was user deletion, but no one has claimed to have done so. No other apps are connected. Thanks for the tip!! On Tuesday, October 23, 2018 at 10:05:51 AM UTC-5, Matthew Pava wrote: > > It doesn’t seem lik

RE: Django auto-deletes field related to MySQL Transactions

2018-10-23 Thread Matthew Pava
It doesn’t seem like Django would be doing this. Do you have any other apps connected to the database? You’ll probably want to surround your URL in quotation marks. From: django-users@googlegroups.com [mailto:django-users@googlegroups.com] On Behalf Of RyanW Sent: Tuesday, October 23, 2018 9:3

Re: GEOSContextHandle leak probably due to thread local storage destructing order

2018-10-23 Thread Yong Li
Thanks. FYI, I created a ticket: https://code.djangoproject.com/ticket/29878 On Friday, October 19, 2018 at 7:51:06 PM UTC-4, Tim Graham wrote: > > Yes, if you can demonstrate that Django is at fault, you may create a > ticket. > > If you're unsure, you might have better luck on the > https://gr

Re: Django auto-deletes field related to MySQL Transactions

2018-10-23 Thread RyanW
I have a button to delete a record by the user, displayed inside a template as: and the function in views.py def delete(request, part_id=None): obj = epe.objects.get(id=part_id) obj.delete() return HttpResponseRedirect(reverse('epe_home')) Other than that, I have some ForeignKey r

RE: Django auto-deletes field related to MySQL Transactions

2018-10-23 Thread Matthew Pava
Check your source code for any delete commands. This might also be your authentication backend. Which one are you using? From: django-users@googlegroups.com [mailto:django-users@googlegroups.com] On Behalf Of RyanW Sent: Monday, October 22, 2018 7:55 PM To: Django users Subject: Django auto-dele

RE: There's a complete CRUD app for django, like Admin?

2018-10-23 Thread Matthew Pava
You might want to have a look at YourLabs CRUDLFAP+: https://yourlabs.io/oss/crudlfap From: django-users@googlegroups.com [mailto:django-users@googlegroups.com] On Behalf Of Fellipe Henrique Sent: Tuesday, October 23, 2018 7:02 AM To: Django Users Subject: There's a complete CRUD app for django,

Re: Doc on deploying production website using django

2018-10-23 Thread Derek
Have a look at: http://dev.prodigi.us/post/python-gunicorn-nginx-simpler-and-more-performant-method-deploy-your-django-projects/ On Tuesday, 23 October 2018 02:12:18 UTC+2, ah wrote: > > Hi, > Is there a detailed comprehensive documentation on how to deploy a > production website using django w

There's a complete CRUD app for django, like Admin?

2018-10-23 Thread Fellipe Henrique
Hello, I have a site here, using django admin, but it's been complicated to maintain.. I ned to add several javascript, import sessions etc.. and Admin was good so far, but now I spent several time to try to modify any admin model screen... So.. I thought, maybe there's a app to do exactly like a

Channels: about max message size

2018-10-23 Thread Chris
I use Channels & websockets for my webapp's "export data" functionality, since it can take a long time to generate the file (more than 30 seconds). In general this works fine, even for large downloads (several MB), but I have seen several cases on Heroku where the browser never receives the mes