Found image via Chrome's "Inspect"
https://imgur.com/a/1lsg5i9
The logging:
Code: Select all
complete_dir directory: /Users/Downloads/Complete error accessing
Cannot create directory /Users/Downloads/Complete
Failed making (/Users/Downloads/Complete)
Traceback (most recent call last):
File "sabnzbd/filesystem.py", line 719, in create all dirs
FileExistsError: [Errno 17] File exists: 'User/Plex'
Is this the real logging? Or did you leave out stuff, like file or directory names.
If it's the real logging
my guess would be: problem with user rights on filesystem. And you mentioned "NAS", so that is a flag too.
I'm also surprsed that those base directories do not exist, and that SAB tries to write to that base. Do oyou have series/rss things that do funny stuff?
More in depth:
Code: Select all
complete_dir directory: /Users/Downloads/Complete error accessing
Cannot create directory /Users/Downloads/Complete
Failed making (/Users/Downloads/Complete)
That "Cannot create directory" is from this code:
Code: Select all
if not os.path.exists(my_dir):
if not create_all_dirs(my_dir, apply_permissions):
msg = T("Cannot create directory %s") % clip_path(my_dir)
logging.error(msg)
return False, my_dir, msg
So: my_dir /Users/Downloads/Complete does not exist, thus SAB tries to create it, which results in an error. First guess would be: a filesystem rights problem. Or parent path does not exist at all.