Re: Sending Live Streaming Images from Client’s Webcam to Django Server

2022-10-10 Thread 'Kasper Laudrup' via Django users

On 08/10/2022 21.28, Anshuman Thakur wrote:

Sr plz anyone help me for this question



Which question?

It would be easier for someone to help you if you actually asked a question.

Kind regards,

Kasper Laudrup

--
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 an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/fe047fd3-39e1-3eaf-eb41-05ecc54bfc34%40stacktrace.dk.


OpenPGP_0xE5D9CAC64AAA55EB.asc
Description: OpenPGP public key


OpenPGP_signature
Description: OpenPGP digital signature


Re: error extending base template

2022-10-10 Thread ASAMOAH EMMANUEL
Make sure the template directory is located in the app directory or if it
is in a different directory, ensure the location is specified at the
template section  in the settings.py file

On Mon, Oct 10, 2022 at 3:11 PM Namanya Daniel 
wrote:

> hello, someone help me out. am new to django and i face an issue with
> templates extending base.html
>
> i have created a base.html template which is basically a skeleton for
> other templates, they are all in templates/another directory but when i use
> {%extends 'base.html'%}  I get this error... thanks in advance
>
>
> Request Method:
> GET
> Request URL:
> http://127.0.0.1:8000/
> Django Version:
> 4.1.2
> Exception Type:
> TemplateDoesNotExist
> Exception Value:
> base.html
>
> --
> 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 an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/b46cebb4-fca2-49b8-a836-309a2c4a4024n%40googlegroups.com
> 
> .
>

-- 
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 an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CABFHQYwKkXHT%3DjLQYshKCV3q913_Q8dqWmFXi4477eDXLz0zmg%40mail.gmail.com.


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

2022-10-10 Thread Jhoan
Hello guys in my case I add a new table an the issue cames up, I try all 
the solutions here but none of there works for me, I have to do

- Backup of the database, 
- Delete all tables in MySQL, 
- Delete migrations files,
- Make migrations
- Migrate
- Upload the data
- And off course worked

Is so frustating this issue

El domingo, 3 de julio de 2022 a las 11:22:45 UTC-5, Thomas escribió:

> Sorry that you are having continued problems. Your first report was almost 
> a year ago and did not end up getting resolved but all the history on your 
> thread is missing here so we can’t help with this information.
>
> “Migrations were not added” might indicate that your development server is 
> out of sync with your production server and is somehow *behind*. I’m not 
> sure how big your development team is or how many development servers you 
> are running, but your “deployment czar” needs to make sure that these stay 
> sync’d.
>
> Perhaps a solution is to take the schema from your production server and 
> back port it to your development machines, then move forward to get 
> everything back in sync.
>
> Every other solution is a bit fiddly and likely requires some 
> understanding of how migrations are tracked and applied. And probably does 
> not solve your problem into the future since whatever you did a year ago to 
> get back running did not solve it for now.
>
> Hth
>
> - Tom
>
> On Jun 15, 2022, at 6:45 AM, Salima Begum  
> wrote:
>
> Hello Django experts,
>
> We are seeing this problem again and think that this should be a serious 
> bug in Django. We are wondering whether any one in this community is having 
> the same issue. I would appreciate it if you could share your thoughts on 
> this because we are really unhappy to see this problem again and again. 
>
> Thanks 
> ~Salima
>
> On Mon, Aug 16, 2021 at 9:47 AM Salima Begum  
> wrote:
>
>> Hi,
>> I am hitting this problem again with new code merges into the 
>> deployment server. Last time, I fixed the issue by doing like this
>>
>> "I have tried all the ways what you guys suggested me But here I don't 
>> want change database why because it is deployment server so, when I run 
>> manage.py makemigrations migrations are applied and changes are reading but 
>> when I run manage.py migrate changes are not taken to database so, Manually 
>> I queried queries to add columns into respected tables into database."
>>
>> I really think this might not be a sustainable solution. So, I would 
>> really like to fix this permanently. I would appreciate it if someone could 
>> suggest a remedy for this issue.
>>
>> Thank you in advance
>> ~Salima
>>
>> On Tue, Jul 27, 2021 at 5:18 AM guna visva  wrote:
>>
>>> having had the unfortunate phase of dealing with it , sorting it 
>>> requires some patience
>>>
>>> the issue is the tables in django_migrations is not in sync with rest 
>>> the rest of your database or migrations files. 
>>>
>>> You have to first remove the addition in field etc and make sure the 
>>> database tables are first in sync with your models, then 1. delete 
>>> migrations files and 2. delete django_migrations. Then 3.makemigrations and 
>>> 4. migrate fake.  All risks are yours to take
>>>
>>> Then finally just add your fields and makemigrations and migrate
>>>
>>> The above might/or not work as it might give some content type errors 
>>>
>>>
>>>
>>>
>>> On Wednesday, July 21, 2021 at 2:39:56 AM UTC+8 sebasti...@gmail.com 
>>> wrote:
>>>
 Is in settings.py also in installed app? Without that migrations don't 
 work

 Salima Begum  schrieb am Di., 20. Juli 
 2021, 19:00:

> Hi ,
> Thank you for your responses.
>  I have tried all the ways Which you people suggested I am not getting 
> any error while running makemigrations or migrate and 
> python manage.py migrate --fake-initial. But those migrations are not 
> applying to the database. How can I fix this issue without deleting the 
> database? 
>
> Thank you
> ~Salima
>  
>
> On Mon, Jul 19, 2021 at 7:02 PM Aman Vyas  wrote:
>
>> 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 python manage.py makemigrations
>>
>>
>>
>>
>> On Mon, Jul 19, 2021 at 6:07 AM Salima Begum <
>> sali...@rohteksolutions.com> wrote:
>>
>>> Hi all,
>>>
>>> I have added a new column to the existing model while developing. 
>>> Then I run makemigrations and migrate. It is not applied to the 
>>> database 
>>> table which is created based on that model. How can I fix this issue? 
>>> Please help me to complete this issue.
>>>
>>> The below issue I am facing in deployment 

error extending base template

2022-10-10 Thread Namanya Daniel
hello, someone help me out. am new to django and i face an issue with 
templates extending base.html

i have created a base.html template which is basically a skeleton for other 
templates, they are all in templates/another directory but when i use 
{%extends 'base.html'%}  I get this error... thanks in advance


Request Method:
GET
Request URL:
http://127.0.0.1:8000/
Django Version:
4.1.2
Exception Type:
TemplateDoesNotExist
Exception Value:
base.html

-- 
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 an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/b46cebb4-fca2-49b8-a836-309a2c4a4024n%40googlegroups.com.


Re: recursos premium en Django

2022-10-10 Thread Marcelo Robin
muchas gracias !!! ya los estoy siguiendo !!!

El dom, 2 oct 2022 a la(s) 07:10, ASAMOAH EMMANUEL (
emmanuelasamoah...@gmail.com) escribió:

> Hola compañeros desarrolladores, he configurado un canal privado en
> telegram donde he puesto recursos premium. Los recursos cubren el
> desarrollo web de Django desde principiante hasta profesional, tecnologías
> docker, git, desarrollo de API, pruebas y todos los recursos de pila
> completa. Hay un grupo de discusión donde las personas pueden conectarse y
> colaborar para acelerar sus habilidades de desarrollo. Si está interesado,
> encuentre a continuación los enlaces privados tanto al grupo de discusión
> como al canal. ¡Cautela! este grupo es estrictamente para cosas
> relacionadas con django y python, se desaconsejan los spams, se respetan
> mutuamente la cultura y los antecedentes.
> https://t.me/+VXTu7RXQ47VlM2Q0
>
> https://t.me/+X6y16nFHNIA5ZjE0
> Si por alguna razón, no pudiera acceder a los enlaces proporcionados,
> podría enviarme un mensaje en telegram en mi identificador: @simple_genius.
> ¡Atentamente!
> Emmanuel Asamoah.
> Desarrollador backend Django.
>
> --
> 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 an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/77e098e6-84bf-4282-ab48-8d5d38967857n%40googlegroups.com
> 
> .
>

-- 
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 an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAH25kbQr_CsAyo%3DtSGg5hdSAXJOom67Pc-x0ewNpm0-yxk848A%40mail.gmail.com.


Re: Add me to whatsapp

2022-10-10 Thread Frank Ezenwanne
I’m sorry I just saw the email. I thought it was to the django users group

On Sat, 8 Oct 2022 at 3:19 AM, Rachid ABID  wrote:

> Please add me to whatsapp m'y number +212708071415
>
> --
> 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 an
> email to django-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/django-users/CA%2BUrck0mD9EkHEJHr11ue_Cbxur9%3Db56iJ5dxpnhRmMt5Rj1mw%40mail.gmail.com
> 
> .
>

-- 
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 an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAMmnYR8j7tbQPgZaTusXFtFEZOkyYupJ--GopZzVzb4aS%3DP8jA%40mail.gmail.com.