Server update 2.2 causes issues with Netinstall

After installing the 2.2 update, our server shows a pinwheel for long periods at the bottom of the Server pane, saying it is checking < fill in any one of the server processes > and when I try to make changes to the images , it doesn't make the changes and the edit image screen does not go back to the image list, unless you press Cancel rather than Done.  We rolled back to the previous server app and NetInstall worked again, but our Profile Manager could no longer read the profiles. I assume they got updated in some way, when Server 2.2 was installed and the previous version didn't know what to do. We reinstalled the 2.2 update and the Profile Manager now works again, but the NetInstall is broken.
If anyone has a fix for this, please let me know.

What I have found is that if you have a copy of the Server App on another drive someplace as a backup this will register for the App store to be upgraded if that folder is within the folders that Spotlight monitors.
Once I deleted my backup folder I no longer had this appear. If you do not want to delete it then remove it from Spotlight.

Similar Messages

  • Update of reader causes issue with web based content

    I have just downloaded the latest update for Adobe Reader x and I am now experiencing a problem when opening a pdf document from the internet.  I am now getting a message "before proceeding you must first launch adobe acrobat and accept the end user license agreement" which does not make sense.  When I click on the ok button nothing happens.  If I open the reader and then select the document it opens correctly.
    Can anyone provide some clue as to what the configuration setting is to turn off this "feature" please?

    I'm definitely not willing to re-install Photoshop, so I'm not going to try that whole procedure. But it is interesting to see some Acrobat entries in the registry alongside the Reader entries:
    [HKEY_CURRENT_USER\Software\Adobe\Adobe Acrobat\10.0\AVGeneral]
    "bLastExitNormal"=dword:00000001
    "bAppInitialized"=dword:00000001
    [HKEY_CURRENT_USER\Software\Adobe\Adobe Acrobat\10.0\AVGeneral\cTaskPanes]
    [HKEY_CURRENT_USER\Software\Adobe\Adobe Acrobat\10.0\AVGeneral\cTaskPanes\cBasicCommentPane]
    "bAllowMultipleExpandedPanels"=dword:00000001
     No Acrobat entries in HKEY_LOCAL_MACHINE\Software, so it is curious to see "AppInitialized" under my user account.
     According to http://www.appdeploy.com/messageboards/tm.asp?m=74131,
    To Disable Registration, I used this registry
    [HKEY_CURRENT_USER\Software\Adobe\Adobe Acrobat\10.0\AVGeneral]
    "bSerialized"=dword:00000001
    "bAppInitialized"=dword:00000001
    There is also a "bActivated" key whose DWORD value is x00000000
    Maybe I need the Activated key? On the other hand, at
    http://social.technet.microsoft.com/Forums/en-US/w7itproui/thread/4713fea0-043f-4cf0-8edd- aa6d737aaad2/
    there is a complete dump of a Win7 registry that doesn't have any of those Acrobat keys - but it is from Reader 9.0...

  • Has anyone received an update on apple tv issue with HD movies and what they are doing about it

    Has anyone received an update on apple tv issue with HD movies and what they are doing about it

    Whatever the rep told you, it is complete nonsense. There is clearly a problem at your end, the Apple TV 3 is capable of more than the Apple TV 2, and you clearly have the Apple TV 2 working perfectly. Since the Apple TV 2 is able to download from the Internet properly, then my suspicion would be your problem lies on your local network. Interference is a common problem on local networks.
    Interference can be caused by other networks in the neighbourhood or from household electrical items.
    You can download and install iStumbler (NetStumbler for windows users) to help you see which channels are used by neighbouring networks so that you can avoid them, but iStumbler will not see household items.
    Refer to your router manual for instructions on changing your wifi channel or adjusting your multicast rate.
    There are other types of problems that can affect networks, but this is by far the most common, hence worth mentioning first. Networks that have inherent issues can be seen to work differently with different versions of the same software. You might also try moving the Apple TV away from other electrical equipment.

  • MovieClip Filter Causing issues with EventListeners (mouseEvent.ROLL_OVER)

    Hello,
    I have been working on a flash photo gallery for the web. It loads thumbnails from an xml file into a loader which is then made the child of a movieclip.
    The thumbnails are animated and triggered with mouse events of ROLL_OVER and ROLL_OFF. I have this working, or appearing to, when the movieclip containing the loaded thumbnail has no filters applied to it.
    I want add a drop shadow on the ROLL_OVER event and remove the drop shadow on the ROLL_OFF event. I also have this working, however my problem arises when I mouse over the very edge of the movieclip. This cauese the ROLL_OVER and ROLL_OFF function to fire in rapid succession, creating a flashing dropshadow. This looks aweful and I really have no idea what would be causing this issue.
    Thanks in advance for any advice!
    Regards.

    Thanks for the reply.
    I also found it difficult to believe that the filter was causing issues with the roll over/out events. I will expand on the example code you provided so you get an idea of what I am trying to accomplish and where my issues arise.
    EDIT: I should add that the issue is only present when I tween AND add a filter. If I only add a filter or if I only tween I have no issues but the combination or adding a filter and tweening causes the OVER/OUT events to fire rapidly.
    //This code does not result in a flashing animation
    myClip.addEventListener(MouseEvent.ROLL_OVER, overClip);
    myClip.addEventListener(MouseEvent.ROLL_OUT, outClip);
    function overClip(e:MouseEvent):void
       myTween =  new Tween(myClip, "scaleX", Regular.easeOut, myClip.scaleX, 1.5 , 3, true);
       myTween =  new Tween(myClip, "scaleY", Regular.easeOut, myClip.scaleY, 1.5 , 3, true);
    function outClip(e:MouseEvent):void
       myTween =  new Tween(myClip, "scaleX", Regular.easeOut, myClip.scaleX, 1 , 3, true);
       myTween =  new Tween(myClip, "scaleY", Regular.easeOut, myClip.scaleY, 1 , 3, true);
    //However if i add these lines of code to add and remove a filter I can observe the flashing effect when the mouse is near the edge of the moveclip
    myClip.addEventListener(MouseEvent.ROLL_OVER, overClip);
    myClip.addEventListener(MouseEvent.ROLL_OUT, outClip);
    function overClip(e:MouseEvent):void
       myClip.filters = [myDropShadowFilter];
       myTween =  new Tween(myClip, "scaleX", Regular.easeOut, myClip.scaleX, 1.5 , 3, true);
       myTween =  new Tween(myClip, "scaleY", Regular.easeOut, myClip.scaleY, 1.5 , 3, true);
    function outClip(e:MouseEvent):void
       myClip.filters = [];
       myTween =  new Tween(myClip, "scaleX", Regular.easeOut, myClip.scaleX, 1 , 3, true);
       myTween =  new Tween(myClip, "scaleY", Regular.easeOut, myClip.scaleY, 1 , 3, true);
    Is there something obviously wrong with this approach to adding a filter/tweening? I am fairly new to flash.
    Thanks again!
    Message was edited by: Dafunkz

  • Upgraded to IO6, seems like the amount of system memory to run is higher, this causes issues with some Apps. I can't get SIRI to work because the amount of free system memory is not enough. how can I tell what is eating the system memory?

    Upgraded to IO6, seems like the amount of system memory to run is higher, this causes issues with some Apps. I can't get SIRI to work because the amount of free system memory is not enough. how can I tell what is eating the system memory?

    Upgraded to IO6, seems like the amount of system memory to run is higher, this causes issues with some Apps. I can't get SIRI to work because the amount of free system memory is not enough. how can I tell what is eating the system memory?

  • Reader causing issues with dropped underscores in courier new font

    When converting a microsoft word document in 2013 or 2007 to a PDF is causing issues with dropped underscores.  It only seems to happen in courier new.  For instance if I have _someCode, when converting this over to a PDF file I will sometimes see _someCode and sometimes I will see someCode.  If I open this file in a different pdf reader then it looks correct 100% of the time.  If I copy and paste into another application then the underscore shows.  This is a major issue for people putting code into a PDF document as underscores are important and courier new is what we often use.

    I love how quick you are to throw Microsoft under the bus.  Often it is their fault.  In this case I believe you are 100% wrong and absolutely short sighted to ignore this.  As I said in my original email, which you apparently missed, I have tried this in multiple PDF viewers and Adobe Reader is the ONLY reader that misses the underscores.  Foxit, PDF Exchange and Sumatra all render it perfectly.  Adobe reader missed 6 underscores in my document that has 18 underscores.  30% of the time in this document Adobe Reader makes the underscore invisible.  And if I switch the zoom to 100% instead of 148% (which is the default for me for some reason) then Adobe Reader misses 7 of them.  This doesnt occur in the other readers.  Blame Microsoft all you want but the simple fact is that Adobe Reader has issues reading courier new's underscores.  It needs to be fixed.

  • After the recent update I am having issues with Flash based games freezing and not responding.

    After the recent update I am having issues with flash based programs not running or loading correctly.  The programs will not load or take an extremely long time to load compared to jsut a few days ago.  This happens across the board on anything flash based.  Also, once they do load they will freeze, stop responding or need to be constantly refreshed to come back alive which is short lived at best.  I went thru the help and did all the file deleting, cache clearing, disabling hardware acceleration, removing then reinstalling flash, and even removing and reinstalling my browsers.  None of this has helped at all.  I am using Chrome and it is up to date and I checked my Flash player and it is up to date.  I am running windows 7 64bit.

    Here's what you're up against guys,
    Adobe writes the base code for Flash Player, and then hands it off to Google, who adapt it to a PPAPI plug-in (it's NPAPI when Adobe writes it). It's then "PepperFlash" and Google embeds it in their Chrome browser. While Google is pushing a "webwide" move to PPAPI Flash Content, a reinvention of the wheel so to speak, not everyone "got the memo", and Google is slowly making it so that PepperFlash will block NPAPI Flash content from running properly, and you have to disable PepperFlash to force the NPAPI plug-in to work, which sometimes fixes it, sometimes not. I have a feeling this is only going to get worse. HTML5 will eventually resolve the video end but game developers need to come up with something that won't require a plug-in.
    And to the first post:  Since PepperFlash is embedded in Chrome by Google, you can uninstall and reinstall Flash Player from here until your hard drive literally seizes up.... guess what? It has NO EFFECT at all on the PepperFlash plug-in in Chrome because it's a separate file in a separate folder and the uninstaller & installers don't have anything to do with it.

  • I have a 2012 Macbook Pro and the GPU is causing issues with Yosemite. How can I resolve this issue?

    I have a 2012 Macbook Pro and the GPU is causing issues with Yosemite. There are a number of issues I have run across:
    If I have four tabs open on Safari then I start to get a flickering on the screen from the GPU refreshing
    When I leave the computer alone for more than 20 mins the screen saver should start -- what happens is that the screen goes to black. When I move the cursor I do not get the login screen. I have to reboot
    FireFox Web browser will not run
    I get issues with the computer running very slowly
    I have already turned off the transparency option in settings. Any ideas??
    Cheers
    Matt
    MacBook Pro, OS X Yosemite (10.10), GPU / Video Card with Yosemite

    Do you have more than one OS on the Mac?
    You may want to look at something like http://bjango.com/mac/istatmenus/. This has a Free Trial window, but it is a commercial application. If there are any heat/sensor issues, this may help.
    A SMC Reset or PRAM/NVRAM reset may also help.
    Intel-based Macs: Resetting the System Management Controller (SMC) - Apple Support
    Startup key combinations for Intel-based Macs - Apple Support

  • 8.3 causing issues with safari, "Safari could not open the page because server stopped responding"

    Since my upgrade to 8.3 there are several issues with many apps when they are trying to download information.
    When I go to Safari and open i.e. msn.com.  it tries for over 60 seconds.  then I get the error:
       Safari could not open the page because server stopped responding.
    I have a iPhone 6 plus with 113 gig  and 65 gig available
    This same issue is causing problems when downloading articles on facebook and instagram app.
    We also noticed this same issue on Macbook Air, and iMac, iPad 2, and iPhone 5s.
    I also have the Mac Pro without these issues but it is connected by ethernet instead of wireless. 
    Is wifried back and now plaguing all devices?
    I selected mac because, I was tried of all the PC issues with new updates.  It seems mac is now lowering its quality to that of PC.
    We need a fix for this ASAP!

    I have tried resetting my Iphone 6 Plus by holding both the off and select buttom.  This did not help. 

  • Does the 10.6.4 update fix the freezing issues with the i5 & i7 MBP's

    Since I am on the fence about buying a new 15" MBP I would be interested to know what effect the new update has on the latest MBP's and the freezing issues some are experiencing.

    The "freezes" that are mentioned in other threads here appear to be due to a wide variety of different issues. Looking at the relevant posts I'd reckon about one in thirty of them at the most are due to an unusual issue with a few of the current MBPs. The other 29 are simply the regular array of things that cause freezes on any computer - out of date software, corrupted directory structures, the migration of already corrupted software from older computers, duplicate or corrupted fonts, badly written third party software, the occasional shonky HD or RAM module, etc etc etc.
    THis is a non-issue from what I can see. Some people may well benefit from updating to 10.6.4 , but probably only because it replaces some files that have been corrupted for other reasons in the past.
    I certainly wouldn't be putting off getting a new MBP on the basis of the stuff here. Sure, some people will experience "freezes", but there doesn't really seem to me to be anything out of the ordinary being reported here with respect to the new MBPs. There are a thousand and one things that can lead to "freezes". In a few cases it probably is due to a hardware problem with one component or another. In the vast majority, however, it will simply be because of the common old "thousand and one shocks that silicon chips, magnetic storage and software developers are heir too"!
    Cheers
    Rod

  • Pre-n enabler seems to cause issues with lock up/beach ball

    I just received my new C2D MBP yesterday with 3G of RAM and all was peachy. I decided to install the $1.99 Pre-N enabler patch from Apple and it appears that I'm not alone in having that cause system lock ups and beach balls from ****.
    I unfortunately seem to be in the same boat. It runs for awhile and then all of a sudden it will just lock up and I'll get the spinning beach ball from **** forever, until I reboot.
    I'm using mine with a NetGear Pre-N wireless router and while I'm getting 140kpbs connections I am getting a lot of receive errors and the machine just goes off to la-la land.
    I was worried about something else until I read these posts over in Internet & Networking and now I'm wondering if there really is an issue with whatever the "enabler" did. It ceratinly appears to be this. Nothing else seems to cause it this kind of beach ball death.
    So now I guess we need to look for an "un-enabler" patch. Just out of curiosity where do we email problems like this to get resolved?
    UGGHHHHHHH!!!
    Peter

    I have this same problem. I reported a bug to apple bug id#4990056
    Here is what i wrote:
    10-Feb-2007 10:36 PM Brooks Roy:
    Summary:
    I recently got a Linksys WRT350N 802.11n router and using it with my macbook pro core 2 duo. The router is firmware version 1.03.2.
    After installing the enabler from the apple site i verified it upgraded properly and it shows a/b/g/n for my airport card. However the computer has been locking up more and more. I finally narrowed it down to the airport card. Here is what happens:
    Steps to Reproduce:
    With regular airport usage, the mac will all of the sudden give the spinning 'beach ball' and just sit there. A simple http download will stop and the mac will become unresponsive. I cannot launch new applications. The icons will bounce in the dock but never open. I cannot force-quit any applications. My only option is to hold down the power button for a hard shutdown.
    I can almost duplicate the issue 7 times out of 10. Sometimes it takes 15 minutes or so before it locks up, sometimes its almost immediately.
    I have done a full fsck and permissions. I also downloaded tiger cache cleaner and cleaned all settings. I have also booted off the apple install cd and done a extended full RAM check on the 2Gb installed in my computer.
    I have restored my IO80211Family.kext from my other macbook pro (regular core duo) and my problems have gone away. I am 100% sure there is a bug with the 802.11n enabler and the Linksys WRT350N.
    I do not have any special configuration on my linksys, just MAC based wireless authentication.
    When using the MacBook pro on the WRT350N in 802.11g without the latest 802.11n enabler the mac performs fine and does not become unresponsive.
    Expected Results:
    I expect the mac to perform just as a 802.11g network will work with increased transfer speeds.
    Actual Results:
    See above.
    Regression:
    It only occurs when using network traffic (i.e Mail.app, Safari browsing sites, etc. Any application that requires Airport.
    Notes:
    I am using the original IO80211Family.kext driver that does not have 802.11n support and it works properly. Also using builtin ethernet with airport off and the 802.11n driver works (obviously).

  • Using "Restrict by app" in change query causes issues with Search Results

    Hello!
    I am hoping some experienced SP admin can help me out. I am having issues with the relevance ranking for my search results web part.
    I created a Wiki (OOTB) within a site collection and on the home page of the Wiki I was looking to apply a Search Box and Search Results web part for easy searching. I wanted to ensure the search results were restricted to the scope of the pages within the
    wiki. I did the following after adding the 2 web parts:
    Entered edit mode for the page
    Started to edit the Search Results web part
    Under Properties for Search Results clicked on "Change Query"
    Navigated to BASICS and clicked "Switch to Quick Mode"
    For Select Query, picked "Wiki (System)" option
    For Restrict by app, picked "Specify a URL" and input the wiki URL "http://webapp.com/sites/sitecollection/wiki"
    Click OK
    The web part has 6 automatic results when I hit the page. These are the only 6 pages in my wiki. When I search a word or title of a page, they are not ranked in order or relevance. The ordering is static to what was being shown before the search, but the
    keywords I'm searching are bold. With out the taking the steps above, I can easily search these pages and have them ranked appropriately so I'm not too sure what I'm doing wrong. 
    Other Details
    The pages have been crawled and can be searched from anywhere else in SP.
    I am only a site collection admin for this specific site collection.
    I other than the steps above, I have not made any changes or customization to the search web parts; they are both out of the box SP.
    The SP Farm admin we unable to pin point what the root cause is either.

    Hi Mikael,
    Sorry for the wait, I was unable to post pictures, which i felt would better describe my issue.
    Could you output the query template you are ending up with?
    If you can tell me how to accomplish this, then I can provide it. Please keep in mind that I am only a site collection admin.
    Also, is the ranking/sorting for your webpart set to ranking?
    When looking at the web part settings, I didn't see an option to modify the ranking. Unfortunately, some sites in my intranet are down now so I can't even double check. Once it's back up, I will verify this as well.
    And how do you know they are ranked incorrectly?
    I wanted to display an image showing what I meant by this. As the wiki is down, I'll do my best with words. When I visit the wiki home page, I already have the search and search results web parts there. Without searching anything, the search results
    web part displays 6 pages that are available in the wiki. When I search, I expect to see the most relevant result at the top. similar to the following: 
    *Search result from another section of the intranet site.*
    What I receive instead is the same list of wiki pages, in the same order. The most relevant result
    is not moved to the top like in the image above, but I can see that the word "rush" is highlighted in bold. I hope this helps.
    If you need more of a description, please let me know.
    Thank you

  • Exchange upgrade causing issues with internal wiri...

    Recently our exchange was upgraded to accommodate bt infinity and at the same time our broadband started playing up. we called bt and I spent 1.5 hours checking and re checking equipment with the call center. Tests were done with the hub at either end of the internal wiring. All the tests were still showing faults even with hub connected to the test socket. They asked me to leave connected for 24 hours while they monitor the line. They promised to call me back which they did not. I called them again the following day to be told I should have left the hub in the test socket which I was not told the previous day. I then had to wait 48 hours while they monitored the line this time in the test socket. All the tests still showed the fault was still there so an engineer called out.
    The hub was still in the test socket when engineer arrived and the first thing he did was hook up his test equipment to the test socket and he stated there and then that there was nothing wrong with the line but it had been throttled down. 2 minute phone call and 10 minutes later broadband was back and working perfectly at the test socket. He checked the internal extention and the faults were being thrown up by an extension that has been in place for 10 years +. He stated to me that the new equipment installed in the exchange was more advanced and did more line checks so, although this equipment has been used for Internet with BT for 10 years it is no longer adequate.
    All of this I find understandable but the whole way that BT handled this from day 1 of my first call has been appalling. BT openly admitted that the original engineer calls were handled badly and we were credited £9 for the lack of services we had for overly long time. However we are now, 2 months after this, faced with nearly £130 charge for the engineer visit which, looking back with the info I have now, was completely unnecessary. Had the engineers on the phone bothered to reset the line while hub was in the test socket when they were allegedly monitoring it for 48 hours they could have told me there were no faults on their equipment up to the socket and I would have sorted out the internal wiring myself. Even now I can find mention on the Internet of old wiring causing issues but no specific posts to do with exchange upgrades potentially meaning that you need to upgrade internal wiring or mention by the BT call center itself on any of the calls I made to them. All I was told was that everything up to the main box is BT and everything after that mine but since we have made no changes to the wiring we did not think it was applicable until the engineer arrived and told us what he told us then. Yesterday I called Bt again around 9am to dispute the charge. I was informed that because the fault was with our equipment the charge stands. I explained all of the above and I had my case put to the review team. I was told I would get a call back within 4 hours which I did but the phone rang 3 times and as I answered they hung up. I then got a text saying they had tried to call and asked for me to call back which I did to be told that his computer wasn't working. He took my details and said someone would call me back which no one did. I chased again to be told that someone would definitely call me that day. No one did. I chased again today to be told the decision still stands. He has put to final review and promised a call back within 5 days. Until this is resolved direct debit is cancelled. To the letter of the contract we have with BT this is our charge to pay I know that but this could have been avoided if the information was out there on the net, if the original checks done over the phone were done correctly or if I had been told this directly by Bt themselves prior to the engineer being called out which is why I am posting this here so hopefully no one else falls into this trap.

    You're right I'm not connected to the BT infinity cabinet. But the BT Infinity cabinets all still route back through the exchange that I am connected to -
    http://www.ichilton.co.uk/blog/phones/faster-broadband-bt-infinity-fibre-to-the-cabinet-coming-to-in...
    Quote :
    What this modem does is connects using VDSL from your home to the VDSL cabinet using the existing copper wires, on to the DSLAM, back to the exchange (over the fibre) and on to BT’s core network.
    Your phone line is then still terminated in the original cabinet for telephony (using the cross connect between the old and new cabinets I mentioned above) and back to the exchange over the original multi pair copper cable as it always has done.
    http://www.robertos.me.uk/html/fttx.html
    Quote:
    FTTC involves BT Openreach installing a new street cabinet near to the existing one and linking the two. They run optical fibre from the exchange to the new cabinet then link individual lines from the old cabinet to the new one and back to get VDSL2 onto the copper connection to the premises. The PSTN phone connection continues to operate over the pre-existing cable from the old cabinet to the exchange.  It does not get put onto the fibre connection.
    In other words the linkage is Exchange >> Old >> DSLAM in New >> Old >> Premises. (Traffic in both directions of course!)
    Presumably the equipment in the exchange cannot stay as it is and is upgraded in the process?

  • 10.6 Server, 10.8 Clients (ML) issues with Contacts & Mail

    I'm seeing issues with Mail in ML and contacts and our 10.6 server. All users are on a network home directories and using the Address Book service on the server. Mail and Contacts fail/work intermintently when both of them are running. Stopping and restarting either program may solve the problem.
    Users of 10.7 clients see no issues. Only users of 10.8 ML have problems with Mail and Contacts. Its very obvious that Contacts and Mail are having issues with each other. I can remove the contents of the Address Book in the local user's library and and relaunch Contacts to run with out problems. As soon as you start Mail problems arise quickly.
    While Mail is accessing the address database it will demonstrate long delays.
    Any direction or help is much appreciated!

    This is a known bug of ML. The operating system is not compatible with AFP home directories. You will notice that FaceTime won't work either. In addition, there are sandbox problems, preferences problems and performance issues.
    In my experience, the only possible workaround is to convert all forks and Extended Attributes in the home directories to AppleDouble files and then switch from AFP to NFS. This can result in Spotlight issues, but otherwise, all applications will work fine and much faster.

  • Web Logic 10.3 upgrade causes issues with escaped characters in JSP.

    We recently upgraded our application servers from Weblogic 9.2 to Weblogic 10.3 and we are having an issue with escaped characters in a JSP code. Here is an example of what we are seeing:
    var convertedBody1 = document.getElementById('body').value.replace(/\$FIRST_NAME\$/g, firstName);
    This code works in Weblogic 9.2. In Weblogic 10.3 we have to make the following changes:
    var convertedBody1 = document.getElementById('body').value.replace(/\$FIRST_NAME\$/g, firstName);
    Thanks, Tom

    Hi:
    I have resolved the issue with the following in the jspx page.
    Put an
    <jsp:scriptlet>
    response.setContentType(“text/html; charset=UTF-8”);
    </jsp:scriptlet>
    Inside the <f:view> on the jspx file.
    Please refer the link http://www.oracle.com/global/il/support/tip/nlss11061.html for more details. It is helpful.
    Thanks & Regards
    Sridhar Doki

Maybe you are looking for

  • ITunes 7 'previous track' glitch

    Hello everyone. I've been experiencing a bit of an issue with iTunes with regards to the 'previous track' button. Oftentimes, if I press that button with a few seconds to go in the song, it'll still advance to the next track. Occasionally, when this

  • YouTube HD uploading problem with QT/Safari/Firefox...

    I've upgraded to Snow Leopard and now Safari and Firefox refuse to upload to YouTube- so I resorted to using Quicktime X, which worked... BUT... the movie was an HD file exported from Final Cut, and didn't upload to YouTube in HD. The only way I have

  • ITunes 11.1 for ipad

    Where is upgrade apple 11.1 for ipad, looked everywhere

  • Odd sound change in some games

    Background: I recently installed Windows XP, and updated the drivers using the Creative Updater on the support site. since then whenever i run a specific game (DiabloII in this situation) the sound automatically gets louder and degraded. Previously I

  • Missing Data Sets Window

    Running BIDS with Visual Studio 2012, the Data Sets Window seems to have gone away. Can you tell me how to bring it back?