Search Results

0
votes

What’s the best way to store simple user settings in Python?

Is there are particular reason you're not using the database for this? it seems the normal and natural thing to do - or store a pickle of the settings in the db keyed on user id or something. …
1
vote

How can I prevent database being written to again when the browser does a reload/back?

I'd not rely on POST warnings from the browser. Users just click OK to make messages go away. Anytime you'll have a request that needs to be one time only e.g 'make a payment', send a uniqu …
0
votes

Synchronisable CRM System

First off - if the CRM is going to be a product you sell, by all measn build it - if it is for internal use I'd say let soemone else endure the pain of solving these questions and just buy a CRM. …