Lookup and ping different after DNS flush ...

Could somebody help me here please...
<code>
macbook-2:~ steve$ dscacheutil -flushcache
macbook-2:~ steve$ dig www.stephan-zehrer.de
; <<>> DiG 9.4.3-P1 <<>> www.stephan-zehrer.de
;; QUESTION SECTION:
;www.stephan-zehrer.de. IN A
;; ANSWER SECTION:
www.stephan-zehrer.de. 85315 IN CNAME ghs.google.com.
ghs.google.com. 2375 IN CNAME ghs.l.google.com.
ghs.l.google.com. 284 IN A 74.125.43.121
macbook-2:~ steve$ ping www.stephan-zehrer.de
PING www.stephan-zehrer.de (84.38.66.166): 56 data bytes
64 bytes from 84.38.66.166: icmp_seq=0 ttl=55 time=24.970 ms
</code>
some comments:
I updated yesterday the DNS entries for this domain (to google site). Today I still see the old page in Safari,Firefox and Chrome (Beta) on my Mac (which run on my server with the ip 84.38.66.166)
e.g. in Windows 7 in a Fusion VM I see the new page.
I only found some hints about flush the DNS cache but as you see it did not help.
Is there a problem with my DNS setup or an other thing I missed?
THX
Stephan

Hi Stephan
DNS looks good, as far as I can tell. You need to tell Google (blogspot, I assume?) that it has to serve the respective page when asked for www.stephan-zehrer.de via CNAME. But I bet you did that, as I see 74.125.77.121 answering when opening the page in Firefox (using a nifty little plugin called DND Domain Details).
The flushcache command is also correct... Do you use a proxy from where you try to access your page? A lot of universities do that, so you might want to talk to the local system administrator and ask him when he thinks the proxy refreshes the page.

Similar Messages

  • AIR and Flex differed about DNS Resolver?

    It is an interesting problem.
    The code is running well in Flex, it can send and get data from the server. but fail in the AIR(IO ERROR).
                import flash.events.*;
                import flash.net.*;
                private function initPanel():void
                    var stream:URLStream = new URLStream();
                    var req:URLRequest = new URLRequest();
                    var temp:URLVariables = new URLVariables();
                    temp.type = 1;
                    temp.wd = "125a100a125a101a";
                    req.url = "http://hw.baidu.com";
                    req.method = "POST";
                    req.data = temp;
                    stream.load(req);
    Tested in: Win2003, Flex builder 4.0.1, Flash Player(WIN 10,1,53,64)

    Hi Richard,
    First of all, welcome to the AIR / Flex community.
    Secondly, learning Flex is easy. Start off with the "Flex in
    a week" video training (
    http://www.adobe.com/devnet/flex/videotraining/).
    In general,
    http://www.adobe.com/devnet/air/
    and
    http://www.adobe.com/devnet/flex/
    are great resources.
    If you have any issues, use
    http://community.adobe.com/ion/search.html
    to search for material. Still no luck, post here and we'll
    definitely help you out.
    P.S: You can even build AIR apps from Flash (
    http://www.adobe.com/devnet/air/flash/)

  • TC7.3.0 codec fails after reset and power cycle - failed: dns lookup failed (CUCM registered)

    Have a couple of codec's in the lab here that will work sometimes, and sometimes won't. They're running the latest 7.3.0 code and registering to CUCM 10.5.1SU1.  I've tried factory resetting them and get the same result.  I've manually configured the CUCM provisioning address in the system, and it immediately pulls down the correct SIP URI.  Sometimes power cycling the unit will allow it to register.  I have DNS running in this lab, A records created for all relevant hosts. 
    Anybody seen this before?

    This was for two C20's.  I think I found the issue. About 1 out of every 3 reset/power cycles they would work the rest they would not.
    Basically, I was using DHCP to assign IP, but manually assigning DNS.  You are able to do this on most machines, but the way the Codec handles this is different. It simply appends your manual DNS configuration, including the DNS domain, to the list obtained from DHCP.  In a packet capture I was able to see where it would query all 3 DNS servers (1 manual 2 from DHCP) and it would query based on my manual domain and the DHCP domain.  It appears to round-robin the response it uses, as all DNS servers responded in one fashion or another, it just picked one to listen to.  In this manner, it had about a 33% chance of picking the correct response.
    After statically assigning the IP address, the problem went away as the only DNS server was the one manually assigned.
    I take this all with a grain of salt though, as our internal team is using the TC7.2.1 code and they get the DNS issue every once in a while regardless of the DHCP/DNS configuration.  There may be more to this, but I can say with certainty that using DHCP and manual DNS configuration at the same time is not recommended.

  • Hi, every time i try downloading ios5 it reaches 100% and then the connection times out and nothing happens after that; though the internet connection is fine as i can access other sites etc. what could be the problem?i tried using 2 different modems.

    Hi, every time i try downloading ios5 it reaches 100% and then the connection times out and nothing happens after that; though the internet connection is fine as i can access other sites etc. what could be the problem?i tried using 2 different modems. Where can i download the ios5 from as my itunes is on my desktop which uses windows xp. Please help

    Download iOS 5.1
    iOS 5.1 (build 9B176) is compatible with iPad 1, iPad 2, iPhone 3GS, iPhone 4, iPhone 4S, iPod touch 3rd & 4th gen, and iPad 3. Additional builds are available for Apple TV 2 and Apple TV 3. The below download links are all direct downloads of iOS 5.1 from Apple.
    iPad 1
    iPad 2 Wi-Fi
    iPad 2 GSM (AT&T)
    iPad 2 CDMA (Verizon)
    iPad 2,4
    iPhone 3GS
    iPhone 4 GSM (AT&T)
    iPhone 4 CDMA (Verizon)
    iPhone 4S
    iPod touch 3G
    iPod touch 4G
    iPad 3 Wi-Fi
    iPad 3 GSM
    iPad 3 CDMA
    Apple TV 2 (9B179b1)
    Apple TV 3 (9B179b1)
    Source: http://osxdaily.com/2012/03/07/ios-5-1-download/

  • Linux RMI lookup takes too long when DNS is not available

    I am running Java 6 on Linux and ran into the following problem (please bear with me, there is a lot of background info before the actual question). I have a Java program that uses RMI for IPC. The server binds to localhost and clients lookup on localhost. The following are code snippets for my server and client.
    // Server binding code
    registry = LocateRegistry.createRegistry(port);
    registry.rebind("SERVICE", new ServiceImpl());
    // Client lookup code
    Naming.lookup("rmi://localhost:" + port + "/SERVICE");As long as DNS works, this code runs just fine. It takes ~0.3s for the server to bind and ~0.4s for the client to lookup. If DNS is not available, it takes ~40s for the server to bind and ~60s for the client to lookup! The times for lookup do not change if I use "127.0.0.1" instead of "localhost".
    I have localhost defined in my /etc/hosts file and my /etc/nsswitch.conf file specifies that host lookups should use files before nameservers. By commenting out the localhost value in the /etc/hosts file, I have determined that eventually the value in /etc/hosts is used if needed (the server bind fails if DNS is not available and localhost is commented out).
    If the network goes down, someone messes up the /etc/resolv.conf file, or our nameservers go down, RMI binds and lookups for something as easy to resolve as localhost takes way too long.
    So my question boils down to: Is there any way I can bind and lookup RMI servers without using DNS or by using DNS after /etc/hosts lookup fails?

    I turned on logging. You can see here that when DNS is working everything runs fine.
    Nov 19, 2007 5:14:12 PM sun.rmi.transport.tcp.TCPTransport$ConnectionHandler run0
    FINER: RMI TCP Connection(10)-127.0.0.1: (port 1234) client using localhost:0
    Nov 19, 2007 5:14:12 PM sun.rmi.transport.tcp.TCPTransport handleMessages
    FINE: RMI TCP Connection(10)-127.0.0.1: (port 1234) op = 80
    Nov 19, 2007 5:14:12 PM sun.rmi.transport.StreamRemoteCall getInputStream
    FINER: RMI TCP Connection(10)-127.0.0.1: getting input stream
    Nov 19, 2007 5:14:12 PM sun.rmi.transport.Transport serviceCall
    FINER: RMI TCP Connection(10)-127.0.0.1: call dispatcher
    Nov 19, 2007 5:14:12 PM sun.rmi.server.UnicastServerRef logCall
    FINER: RMI TCP Connection(10)-127.0.0.1: [127.0.0.1: sun.rmi.registry.RegistryImpl[0:0:0, 0]: java.rmi.Remote lookup(java.lang.String)]
    Nov 19, 2007 5:14:12 PM sun.rmi.transport.StreamRemoteCall getOutputStream
    FINER: RMI TCP Connection(10)-127.0.0.1: getting output stream
    Nov 19, 2007 5:14:12 PM sun.rmi.transport.tcp.TCPTransport$ConnectionHandler run0
    FINE: RMI TCP Connection(11)-127.0.0.1: accepted socket from [127.0.0.1:37084]When DNS is not working, there is a 15 second timeout and 5 seconds to reconnect.
    Nov 19, 2007 5:16:03 PM sun.rmi.transport.tcp.TCPTransport$ConnectionHandler run0
    FINE: RMI TCP Connection(12)-127.0.0.1: accepted socket from [127.0.0.1:57328]
    Nov 19, 2007 5:16:03 PM sun.rmi.transport.tcp.TCPTransport$ConnectionHandler run0
    FINER: RMI TCP Connection(12)-127.0.0.1: (port 1234) suggesting 127.0.0.1:57328
    Nov 19, 2007 5:16:03 PM sun.rmi.transport.tcp.TCPTransport$ConnectionHandler run0
    FINER: RMI TCP Connection(12)-127.0.0.1: (port 1234) client using localhost:0
    Nov 19, 2007 5:16:03 PM sun.rmi.transport.tcp.TCPTransport handleMessages
    FINE: RMI TCP Connection(12)-127.0.0.1: (port 1234) op = 80
    Nov 19, 2007 5:16:03 PM sun.rmi.transport.StreamRemoteCall getInputStream
    FINER: RMI TCP Connection(12)-127.0.0.1: getting input stream
    Nov 19, 2007 5:16:03 PM sun.rmi.transport.Transport serviceCall
    FINER: RMI TCP Connection(12)-127.0.0.1: call dispatcher
    Nov 19, 2007 5:16:03 PM sun.rmi.server.UnicastServerRef logCall
    FINER: RMI TCP Connection(12)-127.0.0.1: [127.0.0.1: sun.rmi.registry.RegistryImpl[0:0:0, 0]: java.rmi.Remote lookup(java.lang.String)]
    Nov 19, 2007 5:16:03 PM sun.rmi.transport.StreamRemoteCall getOutputStream
    FINER: RMI TCP Connection(12)-127.0.0.1: getting output stream
    Nov 19, 2007 5:16:18 PM sun.rmi.transport.tcp.TCPTransport handleMessages
    FINE: RMI TCP Connection(12)-127.0.0.1: (port 1234) connection closed
    Nov 19, 2007 5:16:18 PM sun.rmi.transport.tcp.TCPConnection close
    FINE: RMI TCP Connection(12)-127.0.0.1: close connection
    Nov 19, 2007 5:16:23 PM sun.rmi.transport.tcp.TCPTransport$ConnectionHandler run0
    FINE: RMI TCP Connection(13)-127.0.0.1: accepted socket from [127.0.0.1:37087]I tried specifying different timeout values using different RMI properties. Nothing seems to affect it except setting sun.rmi.transport.tcp.readTimeout to a value less than 15 seconds (which is not practical).
    Any ideas why getting the output stream would timeout?

  • Cisco Jabber for Mac - Directory Lookup and Contact Fields

    Hello,
    After having issues myself with Cisco Jabber for Mac 9.2 specifically with Active Directory lookups not working, or contact information not populating (and therefore not being able to call users from the contact list as no telephone information exists) I am including a sample jabber-config.xml file that works for me.
    Please note: there are many different ways to configure this. What I will be showing is the method that works for me and my deployment, which is pretty standard.
    As always and as a disclaimer, once again, this is what has worked for my deployment scenario. Always keep backups of your configuration files, and always be mindful of anything you have configured already, especially in the jabber-config.xml file.
    Background
    My deployment is based on CUCM 9, with 1 publisher and 2 subscribers. I also have a CUCM IM & Presence 9.0 server. This assumes that you have already configured your deployment and Jabber is functioning already, albeit with the aforementioned issues.
    As for Active Directory, my deployment will be based on Windows 2008 R2 Domain Controllers running in native 2008 mode. For this example, we will be searching directly against one of the DCs with a Global Catalogue role. Please be aware that in large deployments you will have to plan accordingly with regards to lookup traffic from Jabber clients to the DCs.
    Also, as of Cisco Jabber for Mac 9, the client no longer can search via the CUCM internal directory (which may be made of local end users, Active Directory synced users, or a mix of both) and this must be done via a LDAP mechanism.
    Scenario
    In this deployment scenario, Cisco Jabber for Windows is working properly - you can search and add people from Active Directory, and contacts in your contact list have all the appropriate fields populated from Active Directory. However, when trying the same with Jabber for Mac, Jabber for iPhone or Jabber for iPad you notice that you cannot perform a directory lookup, and if you add people directly (for example, [email protected]) the user only has the IM field populated. No telephone, email or additional information is displayed.
    Solution
    Whereas Cisco Jabber for Windows uses the EDI mechanism (native Windows), whereby when running from a computer that is on the domain (or in the event that you are search for contacts in another Active Directory domain where a domain trust exists) , Jabber for Mac / iPhone / iPad uses the BDI mechanism.
    In this case, you will need to provision a jabber-config.xml file that you will upload to your TFTP server (or Publisher) that will be "downloaded" by your Jabber for Mac client and also used by the iPhone and iPad client. You can configure many options in the jabber-config.xml file, but for this example we will place just the information that we need to order for these clients to request and display Active Directory information.
    Please note that the configuration may vary depending on your deployment, but at the very least we will be:
    - Configuring a DC where we will perform the lookup.
    - Configure credentials that will be used to perform the lookup. This will be an Active Directory account that has read rights on the Active Directory domain. Please note that these credentials are saved in plain text in the file, so ensure that the account that you will be using is not privileged.
    - Configure the server port that we will be using to perform the lookup.
    - Configure the Search Base. This is basically where we want the directory lookup to happen. You can either choose for this lookup to start at the "base" of the domain (and therefore the search will iterate through all the user accounts and and OUs below the root base) or define a specific OU where you want to search.
    Caution!
    - There is a current limitation with Cisco Jabber for Mac whereby you can only have 1 search base configured. Please keep this in mind if, like me, you have multiple OUs (like an OU for each company in your organization) and under these OUs you have sub OUs as a user account container.
    - If using the top level search base, unless you specify a filter, you will potentially be able to search for all user accounts in the domain. You will need to configure the <BDIBaseFilter> parameter if you want to fine tune your search ability.
    Steps
    These are the steps I have followed. Other steps or considerations may vary.
    - Log in to your TFTP server and download the jabber-config.xml file and keep it as a backup. If you are already using the jabber-config.xml file for other purposes, do not worry - you can add your BDI information parameters inside.
    - Remove the jabber-config.xml file
    - Edit the jabber-config.xml file and configure thus:
    <?xml version="1.0" encoding="UTF-8"?>
    <config version="1.0">
        <Directory>
            <DirectoryServerType>BDI</DirectoryServerType>
            <BDILDAPServerType>AD</BDILDAPServerType>
            <BDIPrimaryServerName>DOMAIN CONTROLLER IP ADDRESS</BDIPrimaryServerName>
            <BDIPresenceDomain>YOUR PRESENCE DOMAIN</BDIPresenceDomain>
            <BDIServerPort1>3268</BDIServerPort1>
            <BDISearchBase1>YOUR SEARCH BASE</BDISearchBase1>
            <BDIConnectionUsername>[email protected]</BDIConnectionUsername>
            <BDIConnectionPassword>PASSWORD</BDIConnectionPassword>
            <BDIEnableTLS>0</BDIEnableTLS>
        </Directory>
    </config>
    For example, let´s assume the following:
    - Domain controller IP address is 10.1.1.2 .
    - Your presence domain is test.local .
    - Your search base will be test.local using the top level of the domain.
    - Your username with which you will be doing your searches is called walt . Usually you can either identify walt as test.local\walt or [email protected] . It is always best, in these sort of scenarios, to use the UPN convention so we will be configuring a [email protected] .
    - The password is the Active Directory password for the account walt .
    - I have disabled TLS in my case. There are issues with the Jabber for Mac client when using other security methods.
    <?xml version="1.0" encoding="UTF-8"?>
    <config version="1.0">
        <Directory>
            <DirectoryServerType>BDI</DirectoryServerType>
            <BDILDAPServerType>AD</BDILDAPServerType>
            <BDIPrimaryServerName>10.1.1.2</BDIPrimaryServerName>
            <BDIPresenceDomain>test.local</BDIPresenceDomain>
            <BDIServerPort1>3268</BDIServerPort1>
            <BDISearchBase1>DC=test,DC=local</BDISearchBase1>
            <BDIConnectionUsername>[email protected]</BDIConnectionUsername>
            <BDIConnectionPassword>walt01!</BDIConnectionPassword>
            <BDIEnableTLS>0</BDIEnableTLS>
        </Directory>
    </config>
    One you have configured the jabber-config.xml file, you will now need to upload it to you TFTP server. Once uploaded, you will need to restart the Cisco TFTP service. Again, my TFTP server is on my CUCM publisher, so:
    - I go to Cisco Unified OS Administration on my Publisher server, TFTP File Management and I upload jabber-config.xml to / directory
    - I then go to Cisco Unified Serviceability on my Publisher server, I locate the Cisco TFTP service and I restart the service
    Once this is done, you can figure up your Jabber for Mac client. As a test, on your Mac (using Terminal) go to:
    /Users/username/Library/Application Support/Cisco/Unified Communications/Jabber/Config
    In here you will see several files, but what we want to see is jabber-config.xml . As soon as you start the Jabber for Mac client and log in, the jabber-config.xml file will download from your TFTP server and get saved here. When you see it appear, just type in your terminal window more jabber-config.xml and make sure that the output is the same as the xml file you created.
    From there, try doing directory search. If you have previously added contacts and they still lack attribute information, you will need to remove them (sometimes it will not refresh properly) and add them again from the directory.
    I will be updating this guide and ammending anything that is incorrect, but this is meant to be a quick checklist and steps to get this, at least in the most very basic version, up and running for Jabber for Mac.

    Hello, 
    Thanks for this post! It works, I can do lookup and also I can add found contact to contact list and get information about contact from LDAP.
    One more question: - I can't get all information about contact. I don't get e.c mobile phone number and more others attributes. I have tried to expand your file as follows:
    <?xml version="1.0" encoding="UTF-8"?>
    <config version="1.0">
        <Directory>
            <DirectoryServerType>BDI</DirectoryServerType>
            <BDILDAPServerType>AD</BDILDAPServerType>
            <BDIPrimaryServerName>IP of AD</BDIPrimaryServerName>
            <BDIPresenceDomain>Presence Domain</BDIPresenceDomain>
            <BDIServerPort1>3268</BDIServerPort1>
            <BDISearchBase1> Search Base</BDISearchBase1>
            <BDIConnectionUsername>User</BDIConnectionUsername>
            <BDIConnectionPassword>Password</BDIConnectionPassword>
            <BDIEnableTLS>0</BDIEnableTLS>
            <BDISipUri>msRTCSIP-PrimaryUserAddress</BDISipUri>
            <BDIPhotoSource>thumbnailPhoto</BDIPhotoSource>
            <BDIBusinessPhone>telephoneNumber</BDIBusinessPhone>
            <BDIMobilePhone>mobile</BDIMobilePhone>
            <BDIHomePhone>homePhone</BDIHomePhone>
            <BDIOtherPhone>otherTelephone</BDIOtherPhone>
            <BDITitle>title</BDITitle>
            <BDICompanyName>company</BDICompanyName>
            <BDILocation>co</BDILocation>
            <BDIPostalCode>postalCode</BDIPostalCode>
            <BDICity>l</BDICity>
            <BDIState>st</BDIState>
            <BDIStreetAddress>streetAddress</BDIStreetAddress>
        </Directory>
    </config>
    But it didn't help.
    When I capture lookup via Wireshark, I can see that Jabbers sends search request with bunch of attributes, but from LDAP answer contains only 8 attributes. (see attached screenshots)

  • Used Mavericks DNS Flush Commands with 10.8.5

    Mid 2011 Mac Book Air OS 10.8.5. In Terminal, I mistakenly used Maverick's DNS Flush commands dscacheutil -flushcache; sudo killall -HUP mDNSResponder.
    I note that 10.8.5 only requires the second command.
    Any problems with this blunder? Tks.

    Lex,
    Hmm, flushing DNS cache. With Safari on all of my Mac devices, I started having difficulty, initially on my iPad, accessing Zite and an internet radio, Tunein Radio Pro. After googling the error message "....cannot find the server", I put in the two 208....DNS numbers. I will now add the others you suggest. at some stage I read an article about flushing DNS caches, it suggesting using the Apple Store app. It seemed a good idea... The app is https://itunes.apple.com/us/app/clean-dns-cache-english/id628459184?mt=12. As a precaution I have loaded it only on my Mac Book Air, which is due for a clean install of Mavericks 10.9.2 when it is finalised. The app had a good review, and it would have been nice to have used it instead of using terminal, but I take your point that DNS caches are best left alone. Particularly for tyros! I will delete the app in due course. Thank you for the time and thought you have put in.
    Cheers
    Ken
    Lower Hutt NZ
    On 21/02/2014, at 1:28, Apple Support Communities Updates <[email protected]> wrote:
    208.67.222.222

  • Cisco 3750 ping failures after stack upgrade

    I just updated my 4 stack of 3750X switches from 12.x IOS to 15.0.2 IOS. Only 2 of them updated correctly the first time, I had to manually update to the other 2. After getting all of them upgrade I restarted the entire stack.
    After that I cannot get PCs not on my default VLAN to talk to their DHCP servers or ping anywhere in the network. I get a "PING: transmit failed. General failure". I can however, ping into my default vlan from the switch and ping out to other locations from the switch.
    I've tried the following:
    Checking firewall status on several (WIN 7) pc's, it's off
    Changing ports on switch (no change)
    Restarting the PC (no change)
    Release/renew ipconfig (no change)
    flushdns (no change)
    clear ARP table on switch
    set un-set spanning-tree portfast (no change)
    check interface status (up and up)
    check vlan interface status (up and up)
    changed vlans (no change)
    checked VLAN help addresses (still there)
    Any help at this point is appreciated as my network is entirely down right now.

    I can set my laptop statically to a VLAN address, and I can ping out, get to the internet, ping between VLANs, etc. But if I just set a port (or leave it in the default VLAN) it will give me the “PING: transmit failed. General failure.” DHCP requests still aren’t getting fulfilled and even pings won’t go through if there’s not a statically set address. Nothing changed on my server configs and I even restarted my DHCP servers after encountered this problem. My guess is this is a new feature that’s turned on by default in the new IOS that needs to be disabled. Any help is appreciated.

  • Keyboard and trackpad freeze after being idle for a few minutes

    I have a early 2008 MBP and just today the keyboard and trackpad freeze after not using it for a few minutes.  I was at work when it happened.  I plugged it in and started doing something else and a few minutes later came back and i couldn't move the mouse or do anything with the keyboard, but processes were still running.  For example, I have a fan speed app that sits in the toolbar, and it was still showing current fan speed.  So I restarted it, and it did it again.  So the next time it happened, I closed the lid and opened it up and it fixed it.  It's happened several times now after a few minutes of non use and I just close the lid and it fixes it.  Also, there was a period when I was using my computer for a couple of hours non stop and it didn't have a problem.  Only when I'm not touching the keyboard or trackpad does it do it.  since this keeps happening i have verified the disk in disk utility, done a hardware reset with cmd+opt+p+r, ran through system profiler to see if there were any problems with no results, and it still does it.  Anyone have any ideas?
    It should be noted that not only does the battery not work for more than about 2 minutes, the left I/O board appears to be dying.  The power chord takes a considerable amount of wiggling and adjusting before it finds a place where it will actually charge. The audio out and the USB on that side are the same way. So I am aware of that problem. Also, I have had to take out the right side fan multiple times and disassemble and oil the bearing because it's going bad, which requires taking the top plate off, but I haven't had to do that for over 6 months. In my mind if the problem was caused by taking the top plate off, that would fry the entire top plate, which happened once when a technitian at a local company took the computer apart for a waranty repair.  All of these problems considered, I don't think they would have anything to do with the fact that the mouse and keyboard suddenly won't work after about 5-10 minutes of sitting idle. I have done nothing different since yesterday that would explain why it does this. 
    Also, I can't do anything with the install disk because the CD drive is dead.  But that's mostly because it was a piece of garbage to begin with.
    Any Ideas would be helpful.

    After doing some more digging I was watching processes in Activity Monitor to see if I could see what process is failing.  I think the problem with with Chrome. It only happened when Chrome was open. And since then I reinstalled it and the problem has so far gone away.  So, I think the problems is solved. 

  • TS3581 iPhone 4S - The XCarlink iPhone/iPod accessory for Mazda Bose autochangers is functioning differently after iOS 5.1. The Shuffle function no longer works. Has anyone else experienced this problem?

    The XCarlink iPhone/iPod accessory for Mazda Bose autochangers is functioning differently after iOS 5.1. The Shuffle function no longer works and it plays Albums or Genius Playlisys only (not self-made playlists). Has anyone else experienced this problem?
    Previously, the iPod function enabled one to see the track that was playing and control playback (such as repeat or shuffle) via the iPhone screen. Now all I see is an "Accessory Connected" message.

    Somewhere in there, is there a question for us, your fellow users in these user to user support forums?

  • My iPod will not charge at all it will when it's off it will power on and charge to a certain pint then will stop and no longer charge what is its problem I've tried 3 cords and three different outlets and also in my computer! What is wrong with it?

    My iPod will not charge at all it will when it's off it will power on and charge to a certain pint then will stop and no longer charge what is its problem I've tried 3 cords and three different outlets and also in my computer! What is wrong with it?it won't charge when it's powered on only when it s off then it turns on and stops charging?? What's wrong with it ad how much is a Genius Bar appt at apple stores??

    Not Charge
    - See:      
    iPod touch: Hardware troubleshooting
    - Try another cable. Some 5G iPods were shipped with Lightning cable that were either initially defective or failed after short use.
    - Try another charging source
    - Inspect the dock connector on the iPod for bent or missing contacts, foreign material, corroded contacts, broken, missing or cracked plastic.
    - Make an appointment at the Genius Bar of an Apple store.
      Apple Retail Store - Genius Bar 

  • Key Controls on iTunes Different After Getting Windows 7?

    Hello! I just got a new laptop yesterday and it has Windows 7 on it. This is my first time using Windows 7 so I'm still getting used to it, and I have already run into a few problems with iTunes since I need a 64 bit version for it to run properly on my laptop. I overcame these problems and now I am back to using iTunes as I did using my old Windows XP OS. The only thing that really bothers me is that when I try to use my arrow keys to try and play a song from the beginning in "Repeat Item" mode it will not do anything except make the song pause for a second then continue playing from the current position. I have another problem when using my enter key or just clicking on a song, instead of it starting from the beginning it starts from the last place it left off when I started listening to a different song. I know these problems are small and trivial, but after a while it has really gotten on my nerves when trying to edit songs. Any type of help would be useful, thanks!
    And also, I can't switch videos into a different type using this iTunes, like making a video on my music playlist into a TV Show and having it show up in that playlist. I never had to do this with my other computer but I do now because I had to transfer all of my media onto this new laptop from my iPOD itself, so this may just be a feature they removed as they made newer versions of iTunes, but it's just another annoyance I noticed while trying to do it.

    Sorry, must have been the crackpipe I smoked last night! LOL
    You won't see anything in the Application Support --> Bootcamp folder unless you have previously downloaded the Windows Support Software. Good find.
    ADDENDUM STEP:
    This step should be placed between 9-10.
    Open Bootcamp Assistant. Uncheck everything BUT, "DOWNLOAD THE LATEST WINDOWS SUPPORT SOFTWARE FROM APPLE". You will be prompted to burn the image to a CD/DVD or save to a USB Key. Save the image to a USB key. This will format your USB key properly in preparation for the files. The download commences and if you're lucky, the files will simply be saved to your USB key without having to manually copy them over to the key using the steps above.
    IMPORTANT - Even if the support software hangs when its being saved to the USB key, you should now be able to navigate to the directory and see the image. Follow the steps above.
    Apologies for missing this.
    Best,
    WBN

  • HT2292 Can Access downloaded songs but signing in to iTunes Store makes loading bar scroll but no entry and times out after awhile :)

    P.C. can't Access itunes store when logging in. Yet can open up and play dowloaded songs and previous converted C.D.s. Running Windows 7 home O.S.Also iPhone 4 is not recognised when connected to iTunes. Have Unistalled and Reinstalled iTunes a number of times and does not resolve the issues.uninstalled USB drivers and reinstalled still does not work

    I am running iTunes on Windows Vista. Can access Store, cannot buy. Same connection timed out error. Tried everything Apple suggested including router reset, router bypass, firewall exception, dns flush, what have you...doesnt work. Guess going to try early in the AM...IDEAS?????

  • Why are my edited jpegs different after export?

    I have a really strange problem that I can't seem to find the answer to anywhere else on the web
    It's kind of difficult to understand but I will explain as best I can. So my friend and I have just started a photography business and things are going great. I use a Canon Rebel T3i with either a standard, portrait or telephoto lens. I use Lightroom 5 and after I finish editing my photos, I export them and they look lovely in my folder (I have an Asus laptop and Windows 8 if that helps) however when I upload them to websites like Pixieset or Facebook, the quality of the photo looks nothing like the quality I had edited as. The effects, presets and any other adjustments made to my exported photo become extremely dull and it was like the edit was never done. Even at the highest quality, my photos still look nothing like I edited them!
    And what's weirder? My friend uses the exact same program, has the exact same OS and also uses Facebook and Pixieset, along with very similar presets effects etc. and her photos look exactly like they have been edited. I don't understand what's up with that!!! And of course just my luck I am unable to insert a screen capture to show you bc it is for some reason not working. But my export settings are JPEG, sRGB, he quality is 100% and the res is 300 ppi and all photos are very cool toned and dull. I have tried different resolutions, different qualities and even different image formats and every single time I still had the exact same problem Very frustrating!! please offer any advice you can, I have tried everything!
    Thank you in advance!

    I also have an ASUS laptop running Windows-8 (13") but I only use the laptop for offloading memory cards while on the road so I will need to figure a way to test this to see if it is something in the OS, the ASUS hardware or whatever. I will be heading off for the weekend so I won't be able to do this until next week but the problem is intriguing.
    You said you did "another screen calibration"; was this done with hardware/software using a calorimeter or done visually using software? I am assuming you used hardware but wanted to be sure. Also, are you starting with a RAW image, doing your edits and then exporting the RAW image as a JPEG or did you start with a JPEG? In theory, it shouldn't matter but Lightroom does handle JPEG and RAW images slightly differently. Lightroom 5 is much better at handling JPEG edits non destructively than previous versions but the changes should have been baked into the files upon export.
    I am not familiar with Pixieset nor am I a Facebook user but, from what I understand about how Facebook operates, there is some compression as well as stripping of metadata from the file when you post it. This shouldn't matter since the edits should have been baked into the JPEG already but I have been in IT long enough to understand that sometimes, the smallest change can have major unexpected consequences. From what you stated, this should be working but it's not. I would like to see if I can duplicate it so any additional information about your processes/workflow would be helpful.

  • About virtual channel in different device and/or different type channel

    Hi all,
      I am looking for a way to write to several analog channels at the same time. In my code, I didnt' pay much attention to that, I just have them placed in the the same frame in the flat sequence such that they might be started to write simultaneously. However, sometimes they might not working perfectly. I am reading something on DAQmx and I found that there is something call virtual channel so I have put more than 1 channel into a unit (called virtual cahnnel), so I can write something to it at the same time. Here are my question
    1) what's the different between virtual channel and channel group? If I write a array of 3 elements to a channel group (consists of dev1/ao1, dev1/ao2 and dev1/ao5),  am I writing to channel group or virtual channel?
    2) can I bind different channels from different devices to form a virtual channel, e.g. dev0/ao0 dev1/ao0 dev2/ao0?
    3) can I bind different type of channel to form a virtual channel, e.g. dev0/ao0, dev0/port0/line0?
    4) last question is about synchronization on writing to a virtual channel (or channel group?) Last say I have a pulse train each pulse is separated in time by 1.2ms and total time is 122.4ms. The pulse train will be sent to dev0/ao3, and at 12ms after start send very first pulse of the train, I need to write two analog signal to dev1/ao1 and dev1/ao5. In my current code, create a flat sequence, start the task for sending the train in the first frame, put delay in second frame and delay for 12ms, write dev1/ao1 and dev1/ao5 in the third frame. For some times, this gives me acceptable timing but not always. I wonder how does it help to use virtual channel?
    In the similar situtation, what about if instead of writing to two analog channel, I write to one analog channel and one digital channel?
    Thanks.

    1) virtual channel is created per task and contains a collection of settings such as a name, a physical channel, input terminal connections, the type of measurement or generation, and can include scaling information.. A virtual group is specific to digital IO and has to deal with the way you read/write data off/to the port
    2) yes you can create a task with physical channels from multiple devices assuming they are comparable writes (ie all analog or all analog read, or all digital) but they will have the same channel characteristics (see answer above)
    3) no you cannot create a task that handle an AO and a DO from with in the same task
    4) if you created a task you are using a virtual channel. The only way to ensure timing is to use hardware timing (ie onboard sample clock of you DAQ card) otherwise the reads/writes are basically interrupts and you are at the mercy of the OS to service the interrupt request
    if you need more information please repost with more questions, include your DAQ hardware, and any code pictures to give us a better idea of what you are trying to accomplish and how you are going about it
    Applications/Systems/Test
    National Instruments | AWR Group

Maybe you are looking for

  • Problem with SOAP Adapter receiver not receiving the proper string

    Hi friends I have a very simple scenario as follows using SOAP Syncronous Call SENDING SCENARIO ================ ExternalClient --> SOAP ADAPTER --> XI -> RFC ADAPTER --> ZBAPI RECEIVING SCENARIO ================== ZBAPI  --> RFC ADAPTER   --> XI   

  • Running process integrator studio remotely

    Hi again -I have the following scenario.: My installation of Process Integrator is on a solaris server. To facilitate using the Studio application, I have packaged up the required jar files and am able to run the Process Integrator Studio Java Applic

  • What is a sd card used for on a GPS?

    I just got a garmin nuvi gps and would like to know what the sd card is used for? what size card do you think I should get ?

  • IPad 3 stuck in "Connect to iTunes" screen after attempting to update to iOS6.0

    Tried to update to iOS 6.0, and the iPad 3 is stuck on the "Connect to iTunes" screen.  After plugging it back in and connecting it, iTunes recognizes it, and sees it in Recovery mode. Nothing has worked so far.  I've tried: 1. connecting to another

  • Insert with overwrite(Plng Folder)

    Hi Friends, In planning folder, change mode level at varible selections, if u right click system prompts one context menu. In that Insert with overwrite  option is there? what is significance of this? thanks, RP