SageTV Community  

Go Back   SageTV Community > SageTV Development and Customizations > SageTV v7 Customizations
Forum Rules FAQs Community Downloads Today's Posts Search

Notices

SageTV v7 Customizations This forums is for discussing and sharing user-created modifications for the SageTV version 7 application created by using the SageTV Studio or through the use of external plugins. Use this forum to discuss plugins for SageTV version 7 and newer.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 07-17-2015, 12:24 PM
craigap craigap is offline
Sage Aficionado
 
Join Date: Jan 2006
Location: Monroe, WI
Posts: 348
Trying to install a few plugins but some of the dependencies are failing to download

Complementary Metadata Tools: sageutls fails, says invalid MD5 Sum
Phoenix core services and Phoenix fanart for SageTV: phoenix api fails, says the same Invalid MD5 Sum.
Jetty Web Server also fails.

Any incite into this and how to correct it?
Reply With Quote
  #2  
Old 07-17-2015, 12:35 PM
Skirge01's Avatar
Skirge01 Skirge01 is offline
SageTVaholic
 
Join Date: Jun 2007
Location: New Jersey
Posts: 2,599
Sounds like the same issue being discussed over here.
__________________
Server: XP, SuperMicro X9SAE-V, i7 3770T, Thermalright Archon SB-E, 32GB Corsair DDR3, 2 x IBM M1015, Corsair HX1000W PSU, CoolerMaster CM Storm Stryker case
Storage: 2 x Addonics 5-in-3 3.5" bays, 1 x Addonics 4-in-1 2.5" bay, 24TB
Client: Windows 7 64-bit, Foxconn G9657MA-8EKRS2H, Core2Duo E6600, Zalman CNPS7500, 2GB Corsair, 320GB, HIS ATI 4650, Antec Fusion
Tuners: 2 x HD-PVR (HTTP tuning), 2 x HDHR, USB-UIRT
Software: SageTV 7
Reply With Quote
  #3  
Old 07-17-2015, 01:05 PM
nyplayer nyplayer is offline
SageTVaholic
 
Join Date: Sep 2005
Posts: 4,997
Quote:
Originally Posted by Skirge01 View Post
Sounds like the same issue being discussed over here.
Yeah I picked a bad time to cleanup my test system and do a fresh Install.
Reply With Quote
  #4  
Old 07-17-2015, 08:19 PM
Fuzzy's Avatar
Fuzzy Fuzzy is offline
SageTVaholic
 
Join Date: Sep 2005
Location: Jurupa Valley, CA
Posts: 9,957
This has happened before. I'm thinking that going forward, the plugin xml spec should allow multiple file locations, and perhaps set up an auto-mirroring system for the files, so if the primary location (as hosted by the individual developer) is down, the second location will be used (the mirror). In the past, we had talked about the need to mirror every file in the repository anyway, but that was to allow a manual access by downloading a whole new XML file in case sage completely disappeared from the web. I think my idea might provide a lot more future sustainability, it just has to make it into the plugin system in sage, so it can be parsed out properly, and cascade to the next on a checksum failure.
__________________
Buy Fuzzy a beer! (Fuzzy likes beer)

unRAID Server: i7-6700, 32GB RAM, Dual 128GB SSD cache and 13TB pool, with SageTVv9, openDCT, Logitech Media Server and Plex Media Server each in Dockers.
Sources: HRHR Prime with Charter CableCard. HDHR-US for OTA.
Primary Client: HD-300 through XBoxOne in Living Room, Samsung HLT-6189S
Other Clients: Mi Box in Master Bedroom, HD-200 in kids room
Reply With Quote
  #5  
Old 07-17-2015, 08:43 PM
nyplayer nyplayer is offline
SageTVaholic
 
Join Date: Sep 2005
Posts: 4,997
It also killed my parsing of the XML which I use to rename my files using MCEBUDDY. Good thing I worked around it by removing the first 2 lines of the XML.


Code:
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!DOCTYPE sageShowInfo PUBLIC "-//NIELM//DTD SAGESHOWINFO XML 1.3//EN" "http://sageplugins.sourceforge.net/nielm_modules/sagexmlinfo/sageshowinfo_1_3.dtd">
<sageShowInfo version="1.3">
    <systemInfo>
        <alertLevel description="Status" level="0"/>
    </systemInfo>
    <channelList>
        <channel channelId="74030">
            <channelName>USAHDP</channelName>
            <channelDescription>USA Network HD (Pacific)</channelDescription>
            <channelNetwork>HDTV</channelNetwork>
            <channelNumber>758</channelNumber>
        </channel>
    </channelList>
    <favoriteList>
        <favorite favoriteId="19430828">
            <title>Mr. Robot</title>
            <firstRun/>
            <reRun/>
            <autoDelete/>
        </favorite>
    </favoriteList>
    <showList>
        <show epgId="EP021642640004">
            <title>Mr. Robot</title>
            <episode>eps1.3da3m0ns.mp4</episode>
            <category>Drama</category>
            <subCategory>Crime drama</subCategory>
            <description>Fsociety initiates a world-changing hack on the road; Elliot's inner demons threaten to derail the operation.</description>
            <peopleList>
                <person role="Actor">Christian Slater</person>
                <person role="Actor">Rami Malek</person>
                <person role="Actor">Portia Doubleday</person>
                <person role="Actor">Carly Chaikin</person>
                <person role="Actor">Martin Wallström</person>
                <person role="Executive_Producer">Sam Esmail</person>
                <person role="Executive_Producer">Steve Golin</person>
                <person role="Executive_Producer">Chad Hamilton</person>
            </peopleList>
            <originalAirDate>2015-07-16T00:00:00.00Z</originalAirDate>
            <airing channelId="74030" duration="3840" favoriteId="19430828" sageDbId="19760577" startTime="2015-07-16T05:01:00.00Z">
                <parentalRating>TV14</parentalRating>
                <recordSchedule duration="3840" startTime="2015-07-16T05:01:00.00Z"/>
                <isHDTV/>
                <mediafile duration="3837" sageDbId="19820317" startTime="2015-07-16T05:01:02.66Z" type="TV">
                    <segmentList>
                        <segment duration="3837" filePath="\\NYPLAYER\SAGEN\Mr. Robot.S01E04.eps1.3da3m0ns.mp4 -19760577-0.ts" startTime="2015-07-16T05:01:02.66Z"/>
                    </segmentList>
                </mediafile>
            </airing>
        </show>
    </showList>
    <systemMessageList/>
</sageShowInfo>
Reply With Quote
  #6  
Old 07-17-2015, 09:23 PM
Fuzzy's Avatar
Fuzzy Fuzzy is offline
SageTVaholic
 
Join Date: Sep 2005
Location: Jurupa Valley, CA
Posts: 9,957
Quote:
Originally Posted by nyplayer View Post
It also killed my parsing of the XML which I use to rename my files using MCEBUDDY. Good thing I worked around it by removing the first 2 lines of the XML.


Code:
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!DOCTYPE sageShowInfo PUBLIC "-//NIELM//DTD SAGESHOWINFO XML 1.3//EN" "http://sageplugins.sourceforge.net/nielm_modules/sagexmlinfo/sageshowinfo_1_3.dtd">
<sageShowInfo version="1.3">
    <systemInfo>
        <alertLevel description="Status" level="0"/>
    </systemInfo>
    <channelList>
        <channel channelId="74030">
            <channelName>USAHDP</channelName>
            <channelDescription>USA Network HD (Pacific)</channelDescription>
            <channelNetwork>HDTV</channelNetwork>
            <channelNumber>758</channelNumber>
        </channel>
    </channelList>
    <favoriteList>
        <favorite favoriteId="19430828">
            <title>Mr. Robot</title>
            <firstRun/>
            <reRun/>
            <autoDelete/>
        </favorite>
    </favoriteList>
    <showList>
        <show epgId="EP021642640004">
            <title>Mr. Robot</title>
            <episode>eps1.3da3m0ns.mp4</episode>
            <category>Drama</category>
            <subCategory>Crime drama</subCategory>
            <description>Fsociety initiates a world-changing hack on the road; Elliot's inner demons threaten to derail the operation.</description>
            <peopleList>
                <person role="Actor">Christian Slater</person>
                <person role="Actor">Rami Malek</person>
                <person role="Actor">Portia Doubleday</person>
                <person role="Actor">Carly Chaikin</person>
                <person role="Actor">Martin Wallström</person>
                <person role="Executive_Producer">Sam Esmail</person>
                <person role="Executive_Producer">Steve Golin</person>
                <person role="Executive_Producer">Chad Hamilton</person>
            </peopleList>
            <originalAirDate>2015-07-16T00:00:00.00Z</originalAirDate>
            <airing channelId="74030" duration="3840" favoriteId="19430828" sageDbId="19760577" startTime="2015-07-16T05:01:00.00Z">
                <parentalRating>TV14</parentalRating>
                <recordSchedule duration="3840" startTime="2015-07-16T05:01:00.00Z"/>
                <isHDTV/>
                <mediafile duration="3837" sageDbId="19820317" startTime="2015-07-16T05:01:02.66Z" type="TV">
                    <segmentList>
                        <segment duration="3837" filePath="\\NYPLAYER\SAGEN\Mr. Robot.S01E04.eps1.3da3m0ns.mp4 -19760577-0.ts" startTime="2015-07-16T05:01:02.66Z"/>
                    </segmentList>
                </mediafile>
            </airing>
        </show>
    </showList>
    <systemMessageList/>
</sageShowInfo>
Yeah, I'm thinking at this point (well, really about 10 years ago), that anything with nielm's name in it should probably be deprecated and replaced with something more 'maintained'.
__________________
Buy Fuzzy a beer! (Fuzzy likes beer)

unRAID Server: i7-6700, 32GB RAM, Dual 128GB SSD cache and 13TB pool, with SageTVv9, openDCT, Logitech Media Server and Plex Media Server each in Dockers.
Sources: HRHR Prime with Charter CableCard. HDHR-US for OTA.
Primary Client: HD-300 through XBoxOne in Living Room, Samsung HLT-6189S
Other Clients: Mi Box in Master Bedroom, HD-200 in kids room
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
can't download plugins - Server issues? toony SageTV Software 14 03-03-2014 05:51 PM
Attempted download/install of plug-in keeps failing Chriscic Diamond 2 03-21-2011 09:41 AM
SMM API install keeps failing craigap Sage My Movies 25 10-06-2010 08:42 AM
How/Where to install plugins on the Mac? cnr1089 SageTV Mac Edition 0 04-10-2009 10:40 AM
Fresh Install - What do I download? Brian B SageTV Software 18 03-25-2008 08:34 PM


All times are GMT -6. The time now is 01:55 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2023, vBulletin Solutions Inc.
Copyright 2003-2005 SageTV, LLC. All rights reserved.