First time here? Check out the FAQ!
0

Updating settings
 

Hello,

If I want to change the value of a field already stored in the database, I get an error for duplicate key. I think it tries to insert the value instead of updating it if it is already in the database.

What can I do ?

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
AlexP's avatar
23
AlexP
asked 13 years ago

Comments

see more comments

3 Answers

0

What are the settings we can update using settings.update?

Can we enable/disable local login with this? If so, what is the parameter to be used?

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
kishan's avatar
11
kishan
answered 7 years ago
link

Comments

see more comments
0

I update them from MySQL command prompt.

But I was talking about updating the settings from the settings panel.

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
AlexP's avatar
23
AlexP
answered 13 years ago
link

Comments

Next time try the python shell method, it may be just easier. "python manage.py shell" then type python commands. In the case with MySQL you just must have typed a wrong command.

Evgeny's avatar Evgeny (13 years ago)

I would definitely not recommend updating settings directly through sql, as well as most other things. If you find yourself frequently needing to update something - please let us know, we could maybe write a management command or something like that.

Evgeny's avatar Evgeny (13 years ago)
1

I don't really need a command to manage the settings, but when using the web Interface, I get this error :

IntegrityError at /settings/LOGIN_PROVIDERS/
(1062, "Duplicate entry '1-LOGIN_PROVIDERS-SIGNIN_IDENTI.CA_ENABLED' for key 2")

If I update an existing value.

AlexP's avatar AlexP (13 years ago)

That's useful to know. I've tested this on my development environment that runs on sqlite and the production server - on mysql. In both cases works. Have you customized your setup in any way or you are running askbot "out of the box"?

Evgeny's avatar Evgeny (13 years ago)

No, it's a standard installation (just updated to version 0.7.22 today). The only changes I made are on the template.

AlexP's avatar AlexP (13 years ago)
see more comments
0

It depends on how you are updating the settings - did you write code to do that or typed into django's python shell?

If you want to programmatically update settings, then the way to do it is:

from askbot.conf import settings
settings.update('SETTING_NAME', setting_value)

To enter a block of code:

  • enter empty line after your previous text
  • paste or type the code
  • select the code and press the button above
Preview: (hide)
Evgeny's avatar
13.2k
Evgeny
answered 13 years ago
link

Comments

see more comments