|
SageTV Software Discussion related to the SageTV application produced by SageTV. Questions, issues, problems, suggestions, etc. relating to the SageTV software application should be posted here. (Check the descriptions of the other forums; all hardware related questions go in the Hardware Support forum, etc. And, post in the customizations forum instead if any customizations are active.) |
|
Thread Tools | Search this Thread | Display Modes |
#1
|
||||
|
||||
DST discussion
I hate TIME. My stupid XP machine changed it's time today, and I cannot get SageTV to cooperate. I know it's not SageTV's fault, but after an hour of changing the time on my XP box, Changing the check box for DST in the time settings, rebooting the PC, restarting SageTV, changing the hour etc..., I am to my wits end!!!!!!! I hate DST, and I hate the fact that Farmers are whiney little B1+cH3z that have to get more time for their stupid crops. Get up an hour early or whatever hippies!!!!!!!!!!
So, now I have to record shows an hour late with different names because I can't get SageTV to say it's the same hour as my XP box says it is. If I get it to say the same time, the guide show names are an hour off. What the FREAK!!!!!!!!! And yes, I see there are java updates and Pre SP3 DST patches, but the Java on my system is up to date, and I built this system with SP3 slipstreamed in, so I cant uninstall it an do the DST Patch. I wish SageTV could be given a command which let's you override what it thinks is right, and go with what you say. This is my rant, and I am done. Update: Only the utility on this page was able to fix my problem. Even the Microsoft patch refused to install on my system http://www.intelliadmin.com/Downloads.htm
__________________
Mike Janer SageTV HD300 Extender X2 Sage Server: AMD X4 620,2048MB RAM,SageTV 7.x ,2X HDHR Primes, 2x HDHomerun(original). 80GB OS Drive, Video Drives: Local 2TB Drive GB RAID5 Last edited by mikejaner; 10-27-2008 at 05:09 PM. |
#2
|
|||
|
|||
I must say that unlike the issues experienced at work due to the new DST changes this year with Exchange, XP, Blackberries, Windows Mobile devices and Symbian phones, at home Sage running on Vista64 Sp1 (GO YOU GOOD THING!!!) seems to have gone smoothly through the changes without a hitch.
Having said that I noticed that quite a few XP workstations on the network behaved rather strangely and had to be given a gentle push to come into line. Regards Mike |
#3
|
||||
|
||||
I have a simple solution to your DST woes. Move to Hawaii.
__________________
"Everything doesn't exist. I'm thirsty." ...later... "No, it's real!!! I'm full." - Nikolaus (4yrs old) |
#4
|
||||
|
||||
LOLz
__________________
Mike Janer SageTV HD300 Extender X2 Sage Server: AMD X4 620,2048MB RAM,SageTV 7.x ,2X HDHR Primes, 2x HDHomerun(original). 80GB OS Drive, Video Drives: Local 2TB Drive GB RAID5 |
#5
|
||||
|
||||
There is an update that you have to run from Windows Updates that will take care of this.
http://support.microsoft.com/kb/951072 I guess if you have automatic updates disabled then you wouldn't have gotten this patch.
__________________
SageTV Server: Athlon64 3200+ 2GB RAM 36GB 10k rpm OS Drive 500GB SATA 7200rpm Media Drive WinTV-HVR-1600 |
#6
|
|||
|
|||
I installed XP Sp3 and the latest java from sun. My pc clock is correct but sage is still an hour ahead. Any ideas?
|
#7
|
||||
|
||||
Install the software at the link I posted above. I set my system to the right time, but Sagetv would stay an hour ahead. When I installed the utility, it fixed it.
__________________
Mike Janer SageTV HD300 Extender X2 Sage Server: AMD X4 620,2048MB RAM,SageTV 7.x ,2X HDHR Primes, 2x HDHomerun(original). 80GB OS Drive, Video Drives: Local 2TB Drive GB RAID5 |
#8
|
|||
|
|||
SageTV Client 2 hours ahead??
I don't understand why my SageTV client is showing a time that is 2 hours ahead of the server it is connected to?? I have the DST updates installed on both the SageTV server and the client pc. Both pc's are showing the correct time. Accessing the SageTV server with a MVP and it shows the correct time on the tv. Why is it and how can I stop the client from showing 2 hours ahead?
* merged * |
#9
|
||||
|
||||
Make sure you have the latest java installed with the DST updates also. Your OS will need the DST patches and other updates. Java needs to be at the latest version. Make sure all apps are shutdown when applying. Probably makes sense to reboot the box after applying. Make sure your Windows clock settings has the right time zone and automatically adjust for daylight savings is still checked. (Doesn't end until Sunday)
Gerry
__________________
Big Gerr _______ Server - WHS 2011: Sage 7.1.9 - 1 x HD Prime and 2 x HDHomeRun - Intel Atom D525 1.6 GHz, Acer Easystore, RAM 4 GB, 4 x 2TB hotswap drives, 1 x 2TB USB ext Clients: 2 x PC Clients, 1 x HD300, 2 x HD-200, 1 x HD-100 DEV Client: Win 7 Ultimate 64 bit - AMD 64 x2 6000+, Gigabyte GA-MA790GP-DS4H MB, RAM 4GB, HD OS:500GB, DATA:1 x 500GB, Pace RGN STB. |
#10
|
||||
|
||||
I have no idea is this is related, but I found an interesting bug in Java (on ubuntu) where Java was reporting the incorrect time when daylight savings was being used.
For example the current time on my computer is 3:56 PM EDT But the following java code Code:
import java.util.Calendar; import java.util.TimeZone; public class TestTime { public static void main(String args[]) { Calendar cal = (Calendar.getInstance()); cal.setTimeZone(TimeZone.getTimeZone("EDT")); System.out.println("DateTime: " + cal.getTime()); } } Quote:
After doing some research, I found that this was quite common, and that specifying the timezone eplicitly as in the following code, fixed the problem. Code:
import java.util.Calendar; import java.util.TimeZone; public class TestTime { public static void main(String args[]) { System.setProperty("user.timezone","America/Toronto"); Calendar cal = (Calendar.getInstance()); cal.setTimeZone(TimeZone.getTimeZone("EDT")); System.out.println("DateTime: " + cal.getTime()); } } Code:
DateTime: Tue Oct 28 15:59:01 EDT 2008 But the time is correct and the Timezone is correct. Java is supposed to pull the timezone from the system, but in my case (ubuntu) it is not pulling the timezone correctly, event though my system does have the time zone set correctly. Since you cannot modify the sage java code, you can try to pass the timezone on the sage commandline by specifying Code:
-Duser.timezone="America/Toronto"
__________________
Batch Metadata Tools (User Guides) - SageTV App (Android) - SageTV Plex Channel - My Other Android Apps - sagex-api wrappers - Google+ - Phoenix Renamer Downloads SageTV V9 | Android MiniClient Last edited by stuckless; 10-28-2008 at 02:04 PM. |
#11
|
||||
|
||||
As a member of a farming family, I have to put you in your place. We don't like it any more than you do. And for the record it has nothing to do with farming, it was originally put in place by the Germans in WWI to conserve the energy of keeping things lit during the odd hours when time shifts. It then spread through Europe and then to the states. Of course this all happened when people "actually worked" and woke up hella earlier than we do. There are currently bills on the docket supporting the abolishion of DST. Wether or not it passes is another thing.
So LAY OFF THE FARMERS AND THEIR CROPS YOU EAT!! Sorry, had to be said. Thanks |
#12
|
||||
|
||||
DST from a Java perspective
Found this informative:
Once you've identified the version of Java, you'll want to determine what can and can't be patched. Here are the Java versions and the ways they can be patched to be compliant with the US DST Time Changes: Table 1: Sun, BEA and HP Java Java Version-Java 1.4.0 Compliant Release -None update tool -tzupdater Java Version-Java 1.4.1 Compliant Release -None update tool -tzupdater Java Version-Java 1.4.2 Compliant Release -1.4.2_11 update tool -tzupdater Java Version-Java 1.5.0 Compliant Release -1.5.0_06 update tool -tzupdater Java Version-Java 1.6 All Versions Compliant update tool -N/A References: Sun tzupdater README If you're on a compliant version then look at your OS and its DST patches and any other updates that may be required. Windows Daylight Saving Time Help Quote:
Gerry
__________________
Big Gerr _______ Server - WHS 2011: Sage 7.1.9 - 1 x HD Prime and 2 x HDHomeRun - Intel Atom D525 1.6 GHz, Acer Easystore, RAM 4 GB, 4 x 2TB hotswap drives, 1 x 2TB USB ext Clients: 2 x PC Clients, 1 x HD300, 2 x HD-200, 1 x HD-100 DEV Client: Win 7 Ultimate 64 bit - AMD 64 x2 6000+, Gigabyte GA-MA790GP-DS4H MB, RAM 4GB, HD OS:500GB, DATA:1 x 500GB, Pace RGN STB. Last edited by gplasky; 10-28-2008 at 02:39 PM. |
#13
|
|||
|
|||
Is the time in the SageTV client broken??
Well this is getting stranger and stranger. I made sure the DST updates were there and automatically update the time for DST is checked. I updated java to 1.6.0_10 (I think I was using 1.6.0_3 or 1.6.0_7 before as displayed by SageTV). I updated the SageTV server software to the current version. I updated the SageTV client software to the current version. I rebooted both machines. Both machines are showing the correct time. SageTV shows the correct time on the server. A mediaMVP connected to the server shows the correct time and can you guess what time the SageTV client shows? Wrong!! It now shows a time that is 3 1/2 hours ahead of the SageTV server!! Forgive me but isn't the client just an extension of the SageTV server and shouldn't the SageTV client just display the time that the SageTV server has (or allow us to choose server time or local time)?? ?
|
#14
|
||||
|
||||
Quote:
Gerry
__________________
Big Gerr _______ Server - WHS 2011: Sage 7.1.9 - 1 x HD Prime and 2 x HDHomeRun - Intel Atom D525 1.6 GHz, Acer Easystore, RAM 4 GB, 4 x 2TB hotswap drives, 1 x 2TB USB ext Clients: 2 x PC Clients, 1 x HD300, 2 x HD-200, 1 x HD-100 DEV Client: Win 7 Ultimate 64 bit - AMD 64 x2 6000+, Gigabyte GA-MA790GP-DS4H MB, RAM 4GB, HD OS:500GB, DATA:1 x 500GB, Pace RGN STB. |
#15
|
|||
|
|||
DST updates - anything needed?
SOMEONE PLEASE
Create a sticky announcement with a simple 10 word statement on what Sage users need to do if anything re DST. Me, myself, am concerned with the US rules in 2008. Sage TV should send auto-email to all customers if a change is needed to avoid another fiasco. I have the Java version that came with sage 6.2, and I have not downloaded any Microsoft patches for 2008's DST. |
#16
|
||||
|
||||
Quote:
Gerry
__________________
Big Gerr _______ Server - WHS 2011: Sage 7.1.9 - 1 x HD Prime and 2 x HDHomeRun - Intel Atom D525 1.6 GHz, Acer Easystore, RAM 4 GB, 4 x 2TB hotswap drives, 1 x 2TB USB ext Clients: 2 x PC Clients, 1 x HD300, 2 x HD-200, 1 x HD-100 DEV Client: Win 7 Ultimate 64 bit - AMD 64 x2 6000+, Gigabyte GA-MA790GP-DS4H MB, RAM 4GB, HD OS:500GB, DATA:1 x 500GB, Pace RGN STB. |
#17
|
|||
|
|||
Quote:
I don't think we'll be getting rid of it anytime soon, after all they just extended it this past year. |
#18
|
|||
|
|||
Quote:
Like the prior fiasco, what's needed is a simple sticky that has a clear and concise list or table of who need to do what. It's not practical to try to piece it together by reading the stream of chats. |
#19
|
||||
|
||||
Can you please state the java version? I read somewhere were people are having trouble with version 11.
__________________
Server: HP AMD64 dual core running Win7 64bit (MCE disabled) with 4G memory Tuners: 2 PVR-500(disabled), 3 HDHR and 1 HDPVR Clients: 2 HD200 and 1 HD100 TV: 70" and 52" and 42" Media Storage: ReadyNas 8TB Recording media: 300GB + 200GB+ 250 GB Network: Gigabit backbone' Thanks to all the developers who work on SageMC, code, utilities and plug-ins to make SageTV better!!! |
#20
|
||||
|
||||
java version 6 update 12 is the latest. As long as you stop the SageTV service and make sure Sage is completely stopped and exited there are no issues with the latest version. There are issues, sometimes, if you try to upgrade while an app (like Sage) is still using java. I am running is on WHS, Vista x64 and x32 and XP x32. And as long as you kept up to date with service packs and patches you should be fine for DST.
Gerry
__________________
Big Gerr _______ Server - WHS 2011: Sage 7.1.9 - 1 x HD Prime and 2 x HDHomeRun - Intel Atom D525 1.6 GHz, Acer Easystore, RAM 4 GB, 4 x 2TB hotswap drives, 1 x 2TB USB ext Clients: 2 x PC Clients, 1 x HD300, 2 x HD-200, 1 x HD-100 DEV Client: Win 7 Ultimate 64 bit - AMD 64 x2 6000+, Gigabyte GA-MA790GP-DS4H MB, RAM 4GB, HD OS:500GB, DATA:1 x 500GB, Pace RGN STB. |
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
DST? | melluap | SageTV Linux | 1 | 04-13-2008 04:56 PM |
I'm having some time issues....not DST related | setherd | SageTV Software | 16 | 11-19-2007 02:47 PM |
DST still has my system jacked, need help | aedgington | SageTV Software | 10 | 03-18-2007 06:57 AM |
Anyone else have a DST issue? | Peggysis | SageTV Linux | 4 | 03-17-2007 07:11 AM |
New DST Rules | hmca | General Discussion | 3 | 02-27-2007 09:02 PM |