Many Incompletes - WindowsError: [Error 5] Access is denied
Posted: September 23rd, 2011, 6:58 am
I just recently upgraded to 0.6, and started having an issue where on multiple NZB files from nzbmatrix, I get lots (60%) of incomplete files, the files aren't just corrupt, they are smaller than they should be by a few megs. I take this same NZB file over to newsbin with the same exact server settings, and all the files are fine. The NZBs are both about 45 gigs of 200 meg files. Smaller nzb files also from nzbmatrix seem to be fine.
The log is riddled with this error message when it trys to combine the files:
Here's the source code it is refering to:
I tried a shorter nzb name, I did a scan disk (quick, not a surface scan yet). I am on windows xp.
Any ideas on what to try next?
Thanks,
flips
The log is riddled with this error message when it trys to combine the files:
Code: Select all
2011-09-22 21:21:31,750::INFO::[__init__:814] Traceback:
Traceback (most recent call last):
File "sabnzbd\__init__.pyo", line 811, in load_data
WindowsError: [Error 5] Access is denied: 'd:\\incoming-news\\Downloads\\incomplete\\nzbname\\__ADMIN__\\SABnzbd_article_512qyx'
Code: Select all
def load_data(_id, path, remove=True, do_pickle=True, silent=False):
""" Read data from disk file """
path = os.path.join(path, _id)
if not os.path.exists(path):
logging.info("%s missing", path)
return None
if not silent:
logging.debug("Loading data for %s from %s", _id, path)
try:
_f = open(path, 'rb')
if do_pickle:
data = cPickle.load(_f)
else:
data = _f.read()
_f.close()
if remove:
os.remove(path)
except:
logging.error(Ta('Loading %s failed'), path)
logging.info("Traceback: ", exc_info = True)
return None
return data
Any ideas on what to try next?
Thanks,
flips