Logviewer 1.14 showing incorrect times, and other issues.

Couple of issues with running LogViewer, wondering if anyone can help.
First, and seems to be the most frustrating, is that the LogViewer screen is showing incorrect times for the events. I am in Mountain Time zone in the US, which is GMT-7. When looking at the log from a web browser, my router is displaying the correct time. The text file that LogViewer saves on the local computer shows the same correct time. The LogViewer screen, however, shows a time 7 hours into the future. IE, if I type out the log from a DOS window, the last event will say something like "Mar 28 1:15:05 2008", but that same event number will be listed on the logviewer screen as "Mar 28 8:15:05" Any ideas on what may be wrong and how to correct it?
Second, all events seem to be grouped exactly 3 minutes apart. I realize this is probably an effect of the router sending the information every three minutes. Anyone know of a way of changing that period?
Hm, just noticed a third, but very minor issue. The text file written has the wrong day of week on it. It's listing Mar 28 2008 as a Wednesday...
Thanks in advance for any advice.
OK, the tech info. I am running LogViewer 1.14 on a Windows XP machine, contacting an WRT55AG with firmware 1.20. The connection is through a Cat 5 cable, not through the wireless.

Couple of issues with running LogViewer, wondering if anyone can help.
First, and seems to be the most frustrating, is that the LogViewer screen is showing incorrect times for the events. I am in Mountain Time zone in the US, which is GMT-7. When looking at the log from a web browser, my router is displaying the correct time. The text file that LogViewer saves on the local computer shows the same correct time. The LogViewer screen, however, shows a time 7 hours into the future. IE, if I type out the log from a DOS window, the last event will say something like "Mar 28 1:15:05 2008", but that same event number will be listed on the logviewer screen as "Mar 28 8:15:05" Any ideas on what may be wrong and how to correct it?
Second, all events seem to be grouped exactly 3 minutes apart. I realize this is probably an effect of the router sending the information every three minutes. Anyone know of a way of changing that period?
Hm, just noticed a third, but very minor issue. The text file written has the wrong day of week on it. It's listing Mar 28 2008 as a Wednesday...
Thanks in advance for any advice.
OK, the tech info. I am running LogViewer 1.14 on a Windows XP machine, contacting an WRT55AG with firmware 1.20. The connection is through a Cat 5 cable, not through the wireless.

Similar Messages

  • Battery shows incorrect time and no notification on low battery

    Hi everyone,
    I have just purchased a new battery, of course its not an original one. The problem is that my battery meter shows the percentage incorrectly. Like it says 42% remaining, but suddenly my laptop got in to hibernation (as i set the action to perform upon low battery level reaches). Now what can be the issue? As the battery new and its working fine, i mean its giving me backup of 2+ hours. Oh, and my laptop is DV6-2157wm with Windows 7 Home Editions (64-bit).
    Waiting for your kind suggestions and tips.
    Take care,
    Regards
    Fahad Ali

    Please have a look here.
    http://windows.microsoft.com/en-us/windows-vista/Battery-meter-frequently-asked-questions
    Why does the time remaining on the battery meter change drastically sometimes?
    Battery life depends primarily on two things: what you do on the mobile PC while it's running on battery power, and the power plan settings that control the computer's use of power. The mobile PC's power consumption varies constantly, depending on your particular activity and how long you spend on that activity. For instance, watching a DVD consumes considerably more battery power than reading and writing e-mail. For these reasons, the battery meter often lags in reporting the charge and the estimated time remaining.
    hence battery meter is never so accurate. older the battery, chances are more of sudden drop.
    Regards,
    WW
    “I am an HP Employee“
    ***** Click the KUDOS star on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem***

  • Execution times and other issues in changing TextEdit documents

    (HNY -- back to terrorize everyone with off-the-wall questions)
    --This relates to other questions I've asked recently, but that may be neither here nor there.
    --Basically, I want to change a specific character in an open TextEdit document, in text that can be pretty lengthy. But I don't want pre-existing formatting of the text to change.
    --For test purposes the front TextEdit document is simply an unbroken string of letters (say, all "q's") ranging in number from 5 and upwards. Following are some of the results I've gotten:
    --1) Using a do shell script routine (below), the execution is very fast, well under 0.1 second for changing 250 q's to e's and changing the front document. The problem is that the formatting of the first character becomes the formatting for the entire string (in fact, for the entire document if there is subsequent text). So that doesn't meet my needs, although I certainly like the speed.
    --SCRIPT 1
    tell application "TextEdit"
    set T to text of front document
    set Tnew to do shell script "echo " & quoted form of T & " | sed 's/q/e/g'"
    set text of front document to Tnew
    end tell
    --END SCRIPT 1
    --The only practical way I've found to change a character AND maintain formatting is the "set every character where it is "q" to "e"" routine (below). But, for long text, I've run into a serious execution speed problem. For example, if the string consists of 10 q's, the script executes in about 0.03 second. If the string is 40 characters, the execution is 0.14 second, a roughly linear increase. If the string is 100 characters, the execution is 2.00 seconds, which doesn't correlate to a linear increase at all. And if the string is 250 characters, I'm looking at 70 seconds. At some point, increasing the number of string characters leads to a timeout or stall. One interesting aspect of this is that, if only the last 4 characters (example) of the 250-character string are "q", then the execution time is again very quick.
    --SCRIPT 2
    tell application "TextEdit"
    set T to text of front document
    tell text of front document
    set every character where it is "q" to "e"
    end tell
    end tell
    --END SCRIPT 2
    --Any insight into this issue (or workaround) will be appreciated.
    --In the real world, I most often encounter the issue when trying to deal with spaces in long text, which can be numerous.

    OK, Camelot, helpful but maddening. Based on your response. I elected to look at this some more, even though I'm stuck with TextEdit on this project. Here's what I found, not necessarily in the order I did things:
    1) I ran your "repeat" script on my usual machine (2.7 PPC with 10.4.6)) and was surprised to consisently get about 4.25 seconds -- I didn't think it should matter, but I happened to run it with Script Debugger.
    2) Then, curious as to what a slower processor speed would do, I ran it at ancient history speed -- a 7500 souped up to 700 MHz. On a 10.4.6 partition, the execution time was about 17 seconds, but on a 10.3.6 partition it was only about 9.5 seconds. (The other complication with this older machine is that it uses XPostFacto to accommodate OS X.) And I don't have Script Debugger for 10.3.x, so I ran the script in Script Editor on that partition.
    3) That got me wondering about Script Editor vs. Script Debugger, so (using 10.4.6) I ran the script on both the old machine and my (fast) usual machine using Script Editor. On the old machine, it was somewhat faster at about 14 seconds. But, surprise!, on the current machine it took twice as long at 8.6 seconds. The story doesn't end here.
    (BTW, I added a "ticks" routine to the script, so the method of measuring time should be consistent. And I've been copying and pasting the script to the various editors, so there shouldn't be any inconsistencies with it. I've consistently used a 250-character unbroken string of the target in a TextEdit document.)
    4) Mixed in with all these trials, I wrote a script to get a list of offsets of all the target characters; it can be configured to change the characters or not. But I found some intriguing SE vs. SD differences there also. In tests on the fast machine, running the script simply to get the offset list (without making any changes), the list is generated in under a second -- but sometimes barely so. The surprise was that SE ran it in about half the time as SD. although SD was about twice as fast with a script that called for changes. Go figure.
    5) Since getting the offset list is pretty fast in either case, I was hoping to think up some innovative way of using the offset list to make changes in the document more quickly. But running a repeat routine with the list simply isn't innovative, and the result is roughly what I get with your repeat script coupled with an added fraction of a second for generating the list. Changing each character as each offset is generated also yields about the same result.
    My conclusion from all this is that the very fast approaches (which lose formatting) are changing the characters globally, not one at a time as occurs visibly with techniques where the formatting isn't lost. I don't know what to make of SE vs. SD, but I repeated the runs several times in each editor, with consistent results.
    Finally, while writing the offset list script, I encountered a couple AS issues that I've seen several times in the past (having nothing specifically to do with this topic), but I'll present that as a new post.
    Thanks for your comments and any others will be welcome.

  • Widget world clock shows incorrect time

    widget world clock shows incorrect time.. how can i fix this?

    There are two possibilities: (1) your computer's time is wrong. Open System Preferences, select the Date & Time tab, and either set the time manually or select a time server. If you choose the time server click on the Time Zone tab and choose your correct time zone. (2) click on the i on the World Clock widget and select a city near you (that's in the same time zone as yours.)

  • It shows incorrect time in time zone iphone 4s!! If i select 'set automatically' the london time show is wrong,how do i correct this?

    It shows incorrect time in time zone on my iphone 4s!! If i select 'set automatically' the London time, is wrong,how do i correct this?

    I recently got the same problem and noticed that it only started after I'd downloaded a particular app which used the location feature.  It was the free version of the Weather Channel that started it off and, since I've deleted it, I've not had the problem of being in Singapore or China since!
    I expect there will be other apps that cause the same issues - probably a bad piece of code being used to pick up the location function.  It might be worth trying to turn individual apps off that feature in location services to pinpoint which other apps may causing your problem.
    Hope this helps!

  • How do I get the starter home screen back to showing the time and weather?

    The phone had showed the time and weather from the starter mode and now it doesn't. How do I get it back to showing it?

        We would be delighted to assist today Arkad! Do you mind sharing your current device? Let's get this resolved.
    MatthewS_VZW
    Follow us on Twitter @VZWSUPPORT

  • Can I change incorrect time and date with

    Hello,
    I used my digital camera in a different time zone and forgot to set it accordingly. Now a bunch of photos have the incorrect time and date. Can I use Photoshop CS4 (11.0.2) to change this? I only found instructions on the Internet for Elements, which I do not have.
    Windows Live Photogallery was only mildly successful. In the Windows 7 Explorer the date is shown correctly, but when I go to open the file in Adobe Photoshop, the old, incorrect date is shown. That's why I hoped that I could change this for good with Photoshop.
    Thanks in advance!
    Aiiyana

    There are several dates in the metadata.  THe date shot is set by the camera and I know that you can not change that in Bridge.  There are programs out there on the web that will do it.

  • My lockscreen did not showing me time and it lags, help PLS!  it´s only black background with unlock button and it lags when i unlocking it  pls help

    My lockscreen did not showing me time and it lags, help PLS!
    it´s only black background with unlock button and it lags when i unlocking it
    pls help

    It's not an Apple issue and Apple has nothing to do with it.
    The only way to buy an iPhone officially refurbished by Apple is to buy it from an Apple store or via Apple's website.
    Refurbished iPhones sold via other retailers are not refurbished by Apple.
    Sounds like Wireless Wave did all they could... they refunded your money.
    Your only issue is with them.  Stop getting all worked up over it.

  • Whenever i open internet it shows untrusted connection....and in google images it shows few images and other quite white.....what to do?

    whenever i open internet it shows untrusted connection....and in google images it shows few images and other quite white.....what to do?

    Hello,
    please check you system Date and time and make sure they are correct .
    Moreover
    A common problem recently is Firefox not being set up to work with your security software. Some security suites include a filtering feature. In order to filter secure connections (HTTPS URLs), the security software presents a fake certificate to Firefox so it can intercept and stand in the middle of the secure connection. To have Firefox trust these certificates, you may need to do something such as import a root certificate, or click something in your security software's settings.

  • Why are some of my calendar appointments synching, some synch multiple times and others not at all?

    why are some of my calendar appointments synching, some synch multiple times and others not at all?

    iTunes: May be unable to transfer videos to iPhone, iPad, or iPod - http://support.apple.com/kb/TS1497

  • Some songs in my Ipod classic get get off after a few seconds of playing, but they work fine in ITunes and other Ipods.  I have reset the classic several times and same issue happens, any ideas?

    Some songs in my Ipod classic get get off after a few seconds of playing, but they work fine in ITunes and other Ipods.  I have reset the classic several times and same issue happens, any ideas?

    I have that exact same problem! It plays albums fine. But individual songs including ones downloaded from iTunes either skip or play the music of another totally different song. All play fine on iTunes and my iPhone... Got this one to replace my dying 5th gen classic.
    I hope there is a fix for this, cause it *****!!!!

  • Recently PopClip stopped showing "Cut," "Paste," and other similar options

    Hello,
    Recently, PopClip stopped showing "Cut," "Paste," and other similar options. I haven't changed anything in the settings. Maybe this will help:
    2013-06-04 18:55:22.886 PopClip[1167:707] [INFO] PopAppDelegate: PopClip Initializing.
    2013-06-04 18:55:23.089 PopClip[1167:707] Could not find image named 'BuyLabel'.
    2013-06-04 18:55:23.093 PopClip[1167:707] Could not find image named 'BlueTick'.
    2013-06-04 18:55:23.162 PopClip[1167:707] NSWindow does not support nonactivating panel styleMask 0x80
    2013-06-04 18:55:23.164 PopClip[1167:707] [INFO] PopAppDelegate: PopClip will wait 0.500000 seconds to start.
    2013-06-04 18:55:26.591 PopClip[1167:707] .sdef warning for argument 'FileType' of command 'save' in suite 'Standard Suite': 'saveable file format' is not a valid type name.
    2013-06-04 18:55:26.623 PopClip[1167:707] Bartender Loaded
    logout
    Thank you in advance for the help!

    This is something you'll want to address with the developer of PopClip.

  • Does anyone know what's up with the iPhone 4s' battery life? Some days it last a long time and other days it drains extremely fast.

    Does anyone know what's up with the iPhone 4s' battery life? Some days it last a long time and other days it drains extremely fast.

    Not to point out the obvious, but battery life depends very much on what is running and how much the device is being used.
    If the battery lasts longer on a day you make no phone calls, but lasts less the day you make 5 hour long calls, this is to be expected.
    If however the iPhone has the same level of use on both days, with different power consumption, this would infer a background process (or App) is trying to do something (connecting to server or creating a back up etc).
    I switched off all thrid party apps from being included in my iCloud backup, which saves a huge amount of space on the cloud and allows the back up to take barely a couple of minutes.
    Battery life seems ok so far on my 64GB 4S (Bluetooth on, Wi-Fi on, Location Services on, Push notifications on, Screen set to just under half brightness with Auto Adjust on)

  • Elite Pro, CMSS-3D not working and other issues after driver update

    DElite Pro, CMSS-3D not working and other issues after driver update <font face="arial,helvetica,sans-serif" size="4">Elite Pro CMSS-3D control (on I/O console)no longer controls CMSS-3D.
    The only time it works is if the original drivers are installed from the installation CD.
    ANY other drivers stop the control on the Elite Pro I/O console from having any effect on CMSS-3D.
    Also at one time when I cotrolled volume, CMSS-3D(original drivers), EAX and Crystalizer from the Elite Pro I/O controls then I had on screen display of said control that was being moved(on I/O console).
    Now regardless of what drivers are installed, there?are no longer any on screen indicators.
    The indicators looked like the ones that show when using the remote controller.
    Anyone have any ideas?

    Hello friends, if any body have problem with "Creative Sound Blaster X-Fi series Driver 2.8.003" then you can download previews "Creative Sound Blaster X-Fi series Driver 2.8.0008" from above direct Links :
    http://rapidshare.com/files/252388832/__Creative_Sound_Blaster_X-Fi_series_Driver_2.8.0008__.part0.rar
    http://rapidshare.com/files/25239047/__Creative_Sound_Blaster_X-Fi_series_Driver_2.8.0008__.part02.rar
    http://rapidshare.com/files/252397989/__Creative_Sound_Blaster_X-Fi_series_Driver_2.8.0008__.part03.rar
    http://rapidshare.com/files/252397990/__Creative_Sound_Blaster_X-Fi_series_Driver_2.8.0008__.part04.rar
    http://rapidshare.com/files/25239799/__Creative_Sound_Blaster_X-Fi_series_Driver_2.8.0008__.part05.rar
    http://rapidshare.com/files/25240785/__Creative_Sound_Blaster_X-Fi_series_Driver_2.8.0008__.part06.rar
    http://rapidshare.com/files/25240787/__Creative_Sound_Blaster_X-Fi_series_Driver_2.8.0008__.part07.rar
    http://rapidshare.com/files/252405003/__Creative_Sound_Blaster_X-Fi_series_Driver_2.8.0008__.part08.rar
    http://rapidshare.com/files/252408540/__Creative_Sound_Blaster_X-Fi_series_Driver_2.8.0008__.part09.rar
    http://rapidshare.com/files/252408542/__Creative_Sound_Blaster_X-Fi_series_Driver_2.8.0008__.part0.rar
    http://rapidshare.com/files/2524409/__Creative_Sound_Blaster_X-Fi_series_Driver_2.8.0008__.part.rar
    http://rapidshare.com/files/25244020/__Creative_Sound_Blaster_X-Fi_series_Driver_2.8.0008__.part2.rar
    http://rapidshare.com/files/2524402/__Creative_Sound_Blaster_X-Fi_series_Driver_2.8.0008__.part3.rar
    http://rapidshare.com/files/25244022/[email protected]7.254.6.0

  • Tell me what is ******* going on!!!????! The time and date issues!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Every times I went to Apple store, the phone automatically works good time, but when I came back, my phone is working very slow with wrong time!

    The time and date issues!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Every times I went to Apple store, the phone automatically works good time, but when I came back, my phone is working very slow with wrong time!
    I want to get a new iPhone to replace this defective phone. I am gonna be crazzzzzzzyyyyyyyy with anger,!!!,!,,,!  I takes2 hours to go to Regent street apple stores for three times!!!!!. It is a lot of transport fees !
    PLz tell me why! How to deal with it !

    Unless it's confirmed officially that your phone is defective, then you can ask for a replacement. Or you have to live with you. However you can trade it for a new one if you don't care the price drop.

Maybe you are looking for