Skip to content
View in the app

A better way to browse. Learn more.

Unraid

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

SABnzbd+ SickBeard CouchPotato Plugin/Installer for v5b11+

Featured Replies

I believe...you can update sick from the sickbeard webgui.  Couch has not had an update in some time, dev is focusing on V2.  For Sab, I think you need to stop it and from the plugin page, there might be an option to install update.

  • Replies 1.2k
  • Views 252.7k
  • Created
  • Last Reply

For sab, if there is an update, a message will appear at the bottom of the webgui settings page

For sickbeard, you can use the in-app updater. If it doesn't show an update is needed, click on the wrench on the top left and go to force version check, then click the link on the page it brings you to. If there is an update it will say so at the top of the page. Choose update now and it will update.

 

Couchpotato's in-app updater is broken. You can disable couchpotato, delete the install directory and then enable it to update, but as was said before, it has not been updated in quite a while, unless your server has been on for 2-3 months straight, you are at the latest version. I've started looking into V2, but some of the Shell flags have changed, most important being the data directory flag. Its possible to install couchpotato, set the data directory, and restart. I'm just trying to think of a better way to do it and allow it to be set from the webgui settings page so users don't potentially overlook setting the directory and then lose all their information on a reboot.

 

That being said, I do have a working plug-in that installs V2, with updated flags, just that last issue to work around

Perfect, thank you very much, that worked like a treat. I wasnt sure if i was ok to use the update tool via the webui for the specific application. But looks like i was wrong and it worked perfectly. Well for Sick anyway, as that was the only one that needed updating.

 

 

 

Many Thank

I don't think I saw any response to this thread.  Have these issues been corrected yet?

 

 

 

First, many thanks to those who've created these plugins!

 

I've been playing with them a bit, and finding some problems and partial answers...

 

I've gotten lots of hangs - they might have come back if I'd waited long enough, but I didn't test that.

 

I've caused hangs by:

- giving an invalid data directory  (e.g., /disk1/apps/sickbeard instead of /mnt/disk1/apps/sickbeard)

- giving an invalid port  (e.g., 8080 which was already in use by unMenu)

 

These seem to be caused by the rc.xyz script hanging, waiting for the app to start or stop.

 

The plugin scripts use the process ID in /var/run/ to determine if the app is running. (e.g., /var/run/sickbeard/sickbeard.pid)  This is unreliable for various reasons:

- I've seen 'pid' in it instead of the expected process ID - I'm not sure of when that happened or what caused it.

- SABnzbd sometimes creates sabnzbd-9090.pid instead of the expected sabnzbd-8081.pid.  Presumably that's because I enabled HTTPS which uses 9090.

 

I think it'll be better to parse the ps -A -f results.  I'll take a stab at that to see what I can come up with.

 

In the meantime, use a command terminal, telnet into unRAID, and use ps -A to see the process ID for the rc.xyz script, and kill it.  That almost always brings things back immediately.

 

 

The scripts have lines like:

if [ $RUNAS != $1]; then

This is line 78 in /etc/rc.d/rc.sickbeard; I forget what it was in SABnzbd. 

 

This causes a  "missing ']'" error message.

 

They need a space between the $1 and the ]

 

The rc.xyz scripts go into a wait loop, waiting for the app to start or stop.  This is from rc.sabnzbd:

sabnzbd_stop() {
  # no-op if not running
  if [ ! -r /var/run/sabnzbd/sabnzbd-$PORT.pid ]; then
    return
  fi

  echo -n "Stopping sabnzbd..."
  sleep 0.5
  echo

  if [ -d $DATADIR ] && [ -f $DATADIR/sabnzbd.ini ]
        then
                APIKEY=`grep -w api_key $DATADIR/sabnzbd.ini | cut -d " " -f3`
                IP=$(ifconfig  | grep 'inet addr:'| grep -v '127.0.0.1' | cut -d: -f2 | grep -v '^5' | awk '{ print $1}')
                RES=$(wget -qO - "http://$IP:$PORT/sabnzbd/api?mode=shutdown&apikey=$APIKEY")
                                if [[ $RES != "ok" ]]
                                then
                                        echo "wrong API KEY found, using kill"
                                        kill $(cat /var/run/sabnzbd/sabnzbd-$PORT.pid)
                                fi
        else
                kill $(cat /var/run/sabnzbd/sabnzbd-$PORT.pid)
  fi

  echo

  while [ -e /var/run/sabnzbd/sabnzbd-$PORT.pid  ]; do
        sleep 1
  done

}

 

The sleep loop never exits if there was any problem.  As noted above, I saw sabnzbd-9090.pid instead of sabnzbd-8081.pid; in this case, the file is never deleted so the sleep loop never exits.

 

If it goes through either path where it uses kill, the file may not be erased even when it's the correct pid; again, the sleep loop never exits.

 

There should be a failsafe in the loop - exit after 10 seconds or so, regardless of the xyz.pid file status.

 

I'm still very much new to all this, but do want to learn.  If someone can point me to the file that needs to be changed, at least to fix the brackets and spaces issue, I'll happily poke around and see if I can implement a fix, then share.

 

Maybe that will help prevent the conditions which lead to the endless loop.

I didn't see that post at all.  The file is the plg file you download, it creates the rc files as well as the webgui pages. Open the plg up in your favorite text editor and you'll see what I mean.

 

I'll check out everything else from the post as well.

 

I am having a hard time getting sabnzbd to work.  I really don't even know enough about linux, unraid, or anything of that sort to say where I am stuck.  I don't have a cache (but I do have an extra ssd lying around that I could use -- how do i set that up?). 

 

I know that sab isn't working because it will say something like.. [: missing '[' and get stuck.  I've read through and tried to use the mkdir /mnt/usenet/.apps/sabnzbd and chown command, but when it always says cannot create directory '/mnt/usenet/.apps/sabnzbd' no such file or directory.

 

 

Can anyone help?

I made some modifications in SickBeard script and added version control which inform user of current installed version but also if there is the newest version available. I also added newest dependencies, such as Python 2.6.6 etc.

 

In the attachment you will find also SABnzdb plugin which also working with beta versions and CouchPotato V2 plugin. All this three plugins are based on Python 2.6.6.

sickbeard-0.5a-ww.zip

sabnzbd-0.6a-ww.zip

couchpotato_v2-0.2a-ww.zip

I can make the log destination in the actual program web guis yeh? What should I set the file to?

 

Is there a better place to mount the data directories? As long as i dont have to reset the configurations every time I reset Im not bothered where they go.

 

Would it be ok to set data and logs to the flash?

 

How do you change the log location for couchpotato, I have a disk which never spins down as it's always writing to the logs file ?

 

I made some modifications in SickBeard script and added version control which inform user of current installed version but also if there is the newest version available. I also added newest dependencies, such as Python 2.6.6 etc.

 

In the attachment you will find also SABnzdb plugin which also working with beta versions and CouchPotato V2 plugin. All this three plugins are based on Python 2.6.6.

 

Just what I was looking for. Was starting to do this myself so you saved me a bunch of time!

 

Thanks.

I miss my Couchpotato!

 

Need help, pleas...

 

Have deleted all of Couchpotato.

Still it won't start.

 

Gets this in the log.

10:13:04 ERROR [                  ENGINE] Error in 'start' listener <bound method CronJobs.start of <app.lib.cron.CronJobs object at 0x8d3430c>>

Traceback (most recent call last):

  File "/usr/local/couchpotato/cherrypy/process/wspbus.py", line 197, in publish

  File "/usr/local/couchpotato/app/lib/cron/__init__.py", line 43, in start

  File "/usr/local/couchpotato/app/lib/provider/movie/search.py", line 25, in __init__

  File "/usr/local/couchpotato/app/lib/provider/movie/sources/imdbWrapper.py", line 15, in __init__

  File "/usr/local/couchpotato/library/imdb/__init__.py", line 189, in IMDb

ImportError: No module named mobile

 

10:13:04 INFO  [                  ENGINE] Started monitor thread '_TimeoutMonitor'.

10:13:04 INFO  [                  ENGINE] PID 8378 written to '/var/run/couchpotato/couchpotato.pid'.

10:13:04 ERROR [                  ENGINE] Error in 'start' listener <bound method Server.start of <cherrypy._cpserver.Server object at 0x82e2f6c>>

Traceback (most recent call last):

  File "/usr/local/couchpotato/cherrypy/process/wspbus.py", line 197, in publish

  File "/usr/local/couchpotato/cherrypy/_cpserver.py", line 150, in start

  File "/usr/local/couchpotato/cherrypy/_cpserver.py", line 140, in httpserver_from_self

ImportError: cannot import name _cpwsgi_server

 

10:13:04 ERROR [                  ENGINE] Shutting down due to error in start listener:

Traceback (most recent call last):

  File "/usr/local/couchpotato/cherrypy/process/wspbus.py", line 235, in start

  File "/usr/local/couchpotato/cherrypy/process/wspbus.py", line 215, in publish

ChannelFailures: ImportError('No module named mobile',)

ImportError('cannot import name _cpwsgi_server',)

 

10:13:04 INFO  [                  ENGINE] Bus STOPPING

10:13:04 INFO  [                  ENGINE] HTTP Server None already shut down

10:13:04 INFO  [                  ENGINE] Stopped thread '_TimeoutMonitor'.

10:13:04 INFO  [            app.lib.cron] Stopping Cronjobs.

10:13:04 INFO  [                  ENGINE] Bus STOPPED

10:13:04 INFO  [                  ENGINE] Bus EXITING

10:13:04 INFO  [                  ENGINE] PID file removed: '/var/run/couchpotato/couchpotato.pid'.

10:13:04 INFO  [                  ENGINE] Bus EXITED

You said you deleted all of CouchPotato. This is the install directory, data directory, rc script, and config files that are saved on the flash drive, correct?

Defaults would be:

/usr/local/couchpotato (install directory and data directory)

/etc/rc.d/rc.couchpotato

/boot/config/plugins/couchpotato/

 

Do you have GIT installed on your server? If so CouchPotato is probably attempting to update and it fails, which is probably what has happened here. It will auto-update, the only way to stop it is to not have GIT installed.

 

If GIT is not installed, not quite sure what is causing the problem, but it is specific parts of Couchpotato that are missing/not being loaded, nothing to do with the plug-in itself.

 

Make sure any files pertaining to couchpotato are deleted, specifically the ones that reside on a disk, whether its the flash drive, cache drive on an array drive, change the extension of the plugin to .plg.bak and restart the server, this will make sure any files that reside on RAM are gone, and then rename the plugin back to .plg and install manually

installplg /boot/config/plugins/couchpotato-0.5-i468-bw.plg

I made some modifications in SickBeard script and added version control which inform user of current installed version but also if there is the newest version available. I also added newest dependencies, such as Python 2.6.6 etc.

 

In the attachment you will find also SABnzdb plugin which also working with beta versions and CouchPotato V2 plugin. All this three plugins are based on Python 2.6.6.

 

Great, thanks for this. Is it possible to install over existing installation, upgrade I guess?

n\m

When I reboot, my sickbeard and sab install indicates there was never a setup. How do you get around this when your server reboots your configuration is read.

 

 

When I reboot, my sickbeard and sab install indicates there was never a setup. How do you get around this when your server reboots your configuration is read.

 

Do you have the data directory option checked?

It needs to be set to something other than /usr/local/sabnzbd or /usr/local/sickbeard

/usr/local is in RAM and settings will be lost on every reboot

Thanks. That was it.

 

I am new to unraid and all of these plugins.  What I want to do is to be able to access these apps remotley with an app on my phone.  So far the only way I have seen how to do this is port forwarding these apps.  How secure are these apps if I do that? Would I be putting my server at a large risk of being hacked?

I am new to unraid and all of these plugins.  What I want to do is to be able to access these apps remotley with an app on my phone.  So far the only way I have seen how to do this is port forwarding these apps.  How secure are these apps if I do that? Would I be putting my server at a large risk of being hacked?

 

Inside your network it's just the ip address and port, SAB has a mobile skin as well.  Outside your network you either need to port forward (bad idea) or setup some sort of VPN solution. 

I made some modifications in SickBeard script and added version control which inform user of current installed version but also if there is the newest version available. I also added newest dependencies, such as Python 2.6.6 etc.

 

In the attachment you will find also SABnzdb plugin which also working with beta versions and CouchPotato V2 plugin. All this three plugins are based on Python 2.6.6.

 

Thanks WW

I have still been unable to figure out my problem with setting up SABnzbd.  I have followed the tutorials online, but it appears as if it is not installing correctly.  Can someone help? I can give information, but I do not know what information is needed (or how to get it, really).

 

 

One of the symptoms that I think is wrong.. is when I click on sabnzbd in the unraid settings and click on apply, it seems to get stuck on this screen (screen capture below).  It says in the status bar something about "transferring data from tower".. and it just continually shows the connecting sign on the tab.  The only way I've found to get out of this is to do a hard shutdown (as all the buttons in the lime tech window are greyed out including main, shares, etc).

 

Also when I do this, the prompt from the unraid machine says OSError: [Errno 13] Permission denied: '/mnt/usenet'.

sab.JPG.7d9163f1e51b1857dde35b8ce775262f.JPG

Also when I do this, the prompt from the unraid machine says OSError: [Errno 13] Permission denied: '/mnt/usenet'.

 

Are you using the Mount Any Drive Plugin or Snap Plugin? If not, then you should change the data directory from /mnt/usenet/.apps/sabnzbd or install Benni-chan's Mount Any Drive Plugin.

 

Benni-chan's examples are using his Mount Any Drive Plugin for the data directory location: http://lime-technology.com/forum/index.php?topic=14742.msg138819#msg138819

 

You may want to read this entire thread from the beginning (even if you already did, it may help you catch something you missed).

For some reason my install of Sabnzbd has stopped working. It just sits there for ever starting. If I hit refresh on the page after leaving it for 10 minutes or so, is says yes to being enabled, but I can't connect to it and it doesn't say Sabnzbd is running.

 

This is the only entry in the log

 

May 23 21:24:16 Tower sudo: root : TTY=console ; PWD=/ ; USER=nobody ; COMMAND=/usr/bin/python /mnt/user/Sickbeard/install/SABnzbd.py -d -s 0.0.0.0:8888 --config-file /mnt/user/Sickbeard --pid /var/run/sabnzbd > /dev/null 2>&1

That doesn't work at all. Get errors during install.

 

on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /div><div class='line' id='LC116'>      echo</div><div class='line' id='LC117'>  in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                     ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): div class='line' id='LC116'>    echo</div><div class='line' id='LC117'>   in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                   ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): e;</div><div class='line' id='LC453'>   }</div><div class='line' id='LC454'>  in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                  ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): v><div class='line' id='LC453'> }</div><div class='line' id='LC454'>   in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():  class='line' id='LC453'>       }</div><div class='line' id='LC454'>    in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                      ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): line' id='LC454'>   else</div><div class='line' id='LC455'>  in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): id='LC454'>   else</div><div class='line' id='LC455'>   in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): 454'>   else</div><div class='line' id='LC455'>    in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): form.arg1.value == "enable");</div><div class='line' id='LC463'>  in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): rg1.value == "enable");</div><div class='line' id='LC463'>   in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): lue == "enable");</div><div class='line' id='LC463'>    in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): 529'>if [ ! -e /var/run/sabnzbd ]; then</div><div class='line' id='LC530'>  in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): f [ ! -e /var/run/sabnzbd ]; then</div><div class='line' id='LC530'>   in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): 530'>  mkdir /var/run/sabnzbd</div><div class='line' id='LC531'>  in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): nbsp; mkdir /var/run/sabnzbd</div><div class='line' id='LC531'>   in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): bsp;chown $RUNAS:users /var/run/sabnzbd</div><div class='line' id='LC532'>  in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): own $RUNAS:users /var/run/sabnzbd</div><div class='line' id='LC532'>   in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:879: parser error : Opening and ending tag mismatch: img line 878 and div in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): </div> in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():       ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:886: parser error : Opening and ending tag mismatch: ul line 118 and div in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():     </div><!-- end of wrapper - hack for sticky footer --> in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():           ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:895: parser error : StartTag: invalid element name in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():        <![if !IE]><h4 id="blacktocat">GitHub Links</h4><![endif]> in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():         ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:895: parser error : StartTag: invalid element name in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():        <![if !IE]><h4 id="blacktocat">GitHub Links</h4><![endif]> in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                         ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:939: parser error : StartTag: invalid element name in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():     <![if !IE]><div id="legal"><![endif]> in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():      ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:939: parser error : StartTag: invalid element name in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():     <![if !IE]><div id="legal"><![endif]> in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                 ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:946: parser error : Entity 'copy' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():       <p>© 2012 <span title="0.07050s from fe5.rs.github.com">GitHub</span> in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:955: parser error : Entity 'reg' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():         Computing</a> of Rackspace Hosting<span>®</span> in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                      ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:1316: parser error : Opening and ending tag mismatch: div line 48 and body in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():   </body> in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():          ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:1317: parser error : Opening and ending tag mismatch: body line 47 and html in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): </html> in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():        ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:1319: parser error : Premature end of data in tag meta line 8 in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():  in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:1319: parser error : Premature end of data in tag meta line 7 in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():  in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:1319: parser error : Premature end of data in tag head line 6 in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():  in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:1319: parser error : Premature end of data in tag html line 5 in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():  in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): ^ in /usr/local/sbin/installplg on line 13
xml parse error

That doesn't work at all. Get errors during install.

 

on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /div><div class='line' id='LC116'>      echo</div><div class='line' id='LC117'>  in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                     ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): div class='line' id='LC116'>    echo</div><div class='line' id='LC117'>   in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                   ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): e;</div><div class='line' id='LC453'>   }</div><div class='line' id='LC454'>  in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                  ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): v><div class='line' id='LC453'> }</div><div class='line' id='LC454'>   in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():  class='line' id='LC453'>       }</div><div class='line' id='LC454'>    in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                      ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): line' id='LC454'>   else</div><div class='line' id='LC455'>  in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): id='LC454'>   else</div><div class='line' id='LC455'>   in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): 454'>   else</div><div class='line' id='LC455'>    in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): form.arg1.value == "enable");</div><div class='line' id='LC463'>  in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): rg1.value == "enable");</div><div class='line' id='LC463'>   in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): lue == "enable");</div><div class='line' id='LC463'>    in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): 529'>if [ ! -e /var/run/sabnzbd ]; then</div><div class='line' id='LC530'>  in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): f [ ! -e /var/run/sabnzbd ]; then</div><div class='line' id='LC530'>   in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): 530'>  mkdir /var/run/sabnzbd</div><div class='line' id='LC531'>  in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): nbsp; mkdir /var/run/sabnzbd</div><div class='line' id='LC531'>   in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): bsp;chown $RUNAS:users /var/run/sabnzbd</div><div class='line' id='LC532'>  in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:864: parser error : Entity 'nbsp' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): own $RUNAS:users /var/run/sabnzbd</div><div class='line' id='LC532'>   in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                                                ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:879: parser error : Opening and ending tag mismatch: img line 878 and div in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): </div> in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():       ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:886: parser error : Opening and ending tag mismatch: ul line 118 and div in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():     </div><!-- end of wrapper - hack for sticky footer --> in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():           ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:895: parser error : StartTag: invalid element name in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():        <![if !IE]><h4 id="blacktocat">GitHub Links</h4><![endif]> in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():         ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:895: parser error : StartTag: invalid element name in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():        <![if !IE]><h4 id="blacktocat">GitHub Links</h4><![endif]> in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                         ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:939: parser error : StartTag: invalid element name in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():     <![if !IE]><div id="legal"><![endif]> in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():      ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:939: parser error : StartTag: invalid element name in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():     <![if !IE]><div id="legal"><![endif]> in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                 ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:946: parser error : Entity 'copy' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():       <p>© 2012 <span title="0.07050s from fe5.rs.github.com">GitHub</span> in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:955: parser error : Entity 'reg' not defined in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():         Computing</a> of Rackspace Hosting<span>®</span> in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():                                                      ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:1316: parser error : Opening and ending tag mismatch: div line 48 and body in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():   </body> in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():          ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:1317: parser error : Opening and ending tag mismatch: body line 47 and html in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): </html> in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():        ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:1319: parser error : Premature end of data in tag meta line 8 in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():  in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:1319: parser error : Premature end of data in tag meta line 7 in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():  in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:1319: parser error : Premature end of data in tag head line 6 in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():  in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): ^ in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): /boot/config/plugins/sabnzbd-ww.plg:1319: parser error : Premature end of data in tag html line 5 in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file():  in /usr/local/sbin/installplg on line 13

Warning: simplexml_load_file(): ^ in /usr/local/sbin/installplg on line 13
xml parse error

 

This is weird problem with xml parser. Did you modify enything in this plugin? - maybe you should download the newest version of this plugin and try to install it again :)

Archived

This topic is now archived and is closed to further replies.

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.