Re: Compatibility List

2020-12-30 Thread Benny M
P.S.
> 
> Effectively 2.2 is as far as you need to go for the time being because it is 
> an LTS release. Might make a convenient initial goal. Should be pain-free.
> 
Unfortunately that’s not an option.

-- 
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/CH2PR14MB391377CB97F4273EEDC0759DC0D60%40CH2PR14MB3913.namprd14.prod.outlook.com.


Re: Compatibility List

2020-12-30 Thread Benny M
Thanks for your response, Mike.
I was using “changelog” and “release notes” interchangeably; sorry for the 
confusion.

My question is more about packages that extend Django’s capabilities (i.e. 
django_csp, django_rq, etc.) as opposed to Django itself.

Thankfully Django has great release notes, so catching up there isn’t a 
problem. However, what would be good way to audit third-party dependencies to 
find out which ones need to be updated to work with 3.1, or which haven’t 
caught up?

Benny

-- 
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/CH2PR14MB391372A0B03FB70C422841F2C0D60%40CH2PR14MB3913.namprd14.prod.outlook.com.


Re: Compatibility List

2020-12-30 Thread Mike Dewhirst

On 31/12/2020 2:16 pm, Benny M wrote:

Hi all,

I have a project that’s doing a rather sizable jump from 1.11.29 to 3.1.
I’m aware of the internal gotchas (enforced on_delete, settings syntax, etc) - 
but I was curious if anyone knows of a package compatibility list exists?
Something like caniuse but for django-focused packages. Right now I’m just 
going through the changelogs of the packages used in the project and making an 
educated guess.


No need to read the changelogs unless something goes badly wrong. Read 
the release notes instead.


https://docs.djangoproject.com/en/3.1/releases/

They cascade down the page all the way to 1.11

Here is the recommended mechanism ...

https://docs.djangoproject.com/en/3.1/howto/upgrade-version/

Effectively 2.2 is as far as you need to go for the time being because 
it is an LTS release. Might make a convenient initial goal. Should be 
pain-free.


Cheers

Mike





If one doesn’t exist (could be a fun and useful project?) please feel free to 
mention any gotchas you’ve found.

Thanks!
Benny




--
Signed email is an absolute defence against phishing. This email has
been signed with my private key. If you import my public key you can
automatically decrypt my signature and be sure it came from me. Just
ask and I'll send it to you. Your email software can handle signing.


--
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/d2f171c0-f261-968d-ccb5-7b0bc752df02%40dewhirst.com.au.


OpenPGP_signature
Description: OpenPGP digital signature


Compatibility List

2020-12-30 Thread Benny M
Hi all,

I have a project that’s doing a rather sizable jump from 1.11.29 to 3.1.
I’m aware of the internal gotchas (enforced on_delete, settings syntax, etc) - 
but I was curious if anyone knows of a package compatibility list exists?
Something like caniuse but for django-focused packages. Right now I’m just 
going through the changelogs of the packages used in the project and making an 
educated guess.

If one doesn’t exist (could be a fun and useful project?) please feel free to 
mention any gotchas you’ve found.

Thanks!
Benny

-- 
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/CH2PR14MB39132F7199BF556D16FE13C2C0D60%40CH2PR14MB3913.namprd14.prod.outlook.com.


Re: New Django Contract/Job Board

2020-12-30 Thread Clifford Okorie
Hello Job,  I'm interested in helping to maintain the site, thank you .

On Tue, Dec 29, 2020, 21:01 Jacob Hyde  wrote:

> Hi everyone.
>
> I recently created a Django contract / job board (
> https://djangocontracts.com). It works very similar to larajobs, but is
> for Django. You can create a FREE post to the board using the coupon
> DCFREE12 right now, or if you feel like helping maintain the site you can
> get 50% off using the 50PERCENTOFF coupon code. You can also sign up for
> instant or weekly job alerts.
>
> I'm hoping to gain some traction with this job board, so any posting you
> may have would would be greatly appreciated if you also posted on this
> board.
>
> Check out djangocontracts.com!
>
> Thanks!
>
> --
> 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/15a5a988-f77b-43d8-9d3a-bb16f1bc08b0n%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/CAEKe806-w_3tEjSxMtOupQ%3D1YPJSQgqku2YpAQ6epFry0XKVfw%40mail.gmail.com.


Re: attempt to write a readonly database

2020-12-30 Thread Steven Mapes
It's a permissions error on the file.  For those running Linux change to 
the directory and type  *ls -l *.sqllite* so we can see who the owner and 
group are on the file. If you are running nginx it should be the same user 
as nginx is configured to run as (www-data) by default.  If the owner (or 
group) are www-data then look at the permissions, does that user/group have 
read and write on the file.

If you are on windows it's the same issue either the owner or the file 
permissions are wrong

On Wednesday, 30 December 2020 at 16:14:10 UTC jayo...@gmail.com wrote:

> I got the same error when I deployed my Django web app over Nginx server 
> and tried to access Django admin. If anyone knows the solution please 
> revert back.
> regards,
> govind
>
>
>
> On Wed, 30 Dec 2020 at 20:45, RANGA BHARATH JINKA  
> wrote:
>
>> hi,
>>
>> Try running as the root user using sudo permissions.
>>
>> All the best
>>
>> On Wed, Dec 30, 2020 at 8:18 PM Steven Mapes  
>> wrote:
>>
>>> This normally means that the user you are running your project as does 
>>> not have access to the SQLLite database file. I can see that you are 
>>> running on windows so fine the database in the file system and check and 
>>> change the owner as well as ensuring that the owner/group has read/write 
>>> access to the file.
>>>
>>> On Thursday, 24 December 2020 at 07:23:24 UTC parul@gmail.com wrote:
>>>
 Can anyone help with this?


 OperationalError at /users/
 Request Method: POST
 Request URL: http://localhost:8000/users/
 Django Version: 3.0.3
 Exception Type: OperationalError
 Exception Value: 

 attempt to write a readonly database

 Exception Location: 
 C:\Users\parul\anaconda\envs\MyDjangoEnv\lib\site-packages\django\db\backends\sqlite3\base.py
  
 in execute, line 396
 Python Executable: C:\Users\parul\anaconda\envs\MyDjangoEnv\python.exe
 Python Version: 3.8.5
 Python Path: 

 ['C:\\Users\\parul\\Desktop\\Djangoforms\\ProTwo',
  'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\python38.zip',
  'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\DLLs',
  'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\lib',
  'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv',
  'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\lib\\site-packages']

 Server time: Wed, 23 Dec 2020 16:14:46 +



 ->>> Also, i checked the properties in db.sqlite3, all the 
 permissions are checked...write permission also
 can anyone help 

>>> -- 
>>> 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...@googlegroups.com.
>>> To view this discussion on the web visit 
>>> https://groups.google.com/d/msgid/django-users/e5d80366-037b-4ebc-a4ac-9bc1e32bf5ben%40googlegroups.com
>>>  
>>> 
>>> .
>>>
>>
>>
>> -- 
>> Thanks and Regards
>>
>> J. Ranga Bharath
>> cell: 9110334114
>>
>> -- 
>> 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...@googlegroups.com.
>>
> To view this discussion on the web visit 
>> https://groups.google.com/d/msgid/django-users/CAK5m3151VcaY1uoYhapa5e8cRdNwtzm8OND3Gf9k7qxtwOP_6Q%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/a1467545-f551-4760-ac2c-d28671dc30b9n%40googlegroups.com.


Re: Configuration Django with uwsgi + NGINX

2020-12-30 Thread Venu Gopal
Thank you very much Carlos

On Wed, Dec 30, 2020 at 4:35 AM carlos  wrote:

>
> https://www.digitalocean.com/community/tutorials/how-to-serve-django-applications-with-uwsgi-and-nginx-on-ubuntu-16-04
>
> On Tue, Dec 29, 2020 at 4:57 AM Django-Learner_27 <
> reachme.ven...@gmail.com> wrote:
>
>>
>> Hi, I want to know about configuration steps for connecting Django with
>> uwgsi + NGINX. I tried through some web links but I am getting errors.
>> Thanks in advance.
>>
>> --
>> 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/d46ce54c-15a2-42a4-8cb8-33a532ceb592n%40googlegroups.com
>> 
>> .
>>
>
>
> --
> att.
> Carlos Rocha
>
> --
> 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/CAM-7rO12PqttzPrPuOZ_dZ6M7NBWyzLPb3oDgq5A5kTM_op55Q%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/CAOhYkiyAGehw31O%3DM0VCaQqn9teGT9hqVeSf3A%3D0X_HL9ZXuQA%40mail.gmail.com.


Re: attempt to write a readonly database

2020-12-30 Thread Govind Kumar Yadav
I got the same error when I deployed my Django web app over Nginx server
and tried to access Django admin. If anyone knows the solution please
revert back.
regards,
govind



On Wed, 30 Dec 2020 at 20:45, RANGA BHARATH JINKA 
wrote:

> hi,
>
> Try running as the root user using sudo permissions.
>
> All the best
>
> On Wed, Dec 30, 2020 at 8:18 PM Steven Mapes 
> wrote:
>
>> This normally means that the user you are running your project as does
>> not have access to the SQLLite database file. I can see that you are
>> running on windows so fine the database in the file system and check and
>> change the owner as well as ensuring that the owner/group has read/write
>> access to the file.
>>
>> On Thursday, 24 December 2020 at 07:23:24 UTC parul@gmail.com wrote:
>>
>>> Can anyone help with this?
>>>
>>>
>>> OperationalError at /users/
>>> Request Method: POST
>>> Request URL: http://localhost:8000/users/
>>> Django Version: 3.0.3
>>> Exception Type: OperationalError
>>> Exception Value:
>>>
>>> attempt to write a readonly database
>>>
>>> Exception Location: 
>>> C:\Users\parul\anaconda\envs\MyDjangoEnv\lib\site-packages\django\db\backends\sqlite3\base.py
>>> in execute, line 396
>>> Python Executable: C:\Users\parul\anaconda\envs\MyDjangoEnv\python.exe
>>> Python Version: 3.8.5
>>> Python Path:
>>>
>>> ['C:\\Users\\parul\\Desktop\\Djangoforms\\ProTwo',
>>>  'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\python38.zip',
>>>  'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\DLLs',
>>>  'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\lib',
>>>  'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv',
>>>  'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\lib\\site-packages']
>>>
>>> Server time: Wed, 23 Dec 2020 16:14:46 +
>>>
>>>
>>>
>>> ->>> Also, i checked the properties in db.sqlite3, all the
>>> permissions are checked...write permission also
>>> can anyone help
>>>
>> --
>> 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/e5d80366-037b-4ebc-a4ac-9bc1e32bf5ben%40googlegroups.com
>> 
>> .
>>
>
>
> --
> Thanks and Regards
>
> J. Ranga Bharath
> cell: 9110334114
>
> --
> 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/CAK5m3151VcaY1uoYhapa5e8cRdNwtzm8OND3Gf9k7qxtwOP_6Q%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/CAFWZkWQEOFsVFxyYV1nc6yt6ODEwvaQaL0r%3DdNrbbPDi8GdFqA%40mail.gmail.com.


Django MQTT Broker

2020-12-30 Thread Walter Randazzo
Hi guys,

How r u all? Hope doing ok. 

Im working a iot project and I want to develp a panell of control with 
django.

¿Whats is the best or possible way to connect django to mqtt broker?

Thanks  in advance,

Regards,

-- 
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/71146354-06cb-46de-a67a-75f3e251ace4n%40googlegroups.com.


Re: Error After Heroku Deployment

2020-12-30 Thread Sumit Pande
Yes . I got the solution. Thanks

On Wed, Dec 30, 2020, 8:43 PM RANGA BHARATH JINKA 
wrote:

> Hi,
>
> Run
> heroku run python manage.py makemigrations
>  heroku run python manage.py migrate
>
> All the best
>
> On Wed, Dec 30, 2020 at 8:18 PM Sumit Pande <2018bit...@sggs.ac.in> wrote:
>
>> ProgrammingError at /accounts/login/
>> relation "django_site" does not exist
>> LINE 1: ..."django_site"."domain", "django_site"."name" FROM "django_si...
>>  ^
>> Request Method:  GET
>> Request URL:  https://carbonapp7.herokuapp.com/accounts/login/
>> Django Version:  3.1.1
>> Exception Type:  ProgrammingError
>> Exception Value:
>> relation "django_site" does not exist
>> LINE 1: ..."django_site"."domain", "django_site"."name" FROM "django_si...
>>  ^
>>  I have used *allauth*.
>>
>> *Please help me with this error.*
>>
>> --
>> 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%2BPixk%2Bhk3-X3J4SsM%3Dz9az_KntBinoJNOPDWp8mdMf5Abr%2BGg%40mail.gmail.com
>> 
>> .
>>
>
>
> --
> Thanks and Regards
>
> J. Ranga Bharath
> cell: 9110334114
>
> --
> 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/CAK5m315Q5g2XUNJHm4Ui2EbQDV4F9bAKGzR74--7wmo1B16jiA%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/CA%2BPixk%2BUFrX7KFRZoby9uJXRxmXApu3AA6dxc71sCOp_%2BbCciA%40mail.gmail.com.


Re: attempt to write a readonly database

2020-12-30 Thread RANGA BHARATH JINKA
hi,

Try running as the root user using sudo permissions.

All the best

On Wed, Dec 30, 2020 at 8:18 PM Steven Mapes  wrote:

> This normally means that the user you are running your project as does not
> have access to the SQLLite database file. I can see that you are running on
> windows so fine the database in the file system and check and change the
> owner as well as ensuring that the owner/group has read/write access to the
> file.
>
> On Thursday, 24 December 2020 at 07:23:24 UTC parul@gmail.com wrote:
>
>> Can anyone help with this?
>>
>>
>> OperationalError at /users/
>> Request Method: POST
>> Request URL: http://localhost:8000/users/
>> Django Version: 3.0.3
>> Exception Type: OperationalError
>> Exception Value:
>>
>> attempt to write a readonly database
>>
>> Exception Location: 
>> C:\Users\parul\anaconda\envs\MyDjangoEnv\lib\site-packages\django\db\backends\sqlite3\base.py
>> in execute, line 396
>> Python Executable: C:\Users\parul\anaconda\envs\MyDjangoEnv\python.exe
>> Python Version: 3.8.5
>> Python Path:
>>
>> ['C:\\Users\\parul\\Desktop\\Djangoforms\\ProTwo',
>>  'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\python38.zip',
>>  'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\DLLs',
>>  'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\lib',
>>  'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv',
>>  'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\lib\\site-packages']
>>
>> Server time: Wed, 23 Dec 2020 16:14:46 +
>>
>>
>>
>> ->>> Also, i checked the properties in db.sqlite3, all the
>> permissions are checked...write permission also
>> can anyone help
>>
> --
> 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/e5d80366-037b-4ebc-a4ac-9bc1e32bf5ben%40googlegroups.com
> 
> .
>


-- 
Thanks and Regards

J. Ranga Bharath
cell: 9110334114

-- 
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/CAK5m3151VcaY1uoYhapa5e8cRdNwtzm8OND3Gf9k7qxtwOP_6Q%40mail.gmail.com.


Re: Error After Heroku Deployment

2020-12-30 Thread RANGA BHARATH JINKA
Hi,

Run
heroku run python manage.py makemigrations
 heroku run python manage.py migrate

All the best

On Wed, Dec 30, 2020 at 8:18 PM Sumit Pande <2018bit...@sggs.ac.in> wrote:

> ProgrammingError at /accounts/login/
> relation "django_site" does not exist
> LINE 1: ..."django_site"."domain", "django_site"."name" FROM "django_si...
>  ^
> Request Method:  GET
> Request URL:  https://carbonapp7.herokuapp.com/accounts/login/
> Django Version:  3.1.1
> Exception Type:  ProgrammingError
> Exception Value:
> relation "django_site" does not exist
> LINE 1: ..."django_site"."domain", "django_site"."name" FROM "django_si...
>  ^
>  I have used *allauth*.
>
> *Please help me with this error.*
>
> --
> 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%2BPixk%2Bhk3-X3J4SsM%3Dz9az_KntBinoJNOPDWp8mdMf5Abr%2BGg%40mail.gmail.com
> 
> .
>


-- 
Thanks and Regards

J. Ranga Bharath
cell: 9110334114

-- 
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/CAK5m315Q5g2XUNJHm4Ui2EbQDV4F9bAKGzR74--7wmo1B16jiA%40mail.gmail.com.


Re: attempt to write a readonly database

2020-12-30 Thread Steven Mapes
This normally means that the user you are running your project as does not 
have access to the SQLLite database file. I can see that you are running on 
windows so fine the database in the file system and check and change the 
owner as well as ensuring that the owner/group has read/write access to the 
file.

On Thursday, 24 December 2020 at 07:23:24 UTC parul@gmail.com wrote:

> Can anyone help with this?
>
>
> OperationalError at /users/
> Request Method: POST
> Request URL: http://localhost:8000/users/
> Django Version: 3.0.3
> Exception Type: OperationalError
> Exception Value: 
>
> attempt to write a readonly database
>
> Exception Location: 
> C:\Users\parul\anaconda\envs\MyDjangoEnv\lib\site-packages\django\db\backends\sqlite3\base.py
>  
> in execute, line 396
> Python Executable: C:\Users\parul\anaconda\envs\MyDjangoEnv\python.exe
> Python Version: 3.8.5
> Python Path: 
>
> ['C:\\Users\\parul\\Desktop\\Djangoforms\\ProTwo',
>  'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\python38.zip',
>  'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\DLLs',
>  'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\lib',
>  'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv',
>  'C:\\Users\\parul\\anaconda\\envs\\MyDjangoEnv\\lib\\site-packages']
>
> Server time: Wed, 23 Dec 2020 16:14:46 +
>
>
>
> ->>> Also, i checked the properties in db.sqlite3, all the 
> permissions are checked...write permission also
> can anyone help 
>

-- 
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/e5d80366-037b-4ebc-a4ac-9bc1e32bf5ben%40googlegroups.com.


Re: 127.0.0.1:8000 refused to connect

2020-12-30 Thread Kasper Laudrup

On 30/12/2020 08.44, Parul. wrote:


I am not able to connect to localhost.
i have put Allowed_hosts=['*']
still i am getting this error
i am using command:
python manage.py runserver
python manage.py runserver 0.0.0.0:8000 
   python manage.py runserver 127.0.0.1:8000 

i tried all these commands still not able to connect to the localhost
can you please help ... it is becoming an obstacle for me
itsreally urgent


Don't write to me or anyone else directly! I'm not your personal 
assistant and this is not how mailing lists work.


If you do want some help, try to respond to the advise you've been given 
already instead of just writing the same thing over and over again.


I already told you I couldn't help you and even if I could, I definitely 
don't want to considering your behavior.


/Kasper

--
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/9e5db923-1e72-593c-ade8-4c85a9507b7a%40stacktrace.dk.