Re: How to create an individual instagram message into threads?

2023-08-28 Thread 'Steven Mapes' via Django users
I've not used that app but creating email of messaging chains is quite easy. How I normally do it is to generate a unique identifier by using a uuid4 plus some custom values when a new thread/conversation is created and then this is passed and maintained during replies. There's probably

Re: Slow Performance of Django Web App

2023-06-12 Thread 'Steven Mapes' via Django users
To start with I'd look at upgrading the project to the latest version of Django and Python as Python 3.10 and 3.11 have some performance improvements and you'll need to be on a Django 4 version to support them. That aside it sounds like you've got good caching architecture setup since it's

Re: how to convert to Django 3 or 4

2023-06-12 Thread 'Steven Mapes' via Django users
:29:47 UTC+1 Rogerio Carrasqueira wrote: > I'm using python 2.7, wich your suggestion? > > Thanks > > > Rogério Carrasqueira > > > > > > Em sex., 9 de jun. de 2023 às 03:37, 'Steven Mapes' via Django users < > django...@googlegroups.com> escreveu: >

Re: how to convert to Django 3 or 4

2023-06-09 Thread 'Steven Mapes' via Django users
...@gmail.com> wrote: > So just to undersand, I cannot move directly from 1.4 to 4 I have to do it > in steps, right? > > Thanks > Rogério Carrasqueira > > > > > > Em qui., 8 de jun. de 2023 às 17:01, 'Steven Mapes' via Django users < > django-users@googlegrou

Re: how to convert to Django 3 or 4

2023-06-08 Thread 'Steven Mapes' via Django users
I've used it to go from Django 3 to 4 and to move a project from 1.11 to 2.2. It doesn't do everything for you but it's a great start. I've personally moved from 1.8 through to 4.2.2 but that was during their development lifecycle. Moving up to 1.7 and then 1.7 to 1.8 and 1.8 to 1.11 and 1.11 to

Re: how to convert to Django 3 or 4

2023-06-07 Thread 'Steven Mapes' via Django users
I'd suggest looking into using Adam Johnson's Django-Upgrade told -https://github.com/adamchainz/django-upgrade it will help you move between versions On Tuesday, 6 June 2023 at 15:24:36 UTC+1 Paul Haguet wrote: > There is a lot of function who can change. > >

Re: Django Froala Editor

2023-02-03 Thread 'Steven Mapes' via Django users
Sorry hit send too soon. An alternative is to update your settings.py entry for FROALA_STORAGE_BACKEND to point to a different backend as per their docs https://github.com/froala/django-froala-editor#other-settings On Friday, 3 February 2023 at 14:30:12 UTC Steven Mapes wrote: > Easiest way

Re: Django Froala Editor

2023-02-03 Thread 'Steven Mapes' via Django users
Easiest way will be to overload their default upload view. If you look in the urls.py for the package it has two entries *path('image_upload/', views.image_upload, name='froala_editor_image_upload'),path('file_upload/', views.file_upload, name='froala_editor_file_upload'),* Take a look at

Re: Django microservice authentication problem.

2023-01-28 Thread 'Steven Mapes' via Django users
Are you trying to authenticate via Django Rest FrameWork API or via the standard Django authentication system? It shouldn't really matter which it is as both can be scaled horizontally and you'll have no issue with authenticating so in order for us to help we'd need to understand what you are

Re: Card-Payment Integration.

2023-01-04 Thread 'Steven Mapes' via Django users
There's several that you'll find integration projects for on github, personally I wrote my own lib to integrate Stripe and Paypal and much prefer stripe over paypal. it's a cleaner integration, faster flow for the user, lower fees, allows refunds for payments of any age whilst the card is

Re: Looking for available support to start a School Management Application

2022-11-07 Thread 'Steven Mapes' via Django users
I'd be very reluctant to use existing OS projects for such a project unless they have proven security and a strong policy in place as you're talking about handling sensitive data. You should also double check with the school what license requirements they have as many will not allow 3rd party

Re: Using django 4.1 code in django 3.2

2022-11-03 Thread 'Steven Mapes' via Django users
It'll depend on whether your code is 3.2 compatible or not so you'd need to test it and check dependencies first On Thursday, 3 November 2022 at 09:28:40 UTC Kasper Laudrup wrote: > On 03/11/2022 10.18, Lakshyaraj Dash wrote: > > Is there any problem if I deploy my django app written with

Re: Looking for a Django firm

2022-09-15 Thread 'Steven Mapes' via Django users
I would be interesting in learning more Mike as would a one of my other business partners, both run companies UK based. https://mapestech.co.uk and https://www.springbourne-tech.com/ On Tuesday, 13 September 2022 at 01:02:09 UTC+1 Mike Dewhirst wrote: > Hi all - I'm looking for a Django outfit

Re: upgrading from 1.11 and ran into builtin permission clash

2022-07-04 Thread 'Steven Mapes' via Django users
What I'd advise is to upgrade to point just before it breaks, then update the permission to use a different name, then upgraded to 2.2 avoiding the name clash. Once upgraded then edit the permission to grant the permission to the users who need that permission based on your now renamed custom

Re: Looking for experienced Django backend engineer

2022-07-04 Thread 'Steven Mapes' via Django users
I'm always looking for new clients, over 2 decades development experience, server admin experience, DBA etc See https://www.mapestech.co.uk/ for more On Monday, 4 July 2022 at 04:11:26 UTC+1 anderso...@gmail.com wrote: > Just forward to my teammate. > Good luck > > On Sun, Jul 3, 2022 at 2:04

Re: django html error

2022-04-05 Thread 'Steven Mapes' via Django users
If you check the output of runserver can you see a HTTP200 response? If so then the best starting place is to look into your projects base .urls.py and match up the URL you are requesting to the view being used. Once you have that what is happening next will depend on whether you are using

Re: Django 1.5 app had subclasses without tables without proxy and now 1.6 won't sync with proxy

2022-04-05 Thread 'Steven Mapes' via Django users
Migrations came in in 1.7 the docs for 1.8 show the following *Prior to version 1.7, Django only supported adding new models to the database; it was not possible to alter or remove existing models via the syncdb command (the predecessor to migrate