New sickrage repo?

Status
Not open for further replies.

sp3cialk

Cadet
Joined
Dec 7, 2015
Messages
6
Had a weird issue this evening. Was unable to add any new shows. I'd select to add and it was just come back to home screen. So on a whim I checked out the devlop branch and add dialogue came up. Went back to master and everything was fine. Just letting others know if they experience it as well.
 

tstorm

Explorer
Joined
Jan 5, 2015
Messages
69
Same happened to me, did your fix of switching to develop and switching back. Although on some pages of sickrage I would get some white page mako error with logs. I ended up downloading the zip from github and replaced the listed files in the mako error page. Restarted and working again.
 

sp3cialk

Cadet
Joined
Dec 7, 2015
Messages
6
Same happened to me, did your fix of switching to develop and switching back. Although on some pages of sickrage I would get some white page mako error with logs. I ended up downloading the zip from github and replaced the listed files in the mako error page. Restarted and working again.
I was just about to post. Everything had worked fine then noticed the same issue. I just did a backup, deleted plugin and installed from freenas then restored plugin. All good.
 

tstorm

Explorer
Joined
Jan 5, 2015
Messages
69
Yeah, I thought about that but wasn't sure if the problem would persist or the original update problem. Glad to hear that worked for you.
 

Scareh

Contributor
Joined
Jul 31, 2012
Messages
182
could you guys specify where the exact location on the config.ini file is? I've been clicking around for a bit in the pbi, but can't seem to find it.

nvm found it: sickrage_1/var/db/sickrage
 
Last edited:

Trapizomba

Dabbler
Joined
Mar 23, 2015
Messages
24
could you guys specify where the exact location on the config.ini file is? I've been clicking around for a bit in the pbi, but can't seem to find it.

nvm found it: sickrage_1/var/db/sickrage


Have you tried:

find / -name config.ini

inside the jail?

[]s!
 

CraftyClown

Patron
Joined
Apr 5, 2014
Messages
214
Hey guys, I'm really struggling here.

I updated the sickrage plugin from the GUI this morning, when I noticed there was an update available. However following the update Sickrage was unable to start again.

I then reinstalled the plugin and transferred my database over from the old install. This time the sickrage plugin was able to start, however trying to access the sickrage page gave me a database error

I also tried removing the line from the config.ini as suggested above, but once again the plugin could not be started.

Can anyone help me out here, as I'm really scratching my head?
 

Joshua Parker Ruehlig

Hall of Famer
Joined
Dec 5, 2011
Messages
5,949
Hey guys, I'm really struggling here.

I updated the sickrage plugin from the GUI this morning, when I noticed there was an update available. However following the update Sickrage was unable to start again.

I then reinstalled the plugin and transferred my database over from the old install. This time the sickrage plugin was able to start, however trying to access the sickrage page gave me a database error

I also tried removing the line from the config.ini as suggested above, but once again the plugin could not be started.

Can anyone help me out here, as I'm really scratching my head?
when you moved your database over did you make sure the ownership is the same?
 

CraftyClown

Patron
Joined
Apr 5, 2014
Messages
214
I used the following code, which has always worked fine in the past...

cp -Rp /mnt/Goliath/Jails/sickrage_1/var/db/sickrage/* /mnt/Goliath/Jails/sickrage_2/var/db/sickrage
 

Joshua Parker Ruehlig

Hall of Famer
Joined
Dec 5, 2011
Messages
5,949
I used the following code, which has always worked fine in the past...

cp -Rp /mnt/Goliath/Jails/sickrage_1/var/db/sickrage/* /mnt/Goliath/Jails/sickrage_2/var/db/sickrage
mind positing the database error? also the sickrage github repo takes bug reports.
 

junior

Dabbler
Joined
Jun 16, 2014
Messages
26
Hello,
I've updated too, did the trick and my sickrage was updated but I've got some errors when trying to view a show.

AttributeError: 'module' object has no attribute 'fromietf'

</table> <table style="width:180px; float: right; vertical-align: middle; height: 100%;"> <% info_flag = subtitles.code_from_code(show.lang) if show.lang else '' %> <tr><td class="showLegend">Info Language:</td><td><img src="${srRoot}/images/subtitles/flags/${info_flag}.png" width="16" height="11" alt="${show.lang}" title="${show.lang}" onError="this.onerror=null;this.src='${srRoot}/images/flags/unknown.png';"/></td></tr> % if sickbeard.USE_SUBTITLES: <tr><td class="showLegend">Subtitles: </td><td><img src="${srRoot}/images/${("no16.png", "yes16.png")[bool(show.subtitles)]}" alt="${("N", "Y")[bool(show.subtitles)]}" width="16" height="16" /></td></tr> % endif <tr><td class="showLegend">Season Folders: </td><td><img src="${srRoot}/images/${("no16.png", "yes16.png")[bool(not show.flatten_folders or sickbeard.NAMING_FORCE_FOLDERS)]}" alt=="${("N", "Y")[bool(not show.flatten_folders or sickbeard.NAMING_FORCE_FOLDERS)]}" width="16" height="16" /></td></tr>
/usr/pbi/sickrage-amd64/share/sickrage/SickRage/gui/slick/views/displayShow.mako, line 210:
<% info_flag = subtitles.code_from_code(show.lang) if show.lang else '' %>
/usr/pbi/sickrage-amd64/share/sickrage/SickRage/gui/slick/views/layouts/main.mako, line 276:
<div id="content">
/usr/pbi/sickrage-amd64/share/sickrage/SickRage/lib/mako/runtime.py, line 883:
callable_(context, *args, **kwargs)

That's on one installation, and on my own installation I've got:

AttributeError: 'module' object has no attribute 'pretty_filesize'
</tr> % endif <tr><td class="showLegend">Size:</td><td>${pretty_file_size(sickbeard.helpers.get_size(showLoc[0]))}</td></tr> </table> <table style="width:180px; float: right; vertical-align: middle; height: 100%;"> <% info_flag = subtitles.code_from_code(show.lang) if show.lang else '' %>
/usr/pbi/sickrage-amd64/share/sickrage/SickRage/gui/slick/views/displayShow.mako, line 205:
<tr><td class="showLegend">Size:</td><td>${pretty_file_size(sickbeard.helpers.get_size(showLoc[0]))}</td></tr>
/usr/pbi/sickrage-amd64/share/sickrage/SickRage/gui/slick/views/layouts/main.mako, line 276:
<div id="content">
/usr/pbi/sickrage-amd64/share/sickrage/SickRage/lib/mako/runtime.py, line 883:
callable_(context, *args, **kwargs)
 

CraftyClown

Patron
Joined
Apr 5, 2014
Messages
214
Ok, so this is what I get when I try to open Sickrage from the GUI

Error !
AttributeError: 'module' object has no attribute 'FILTER_ROW'
<meta data-var="sickbeard.COMING_EPS_LAYOUT" data-content="${sickbeard.COMING_EPS_LAYOUT}"> <meta data-var="sickbeard.COMING_EPS_SORT" data-content="${sickbeard.COMING_EPS_SORT}"> <meta data-var="sickbeard.DATE_PRESET" data-content="${sickbeard.DATE_PRESET}"> <meta data-var="sickbeard.FUZZY_DATING" data-content="${sickbeard.FUZZY_DATING}"> <meta data-var="sickbeard.HISTORY_LAYOUT" data-content="${sickbeard.HISTORY_LAYOUT}"> <meta data-var="sickbeard.HOME_LAYOUT" data-content="${sickbeard.HOME_LAYOUT}"> <meta data-var="sickbeard.POSTER_SORTBY" data-content="${sickbeard.POSTER_SORTBY}"> <meta data-var="sickbeard.POSTER_SORTDIR" data-content="${sickbeard.POSTER_SORTDIR}"> <meta data-var="sickbeard.ROOT_DIRS" data-content="${sickbeard.ROOT_DIRS}">
/usr/pbi/sickrage-amd64/share/sickrage/SickRage/gui/slick/views/layouts/main.mako, line 53:
<meta data-var="sickbeard.FUZZY_DATING" data-content="${sickbeard.FUZZY_DATING}">
/usr/pbi/sickrage-amd64/share/sickrage/SickRage/lib/mako/runtime.py, line 883:
callable_(context, *args, **kwargs)
 

Joshua Parker Ruehlig

Hall of Famer
Joined
Dec 5, 2011
Messages
5,949
for anyone with errors in sickrage maybe you could try replacing your SickRage source at /usr/pbi/sickrage-amd64/share/sickrage to see if maybe some files werent installed correctly.
 

CraftyClown

Patron
Joined
Apr 5, 2014
Messages
214


Ok, so I repeated those steps

  1. rm -r /usr/pbi/sickrage-amd64/share/sickrage/SickRage
  2. fetch --no-verify-peer "https://github.com/SickRage/SickRage/archive/master.tar.gz"
  3. tar xzf master.tar.gz
  4. mv SickRage-master /usr/pbi/sickrage-amd64/share/sickrage/SickRage
  5. chown -R media:media /usr/pbi/sickrage-amd64/share/sickrage/SickRage
  6. rm master.tar.gz
but unfortunately I'm still getting the same white attribute error screen :(
 

Joshua Parker Ruehlig

Hall of Famer
Joined
Dec 5, 2011
Messages
5,949
Ok, so I repeated those steps

  1. rm -r /usr/pbi/sickrage-amd64/share/sickrage/SickRage
  2. fetch --no-verify-peer "https://github.com/SickRage/SickRage/archive/master.tar.gz"
  3. tar xzf master.tar.gz
  4. mv SickRage-master /usr/pbi/sickrage-amd64/share/sickrage/SickRage
  5. chown -R media:media /usr/pbi/sickrage-amd64/share/sickrage/SickRage
  6. rm master.tar.gz
but unfortunately I'm still getting the same white attribute error screen :(
can you restart sickrage
 
Status
Not open for further replies.
Top