View unanswered posts    View active topics

All times are UTC - 6 hours





Post new topic Reply to topic  [ 189 posts ] 
Go to page Previous  1, 2, 3, 4, 5, 6 ... 13  Next

Print view Previous topic   Next topic  
Author Message
Search for:
 Post subject:
PostPosted: Sat Aug 25, 2007 10:33 pm 
Offline
Joined: Fri Jul 29, 2005 1:22 am
Posts: 232
Location: SF East Bay, CA
Anyone try Cecil's script on an older version.. like R5C7? Thanks!

_________________
// Brian - Hardware:
ASUS P5P800 - P4 3Ghz, 500 GB PATA HD
ASUS P5K-V - P4 Core2 Duo, 500 GB SATA HD
Hauppauge PVR-350, IR Blaster, Comcast Digital Cable
http://tech.groups.yahoo.com/group/KnoppMyth/
KnoppMyth R5F27 >> R5.5


Top
 Profile  
 
 Post subject:
PostPosted: Sun Aug 26, 2007 3:04 am 
Offline
Joined: Thu Feb 02, 2006 2:01 am
Posts: 20
MythWeather is broken for me, unfortunately, and I seem to have lost access to MythStream (even though I saved mainmenu.xml?).

Program listings are in good shape at this point, at least, which is easily the most important things. Thanks for the detailed instructions, Cecil!


Top
 Profile  
 
PostPosted: Sun Aug 26, 2007 6:34 am 
Offline
Joined: Sun Jul 24, 2005 4:16 pm
Posts: 508
Location: Ft. Worth TX
Example:
Code:

cd..
svn co http://svn.mythtv.org/svn/branches/release-0-20-fixes/mythtv


I get a 'can't create /mythtv' error when I run this.
What directory should I be in and what user (su ?)


Top
 Profile  
 
 Post subject:
PostPosted: Sun Aug 26, 2007 8:25 am 
Offline
Joined: Tue Jan 18, 2005 2:07 am
Posts: 1532
Location: California
I am going to try to apply cecil's instructions to my R5D1 system sometime today. R5D1 was built on mythtv 0.19. Cecil has indicated that this should be OK. If anyone has already tried this and either knows that it will or won't work, it would be great to hear that before I get myself into too much trouble :-). Thanks!

Marc


Top
 Profile  
 
 Post subject:
PostPosted: Sun Aug 26, 2007 9:22 am 
Offline
Joined: Fri Jun 23, 2006 10:57 am
Posts: 106
BluesBrian wrote:
Anyone try Cecil's script on an older version.. like R5C7? Thanks!


Probably not as old as you hoped but all went perfectly with R5E50. I followed his steps (build and mythweather scrpt) except:

1) Saved off the mainmenu.xml file so it could be copied back.
2) I only updated my existing source(s) to schedules direct.

I did these because earlier in the thread people suggested to do this or as with #2, it would work properly. It seems to be so as mythfilldatabase ran and did get data from SD for a few days out from what I had.

Thanks to Cecil and the other people in this forum for making this so painless.


Top
 Profile  
 
PostPosted: Sun Aug 26, 2007 9:27 am 
Offline
Joined: Fri Jun 23, 2006 10:57 am
Posts: 106
snaproll wrote:
Example:
Code:

cd..
svn co http://svn.mythtv.org/svn/branches/release-0-20-fixes/mythtv


I get a 'can't create /mythtv' error when I run this.
What directory should I be in and what user (su ?)


I was in the mythtv user home directory. It should work in /tmp too.


Top
 Profile  
 
 Post subject:
PostPosted: Sun Aug 26, 2007 10:40 am 
Offline
Joined: Sun Jul 24, 2005 4:16 pm
Posts: 508
Location: Ft. Worth TX
Thanks, I got it working. :)


Top
 Profile  
 
 Post subject:
PostPosted: Sun Aug 26, 2007 1:10 pm 
Offline
Joined: Tue Jan 18, 2005 2:07 am
Posts: 1532
Location: California
I've run the steps Cecil outlined in his post on my R5D1 system -- so far things look good and I am able to download from Schedules Direct. Question: Have these steps essentially upgraded me from mythtv 0.19 to 0.20? Thanks!

Marc


Top
 Profile  
 
 Post subject:
PostPosted: Sun Aug 26, 2007 1:26 pm 
Offline
Site Admin
Joined: Fri Sep 19, 2003 6:37 pm
Posts: 2659
Location: Whittier, Ca
Answer:Yes.


Top
 Profile  
 
PostPosted: Sun Aug 26, 2007 3:21 pm 
Offline
Joined: Sat Feb 04, 2006 12:19 pm
Posts: 17
Location: Texas
So, if all my channels are named "adding channel xx" is there some non-tedious way to fix that?

UPDATE: SD must have been hiccuping. All is now right with the world.


Last edited by AndySocial on Mon Aug 27, 2007 6:40 pm, edited 1 time in total.


Top
 Profile  
 
 Post subject:
PostPosted: Sun Aug 26, 2007 5:01 pm 
Offline
Joined: Tue Jan 18, 2005 2:07 am
Posts: 1532
Location: California
I hit a problem with mythweb. mythweb would complain about incompatible protocols because the orignal R5D1 (0.19) mythweb code was still being used. I solved this by doing the following from the mythplugins directory:

Code:
mv /var/www/mythweb /var/www/mythweb.019
cp -pR mythweb /var/www
chown -R www-data.www-data /var/www/mythweb
/etc/init.d/apache restart


Mythweb now works, but I have the follow questions:

1. Are there other steps I need to take to get the rest of the plugins installed? ie, Was there a missing step in the original directions, or did I miss a step that was there, thus causing the problem?

2. Under R5D1/0.19 I would edit the file "/var/www/mythweb/config/conf.php" and modify the variable "video_url" to a specific value. Things seems to have changed with 0.20 -- how do I do this under 0.20?

Everything below this line was added after my original post:

1. The answer to question # 2 is to make the change from mythweb. Go to mythweb->Settings->MythTV Global Defaults and put the path you want into the field called "Video URL".

2. Another step that is important for people using Cecil's instruction who are in R5D1 or earlier (ie, 0.19) is to install the new themes. You can do this as follows:
Code:
svn co http://svn.mythtv.org/svn/branches/release-0-20-fixes/myththemes
cd myththemes
./configure --prefix=/usr
qmake myththemes.pro
make
make install


Thanks!

Marc


Last edited by marc.aronson on Mon Aug 27, 2007 10:49 am, edited 2 times in total.


Top
 Profile  
 
 Post subject:
PostPosted: Sun Aug 26, 2007 5:13 pm 
Offline
Joined: Mon Jul 31, 2006 7:47 pm
Posts: 13
I believe I followed the directions properly but I am having some issues. When I create the video source it will pull the proper name of the source. I select it like normal.

When I go to run mythfilldatabase the I always get the following. It never pulls and program data.

Code:
2007-08-26 18:14:13.319 DataDirect: Your subscription expires on 12/02/07 13:55:30
2007-08-26 18:14:33.881 Grab complete.  Actual data from Fri Sep 7 00:00:00 2007 to Sat Sep 8 23:59:59 2007 (UTC)
2007-08-26 18:14:33.882 Main temp tables populated.
2007-08-26 18:14:33.898 Did not find any new program data.
2007-08-26 18:14:33.904 New DB connection, total: 4
2007-08-26 18:14:33.905 Connected to database 'mythconverg' at host: localhost
2007-08-26 18:14:33.907 New DB connection, total: 5
2007-08-26 18:14:33.908 Connected to database 'mythconverg' at host: localhost
2007-08-26 18:14:33.912 Failed to fetch some program info
2007-08-26 18:14:33.912 Adjusting program database end times.
2007-08-26 18:14:33.914     0 replacements made
2007-08-26 18:14:33.914 Marking generic episodes.
2007-08-26 18:14:33.914     Found 0
2007-08-26 18:14:33.915 Marking repeats.
2007-08-26 18:14:33.917     Found 0
2007-08-26 18:14:33.917 Unmarking new episode rebroadcast repeats.
2007-08-26 18:14:33.918     Found 0
2007-08-26 18:14:33.918 Marking episode first showings.
2007-08-26 18:14:33.919     Found 0
2007-08-26 18:14:33.919 Marking episode last showings.
2007-08-26 18:14:33.920     Found 0
2007-08-26 18:14:33.922 Grabbing next suggested grabbing time
2007-08-26 18:14:34.398 DataDirect: BlockedTime is: 2007-08-26T18:14:34
2007-08-26 18:14:34.400 DataDirect: NextSuggestedTime is: 2007-08-27T21:26:35


Top
 Profile  
 
 Post subject:
PostPosted: Sun Aug 26, 2007 5:41 pm 
Offline
Joined: Thu Aug 09, 2007 2:23 pm
Posts: 10
I'm having similar problems to mcwilson. I've setup my video sources, but when I try to "fetch the channel listings from source" for my analog cable channels, or edit my QAM channels and try to Probe for XMLTV IDs, nothing is working. It's almost like it doesn't have any listing data available. Any suggestions?


Top
 Profile  
 
 Post subject:
PostPosted: Sun Aug 26, 2007 6:18 pm 
Offline
Site Admin
Joined: Fri Sep 19, 2003 6:37 pm
Posts: 2659
Location: Whittier, Ca
hint hint --refresh-all...


Top
 Profile  
 
 Post subject:
PostPosted: Sun Aug 26, 2007 6:31 pm 
Offline
Joined: Mon Jul 31, 2006 7:47 pm
Posts: 13
cecil wrote:
hint hint --refresh-all...


I did that. It isn't even working with TMS labs selected anymore.


Top
 Profile  
 

Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 189 posts ] 
Go to page Previous  1, 2, 3, 4, 5, 6 ... 13  Next



All times are UTC - 6 hours




Who is online

Users browsing this forum: No registered users and 10 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
Powered by phpBB® Forum Software © phpBB Group

Theme Created By ceyhansuyu