attribute has no file associated with it

2021-07-19 Thread David Crandell
This error keeps appearing when I try to update forms with image fields. When I try to upload images, the field containing the image says "[field] attribute has no file associated with it" I'm using model forms and generic update views. I don't know how to make the attribute have the file

connection to an existing legacy database

2021-07-19 Thread sum abiut
I am trying to connect Django to an existing legacy database but I got this error message. I only get the message why I try to migrate. I follow the guide from the Django documentation . error message: django.db.utils.ProgrammingError:

Re: Message communication in both Text and Email

2021-07-19 Thread dev burna
Hi, i can provide you solutions, here is my website https://devburna.com On Sunday, July 18, 2021 at 11:02:58 PM UTC+1 ram.mu...@gmail.com wrote: > Hi, > > We are planning to implement messaging functionality similar to WhatsApp. > That means WhatsApp allows users to send messages using a

Re:

2021-07-19 Thread Abhishek Choudhury
Hey  Good evening , I really liked the way you guys explained the issue. I found it very helpful, and interesting. Thanks  Regards, Abhishek Choudhury On Mon, 19 Jul 2021 at 5:16 PM, Benjamin Schollnick < bscholln...@schollnick.net> wrote: > They are presumably streaming the video, which

Re: Added new column to model and run migrations but not applied to database table

2021-07-19 Thread Aman Vyas
if it is saying no changes detected while running makemigrations and you are sure that you changed models.py then these things you can try: 1: python manage.py makemigrations appname if this will not work then do that 2: delete migrations folder from your app and delete database then run again

Re: Message communication in both Text and Email

2021-07-19 Thread Divyesh Khamele
Hello, I got your contact through the django-users google group. Do you hire contract based freelancers? I can certainly help you with my expertise and perform related tasks. Looking forward to hearing from you. Thank you Best Regards, Divyesh Khamele On Mon, 19 Jul 2021 at 3:32 AM, Ram wrote:

Re: building mobile app

2021-07-19 Thread Divyesh Khamele
Hello, I got your contact through the django-users google group. Do you hire contract based freelancers? I can certainly help you with my expertise and perform related tasks. Looking forward to hearing from you. Thank you Best Regards, Divyesh Khamele On Sat, 17 Jul 2021 at 11:15 PM, Peter

how to stop pyttsx3 speech whenever I want

2021-07-19 Thread A- KASH
Please help me to stop the text speech when i click on the same button(the button which start the function) No, answer available on stackoverflow https://stackoverflow.com/questions/57525684/how-to-stop-pyttsx3-speech-whenever-i-want -- You received this message because you are subscribed

Re: Added new column to model and run migrations but not applied to database table

2021-07-19 Thread Boris Pérez
python manage.py migrate --fake-initial 2021-07-19 3:32 GMT-04:00, Ayser shuhaib : > What you can do is just change the name of the model then run the migration > after that change it back to the original name and run the migration again. > This what I do when facing such problem > > On Mon, 19

Re:

2021-07-19 Thread Benjamin Schollnick
They are presumably streaming the video, which means that they are using a proprietary video player, as well as requiring a registration/subscription. So you can in theory, license a video player which supports some sort of encryption/login/subscription support, but if the video can be played,

join developer meeting point Django discussion forum

2021-07-19 Thread SKYLINE TV
Welcome to Django developer meeting hub developer meeting point is a discussion forum where we talk about our various challenges in python programming and Django framework And also Help each other To resolved our bug. I notice than as a beginner there are various bug and error's I always

Re:

2021-07-19 Thread Kasper Laudrup
On 19/07/2021 07.14, pankaj palmate wrote: > Hi Abhishek thanks for the response but we cannot avoid users from > download using it  > Of course you can't stop users from downloading data with a field in a database. At least not if you want them to be able to access it in the first place. As

Re: Added new column to model and run migrations but not applied to database table

2021-07-19 Thread Ayser shuhaib
What you can do is just change the name of the model then run the migration after that change it back to the original name and run the migration again. This what I do when facing such problem On Mon, 19 Jul 2021 at 07:07, Salima Begum wrote: > Hi all, > > I have added a new column to the

Re: Added new column to model and run migrations but not applied to database table

2021-07-19 Thread Ayser shuhaib
What you can do is just change the name of the model then run the migration after that change it back to the original name and run the migration again. This what I do when facing such problem On Mon, 19 Jul 2021 at 08:41, Salima Begum wrote: > Hi Abhishek, What you suggested will work but I

Re: Added new column to model and run migrations but not applied to database table

2021-07-19 Thread Salima Begum
Hi Abhishek, What you suggested will work but I don't want to change my database without changing databases. I want to fix this issue. How can I achieve this? Please help me out. Thank you very much for your quick response. Thank you ~Salima On Mon, Jul 19, 2021 at 11:45 AM Abhishek Choudhury <

Re: Added new column to model and run migrations but not applied to database table

2021-07-19 Thread Abhishek Choudhury
Hi Salima, If you're in a hurry and trying it on development, I think you can create a new database and run the migrate command. This will recreate the schema and your issue will be resolved in no time. Thanks and regards, Abhishek Choudhury On Mon, 19 Jul 2021 at 10:37 AM, Salima Begum wrote: