sabnzbdplus doesnt start seccond time :(

Get help with all aspects of SABnzbd
Forum rules
Help us help you:
  • Are you using the latest stable version of SABnzbd? Downloads page.
  • Tell us what system you run SABnzbd on.
  • Adhere to the forum rules.
  • Do you experience problems during downloading?
    Check your connection in Status and Interface settings window.
    Use Test Server in Config > Servers.
    We will probably ask you to do a test using only basic settings.
  • Do you experience problems during repair or unpacking?
    Enable +Debug logging in the Status and Interface settings window and share the relevant parts of the log here using [ code ] sections.
Post Reply
qracky
Newbie
Newbie
Posts: 1
Joined: September 5th, 2012, 5:41 am

sabnzbdplus doesnt start seccond time :(

Post by qracky »

Hi,

i am new at linux and installed on my debian this sabnzbdplus and everithyng worked fine ... but today my computer restartet and i cant start the deamon :(

Code: Select all

 Starting SABnzbd+ binary newsgrabber:Traceback (most recent call last):
  File "/usr/bin/sabnzbdplus", line 66, in <module>
    import sabnzbd
  File "/usr/share/sabnzbdplus/sabnzbd/__init__.py", line 85, in <module>
    import sabnzbd.api
  File "/usr/share/sabnzbdplus/sabnzbd/api.py", line 29, in <module>
    locale.setlocale(locale.LC_ALL, "")
  File "/usr/lib/python2.7/locale.py", line 539, in setlocale
    return _setlocale(category, locale)
locale.Error: unsupported locale setting
 failed!
i cant find anything about this problem. Maybe someone can help me?
User avatar
sander
Release Testers
Release Testers
Posts: 9429
Joined: January 22nd, 2008, 2:22 pm

Re: sabnzbdplus doesnt start seccond time :(

Post by sander »

'locale' is about your local settings: language, tokens, characters, etc. So ... between you first and second start, did you set something in the locale settings?

Or, let's just find out what's going on. Open a terminal and type:

Code: Select all

python


import locale
print locale.LC_ALL
locale.setlocale(locale.LC_ALL, "")
Here's my output with a plain English locale:

Code: Select all

sander@R540:~$ python
Python 2.7.3 (default, Aug  1 2012, 05:14:39) 
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import locale
>>> print locale.LC_ALL
6
>>> locale.setlocale(locale.LC_ALL, "")
'en_US.UTF-8'
>>>
Post Reply