Re: Forbidden (403) - CSRF verification failed. Request aborted.

2022-11-22 Thread Chukwudi Onwusa
Check your template, immediately after the opening tag add {% csrf_token %} If you have it already, kindly check to ensure it's correctly spelt and placed and then restart your server. Best Regards. On Wed, Nov 23, 2022, 00:58 Carlos Roberto wrote: > Hi everyone! > > I use ngrok to make my proj

Forbidden (403) - CSRF verification failed. Request aborted.

2022-11-22 Thread Carlos Roberto
Hi everyone! I use ngrok to make my projects available in django. I'm having trouble accessing the admin page. After I enter the username and password I get the error 403. Has anyone had the same problem and could help me? Regards -- You received this message because you are subscribed to t

Re: Need to Replace django default I'd with UUID field

2022-11-22 Thread Jason
why? use uuid for public resource access, and internal int/bigint for primary keys. that works well with the index structure and doesn't leak sequential information out by URLs. in other words, a resource is accessed via `somesite.com/some-resource/ internally, you do a lookup like SomeMod

Re: Django Request

2022-11-22 Thread Alexander Neilson
The answers will be somewhat joking like the ones above because it is so heavily dependent on how you code your application in django and the system you run it on. A super basic function that returns a static value to a browser may do huge numbers but that is not actual work (a static response it

Re: Need to Replace django default I'd with UUID field

2022-11-22 Thread Sebastian Jung
You have also relations like foreignkey to this table? Then you must replace also all ids from foreignkey to new uuid Not simple this task Am Di., 22. Nov. 2022 um 19:55 Uhr schrieb Rajesh Kumar < rjcse131...@gmail.com>: > Hi everyone! > Hope everyone is doing well... > > Actually I have 100+

Re: Django Request

2022-11-22 Thread nana kwame
Please how many request (range of numbers of request) can Django process? On Tue, 22 Nov 2022 at 14:47, 'Kasper Laudrup' via Django users < django-users@googlegroups.com> wrote: > On 22/11/2022 12.20, nana kwame wrote: > > Please how many requests can Django process based on real test conducted.

Re: Need to Replace django default I'd with UUID field

2022-11-22 Thread Rajesh Kumar
Hi Jason, Thanks for a quick reply. I got your point, but I am worry about my existing data/records which is already associated with id , which is default one. On Wed, 23 Nov, 2022, 12:29 am Jason Turner, wrote: > I would just add another column that holds the UUID value instead of > changing t

Re: Need to Replace django default I'd with UUID field

2022-11-22 Thread Jason Turner
I would just add another column that holds the UUID value instead of changing the default ID. On Tue, Nov 22, 2022, 12:55 PM Rajesh Kumar wrote: > Hi everyone! > Hope everyone is doing well... > > Actually I have 100+ existing data in my database with default I'd field > of django > Now I need t

Need to Replace django default I'd with UUID field

2022-11-22 Thread Rajesh Kumar
Hi everyone! Hope everyone is doing well... Actually I have 100+ existing data in my database with default I'd field of django Now I need to replace that default I'd to UUID. How I can do this without loosing any records of my database. If anyone can give me suggestions that would be great. Th

Re: Django Request

2022-11-22 Thread Eric 247ERICPOINTCOM
Good evening, I would like a partner to work on a Django project. It is a social media site for, I have created most of the parts. I just need to implement a few things that I am struggling with. Anyone willing to work with me? *Kind Regards* *Eric Bawakuno | Computer Engineer | Data Analyst *

Re: Django Request

2022-11-22 Thread 'Kasper Laudrup' via Django users
On 22/11/2022 12.20, nana kwame wrote: Please how many requests can Django process based on real test conducted. All of them. 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 st

Django Request

2022-11-22 Thread nana kwame
Please how many requests can Django process based on real test conducted. -- 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.c