Re: Different types of testing

2019-07-12 Thread Scot Hacker
On Friday, July 12, 2019 at 5:33:38 AM UTC-7, Chandrashekhar Singh wrote: > > Hello Developers, > I am curious to know what are testing methods do we use in django. Does > any has good examples or codes except django documentation.? > thanks > I don't have numbers, but subjectively, it feels li

Re: Django Admin Login will not Redirect following Authentication on Remote Host

2019-07-12 Thread Sidnei Pereira
Hahahaha I'm glad it helped! I will probably add this answer to your stackoverflow question. Maybe it will help someone else. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send

Re: Collapsible elements in admin stopped working with latest release

2019-07-12 Thread Paul Michalski
I can confirm this bug also occurs when using the minified file, collapse.min.js. I just updated our production server and the same bug popped up. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop recei

Re: HOSTING DJANGO

2019-07-12 Thread WilliamsHosting
I haven't heard that Namecheap shared hosting supports Django...some of the system requirements would likely have them recommend a vps or dedicated server instead. On Monday, May 13, 2019 at 6:34:15 AM UTC-5, Isaac Imafidon wrote: > > Please have anyone here hosted django site using namecheap

Re: Unable to change db sqllite to mysql

2019-07-12 Thread john samuel
Ok bro...I'll try and let you know... On Fri, 12 Jul 2019, 15:26 'Amitesh Sahay' via Django users, < django-users@googlegroups.com> wrote: > Try to use 'UTF-8' instead of 'utf8mb4' and see if that works. > > Regards, > Amitesh Sahay > > > On Friday, 12 July, 2019, 07:56:33 am IST, Jorge Gimeno <

Collapsible elements in admin stopped working with latest release

2019-07-12 Thread Paul Michalski
I just upgraded from Django 2.1.3 to 2.2.3, at which point collapsible elements in the admin interface stopped working. I’m using IE11, and in the console I see the error “object doesn't support property or method 'matches'”, with a reference to line 35 of collapse.js in the admin package. I did so

Different types of testing

2019-07-12 Thread Chandrashekhar Singh
Hello Developers, I am curious to know what are testing methods do we use in django. Does any has good examples or codes except django documentation.? thanks -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and st

[import pyzbar.pyzbar as pyzbar] raises ImportError('Unable to find zbar shared library')

2019-07-12 Thread SUDHAN DC
Hello guys, I am very new in the Django and python and I am trying to write a barcode-reader code. my requirements.txt file is as follows Django>=2.2,<3.0 psycopg2>=2.7,<3.0 Pillow>=6.1.0 pyzbar==0.1.8 numpy==1.16.4 django-sslserver==0.20 but when I try to import the prybar it raises an error

Re: Unable to change db sqllite to mysql

2019-07-12 Thread 'Amitesh Sahay' via Django users
Try to use 'UTF-8' instead of 'utf8mb4' and see if that works. Regards, Amitesh Sahay On Friday, 12 July, 2019, 07:56:33 am IST, Jorge Gimeno wrote: On Thu, Jul 11, 2019 at 6:55 PM john samuel wrote: Hi shreeram, But the fact is that i  have changed the port number in xampp server

reg: rest framework in-built mixins

2019-07-12 Thread 'Amitesh Sahay' via Django users
Hi,  I am writing a simple CRUD with djangorestframework, and I am using in-built mixin. Please see below, and look for ' class StatusAPIView' views.py=== from django.views.generic import View from rest_framework.views import APIView from rest_framework import generics, mixins from rest_fr