Ik ben niet zo lang geleden overgestapt van linux naar windows 2003. Ik download via de nieuwsgroepen wat bestanden. Dit ging altijd goed tot een week geleden. Nu crashed gewoon regelmatig sabnzbd. Het verdwijnt dus uit de takenlijst.
Ik heb het pakket al overnieuw gedownload en alleen de instellingen over gekopieerd.
Foutmelding in de eventviewer:
Faulting application SABnzbd.exe, version 0.2.5.0, faulting module unknown, version 0.0.0.0, fault address 0x1e1a64b0.
Dit vind ik in de cherrypy log:
17/Aug/2007:13:55:05 HTTP INFO Page handler: "The path '/favicon.ico' was not found."
Traceback (most recent call last):
File "cherrypy\_cphttptools.pyo", line 105, in _run
File "cherrypy\_cphttptools.pyo", line 246, in main
File "cherrypy\_cphttptools.pyo", line 312, in mapPathToObject
NotFound: 404
For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
Dit zijn mijn instellingen:
Weet iemand wat er fout staat of ligt het gewoon aan Windows 2003 release 2 Enterprise? (is de versie die je bij een windows boek krijg)
Ik heb het pakket al overnieuw gedownload en alleen de instellingen over gekopieerd.
Foutmelding in de eventviewer:
Faulting application SABnzbd.exe, version 0.2.5.0, faulting module unknown, version 0.0.0.0, fault address 0x1e1a64b0.
Dit vind ik in de cherrypy log:
17/Aug/2007:13:55:05 HTTP INFO Page handler: "The path '/favicon.ico' was not found."
Traceback (most recent call last):
File "cherrypy\_cphttptools.pyo", line 105, in _run
File "cherrypy\_cphttptools.pyo", line 246, in main
File "cherrypy\_cphttptools.pyo", line 312, in mapPathToObject
NotFound: 404
For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp.
Dit zijn mijn instellingen:
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
| __version__ = 016
[misc]
## host we should listen on, leave "" for localhost
host = ""
## port we should listen on
port = 8080
## username for the web-interface
username = ""
## password for the web-interface
password = ""
## web file dir for (custom) Cheetah templates and the default.css file
web_dir = ./templates
## dir to put downloads to, won't be created automatically
download_dir = X:\Incoming
## dir to put completed downloads to, won't be created automatically
complete_dir = X:\Completed
## If specified, .nzbs fetched by postid (or added by the dirscanner) will
## be backed up to this readable/writeable dir
nzb_backup_dir = C:\Nzb\Backup
## dir to store cache and cookie files
cache_dir = ./cache
## location of your log directory, "" to disable logging
log_dir = ./logs
## dirscan directory
## SABnzbd will consume everything in that dir
## while trying to add it to the queue
dirscan_dir = C:\Nzb
## Scheduling options
## Syntax: minute hour day action
## 1st argument must be 0-59 (minute)
## 2nd argument must be 0-24 (hour)
## 3rd argument must be 1-7 (day) or *
## 4th argument must be resume or pause
##
## e.g schedlines = 0 7 * pause, 0 21 * resume
## to pause SABnzbd at 7:00 and resume operation at 21:00
schedlines = ,
## default options for dirscan added items
## 0 = None
## 1 = +Repair
## 2 = +Unpack
## 3 = +Delete
dirscan_opts = 3
## Enable/disable filejoining
## 0 = Disabled
## 1 = Enabled
enable_filejoin = 1
## Enable/disable unraring
## 0 = Disabled
## 1 = Enabled
enable_unrar = 1
## Enable/disable unzipping
## 0 = Disabled
## 1 = Enabled
enable_unzip = 1
## Enable/disable periodic queue saving
## 0 = Disabled
## 1 = Enabled
## Enable this on unstable systems
enable_save = 1
## Enable/disable
## 0 = Disabled
## 1 = Enabled
## Enable to cleanup par2 files
## (only if verifiying/repairing succeded)
enable_par_cleanup = 1
## should we failover on yenc crc errors
## 0 = no
## 1 = yes
fail_on_crc = 0
## should we download to group folders?
## (i.e /my/download/dir/alt.bin.whatever/somepost/)
## 0 = no
## 1 = yes
create_group_folders = 0
## bandwith limit
## 0 == ignore
## Slowdown factor, try values between 0.01 and 1.0.
bandwith_limit = 0.01
## Cleanup List
## List of file_extensions that should be deleted
## Example: ".nfo," or ".nfo, .sfv"
cleanup_list = ,
## Only get articles from topmost collection
## Enable for less memory usage
## Disable for more efficient downloading
## 0 = Disabled
## 1 = Enabled
top_only = 0
## Automatically sort by average age
## 0 = No
## 1 = Yes
auto_sort = 0
## Send group command before requesting articles
## 0 = No
## 1 = Yes
send_group = 0
## Article cache limit
## 0 = Disable Cache
## -1 = Unlimited cache
## >0 = Maximum memory (in bytes) to use for cache
cache_limit = 0
## Umask to use for directories/files
umask = 755
[logging]
## max size of SABnzbd.log (in bytes)
max_log_size = 5242880
## how many backups of SABnzbd.log to keep around
log_backups = 5
## enable cherrypy logging
## 0 = no
## 1 = yes
enable_cherrypy_logging = 1
## Fill in your servers here
## If your server doesn't need password auth set
## username and password to ''
## fillserver field must be 0 for non-fillservers (>0 otherwise)
[servers]
[[server 0]]
host = newsreader47.eweka.nl
port = 119
username = *******
password = ********
connections = 3
fillserver = 0
## www.newzbin.com support
[newzbin]
username = ""
password = ""
## Place downloads into newzbin.com category folders
## 0 = No
## 1 = Root category only
## 2 = Root category + subcategory
create_category_folders = 0 |
Weet iemand wat er fout staat of ligt het gewoon aan Windows 2003 release 2 Enterprise? (is de versie die je bij een windows boek krijg)
Steam id is passievrucht \\ Xbox Live GT: Meneer Passievrucht