Sometimes the news is good too ...

People who read this forum sometimes get the view that problems abound, but that's not the case (like others have said if you walk into a hospital you'll think everyone is sick). So to those of you who fear going to 2.1 let me give you my experience.
I was at 2.0 (I have an 8GB touch). After upgrading to iTunes 8 I decided to try the 2.1 version yesterday morning because I was getting tired of the 5-15 minute backups every time. So I did the +download and install+ option when asked, expecting it to take as long as it did when I went from 1.1.4 to 2.0.
I was surprised that it went much quicker, with absolutely no problems. When it got to the section where it was backing up the touch I again anticipated a long time but it took +less than 2 minutes+!
Trying it out I found Contacts now immediately responsive. Web access fast, with absolutely no problems (either accessing Safari, web apps, or applications like Yelp or Urbanspoon. (router is a Netgear from Comcast, not Apple, so that myth is busted) If anything, they seemed faster! It was in sleep mode overnight - no battery drain at all. Videos, music - all run as before. Time will tell if battery performance is improved.
So if your touch hasn't been giving you problems I wouldn't hesitate in upgrading to 2.1.

Well, I hate to beat this analogy to death, but it's like coming to a hospital and saying "everyone here is sick"
Of course.
These forums are for folks having trouble.
Now, I'm as impatient as anyone, and sometimes I get ticked at the whines/rants and forget that I have a lot of experience in technology.
It doesn't excuse poor behavior, but many folks are not as tech-savvy and need help.
I had to stop posting because I'd just get p*ssed at everyone here.
Now, if someone acts like a boob, I just ignore it and try to help those being polite.
Troubleshooting is something that folks are going to have to get used to if they have technology in their lives.
As for the update, it's working great on the 1G Touch and 3G iPhone for me.
Scott

Similar Messages

  • Updated to IOS6 and now my apps will not update on the Ipad2.  I have to delete them and then re-install.  But I have several hundred apps and this is cumbersome.  Seems the new software is too buggy.  I am telling people not to update software yet.

    Updated to IOS6 and now my apps will not update on the Ipad2.  I have to delete them and then re-install.  But I have several hundred apps and this is cumbersome.  Seems the new software is too buggy.  I am telling people not to update software yet.

    Basic troubleshooting from the Users Guide is reset, restart, restore (first from backup then as new). Try each of these in order until the issue is resolved.

  • Why the files my program create are created twice each file double ? And why sometimes the files size are too small ?

    My program is using Queue of type Uri to create Queue of urls and then i'm using webbrowser to navigate each Uri from the Queue in it's turn and get the url(html) source content and save it to the hard disk.
    The problem is sometimes the text files on the hard disk are small like 90KB or 60KB and sometimes they are as they are suppose to be 300KB or 200KB.
    This is a button click event where i'm calling two methods:
    private void toolStripButton3_Click(object sender, EventArgs e)
    GetHtmls();
    CheckQueue();
    This is the GetHtmls method code:
    private Queue<Uri> myUrls = new Queue<Uri>();
    private bool isBusy = false;
    private void GetHtmls()
    for (int i = 1; i < 49; i++)
    adrBarTextBox.Text = sourceUrl + i;
    targetHtmls = (combinedHtmlsDir + "\\Html" + i + ".txt");
    Uri targetUri = new Uri(sourceUrl + i);
    myUrls.Enqueue(targetUri);
    sourceUrl contain website address: http://www.tapuz.co.il/forums2008/forumpage.aspx?forumid=393&pagenumber=
    And i'm adding to it the numbers and create the pages.
    And add them to the Queue.
    THen the CheckQueue method:
    Uri uri;
    private void CheckQueue()
    if (isBusy)
    return; // We're downloading some page right now, don't disturb
    isBusy = true; // OK, let's get started
    if (myUrls.Count == 0) // No more pages to download, we're done
    isBusy = false;
    return;
    uri = myUrls.Dequeue(); // Get one URL from queue
    getCurrentBrowser().Navigate(uri);
    It suppose to Navigate to each Uri(html address) in the Queue.
    And the browser document completed event:
    private void Form1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
    // If page loaded completly then do something
    int urlnumber = uri.ToString().IndexOf("pagenumber=");
    string number = uri.ToString().Substring(urlnumber + 11);
    int num = Int32.Parse(number);
    targetHtmls = (combinedHtmlsDir + "\\Html" + num + ".txt");
    StreamWriter writer = File.CreateText(targetHtmls);
    writer.Write(getCurrentBrowser().DocumentText);
    writer.Close();
    isBusy = false; // We're done
    CheckQueue(); // Check next page in queue
    In the completed event i'm getting the page number and build the string for the text file then write the html source content to the text file.
    In the end i have on my hard disk 48 text files.
    The problems are:
    1. Sometimes it seems like it's not finishing navigating to the current uri or maybe some other reason maybe server side problem and creating small size files with source content inside but not all the source content. Sometimes the text files size are each
    file 99KB or 70KB and sometimes the size of them are about 300KB and 200KB and this is the right sizes 300KB 200KB.
    2. The text files on my hard disk suppose to be 48 different files each file should contain the source if the html page of the 48 pages. But on my hard disk the 48 text files are duplicated for some reason.
    This is the file on my hard disk:
    Some of the files are 205KB 350KB 175KB and some of the files sizes are 85KB 94KB 35KB 
    Why some of the files it didn't navigated to the end or maybe didn't got all the source ?
    And why it's making each second file the same like the one before ? It suppose to create 48 different files but i'm getting two identical files each navigation.

    I solved it now.
    This is what i did:
    It's a bit slow process since i'm waiting for each page to be loaded into the webbrowser but it does the work.
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Threading.Tasks;
    using System.Windows.Forms;
    using System.Collections;
    using System.IO;
    using System.Net;
    namespace WindowsFormsApplication1
    public partial class Form1 : Form
    private string sourceUrl = "http://test.test";
    private string htmlsTargetDirectory = "Test Htmls";
    private string appDir = Path.GetDirectoryName(@"C:\Users\chocolade1972\AppData\Local\Test_Images\Test Images\Test Htmls");
    private string combinedHtmlsDir;
    private String targetHtmls;
    private int counter = 1;
    private StreamWriter w;
    private string uri;
    private bool htmlloaded = false;
    public Form1()
    InitializeComponent();
    webBrowser1.ScriptErrorsSuppressed = true;
    combinedHtmlsDir = Path.Combine(appDir, htmlsTargetDirectory);
    if (!Directory.Exists(combinedHtmlsDir))
    Directory.CreateDirectory(combinedHtmlsDir);
    private void Form1_Load(object sender, EventArgs e)
    GetHtmls();
    timer1.Enabled = true;
    private void GetHtmls()
    uri = sourceUrl + counter;
    targetHtmls = (combinedHtmlsDir + "\\Html" + counter + ".txt");
    webBrowser1.Navigate(uri);
    private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
    if (e.Url.ToString() == uri)
    targetHtmls = (combinedHtmlsDir + "\\Html" + counter + ".txt");
    htmlloaded = true;
    StreamWriter writer = File.CreateText(targetHtmls);
    writer.Write(webBrowser1.DocumentText);
    writer.Close();
    FileInfo fi = new FileInfo(targetHtmls);
    var size = fi.Length;
    w = new StreamWriter(combinedHtmlsDir + "\\test.txt", true);
    w.WriteLine("File Size " + size);
    w.Close();
    private void timer1_Tick(object sender, EventArgs e)
    if (htmlloaded == true)
    uri = sourceUrl + counter;
    myurls.Add(uri);
    webBrowser1.Navigate(uri);
    htmlloaded = false;
    counter += 1;

  • Firefox 6.0 apears to have crashed, all my tabs and the new tab groups too are lost, Why?

    When opening Firefox this time-today, shortly after (a few days ago) updating to the Firefox 6.0 update and setting up the new Tab Groups, now none of my Tabs or Tab groups are showing/available (I checked the Tab Groups area also).
    What the heck happened and how can I get them all back?

    I'm sorry, but this did not help solve my issue with Firefox 6.0, as I already had my Firefox configured for restore (utilizing all of the methods suggested, because of many issues over the years and revs.); the History will not allow a restore of all tabs from the time before the loss; the "This is Embarrassing" screen did not come up this time, but it has numerous times prior to the rev 6.0 update. This time everything was just lost completely.

  • How do I restore the old Icons? The new ones are too juvenile for me.

    The question remains. Please, Apple bring back the old Icons!

    I agree-the old icons were much more appealing and professional looking. Perhaps Apple can find a way to offer a choice of icon packages upon upgrade to the new software-for example, Jobs Old School for those of us who liked the professional look and Teenager Delight with the rainbows, unicorns, and puppy dog tails. Just a thought. Will upgrade sooner if that change is made.

  • What does iTunes FORCE YOU to download the last version of their software to use their store? The new program is too much for my computer!

    This totally *****...iTunes 10 is too much of a memory hog for my POS computer. I have to turn off all other apps just to use it and even then it still runs SLOW. I think iTunes = Extorition. Why force us to use it? They just want to track your personal data. That's pretty evil. The best iTunes version for my computer was iTunes 7. But it won't let me use store on iTunes 7. F@#$*%s!
    Instead of making the program more streamlined, they make the next version LARGER FILE SIZE and more of a memory hog. 
    Apple should be making each successive version a SMALL FILE SIZE and less of a drain on memory.

    ds store wrote:
    The problem is a lot of PC's are sold cheap with 5 year old processors and graphic cards in them.
    Windows doesn't defrag on the fly, you have to run anti-virus all the time. The PC vendor installs all their "crapware" on the machine too.
    Also most PC's don't come with hardly any RAM neither, most people don't know computer specs, don't know how to look up their prospetive machine on the internet and see if they are getting their money's worth.
    Microsoft is a enemy too, they allow "toolbars" Acive X and purposely bloat their operating system so it forces you to buy a new one.
    At least with iTunes you have a choice to buy your music ANYWHERE, you could have kept on using iTunes 7, just you would have had to buy your music via cd's or another website like Amazon etc.
    Microsoft has really bloated down the last few updates of Windows, I replaced all the old Dells with 512MB of RAM and 16 year old single core Cellerons with copies of Linux Like XP so the seniors at a local center can still get on the internet if they need too.
    Still even with that the last few updates of Linux have been a bit rough for those old machines, but for the net that's good enough.
    LOL! 
    (Although I don't know if the OP will be in the mood to "get it.")

  • When I open a new page in the bg with middleclick, sometimes the new page is blank

    This only seems to happen sometimes.
    When it happens, if I attempt to view the source I succeed.
    So, I can see the source of the page, but not the page itself.

    Note: I'm the RequestPolicy developer.
    Please check if disabling RequestPolicy (or setting "temporarily allow all requests") solves this problem for you. If it does, please try to provide me a repeatable example so I can test/debug/resolve this. For example, if there is a specific page and a specific link on that page which always has this problem, that's a good example.
    You can also open the Request Log from the RequestPolicy menu, leave the log open, then open a link which fails. If RequestPolicy is causing this problem, then most likely you will see a blocked request in the log when you middle-click the link.
    Thanks!

  • Is the New Macbook good for gaming?

    I am about to buy a new MacBook Pro. I was planning on getting the MacBook Pro without retina with the i7, 1tb HDD and 8gb of ram. I am wondering if this will work for gaming. I am going to bootcamp with Windows 7 as soon as I get it. Is this a good idea or will I have problems with graphics or any other issues?

    Okay, so here's my opinion on this as I have the MacBook you're planning to purchase. I have the 13 inch which means without the graphics card.
    It's a decent gaming machine. It's okay for gaming here and then.
    As OGELTHORPE mentioned, Mac's aren't meant for gaming. The machine will just get really hot, and won't give you the best performance.
    Now as for me, I came from a 2008 sony vaio. The increase in performance was amazing, but for me.
    So, go with a macbook air, and then build your own desktop. It's going to be much more beneficial. Although seeing your budget though, you won't be able to build a super powerful gaming PC, rather a standard, with simple graphics card gaming machine.
    However, it's better than buying a MacBook Pro and gaming on it in my opinion.

  • My internet is slowing down - sometimes the whole computer does too......

    Hi,
    Is any one able to give me some advice with this?
    My iMac is now about 18 months old. Over the past 4-6 months it has gradually got slower. I have noticed this mainly on the internet. Some days it takes about 3-4 minutes to load one page or can't even open it at all. It used to be fine (i.e. opened a page in a second or two) and there is the odd occasion where this is still the case.
    A few facts about the comp;
    Memory capacity 232.57gb
    Used 62.69gb - I am confident that it is not due to lack of space on my iMac!
    On the activity monitor it shows 2.73KB per second - no idea what this means
    I have completed the Apple Hardware Test - came back fine
    I have completed Repair Disk Permissions - didn't change a thing
    I haved deleted all Caches, Log files and Temporary Items.
    I have downloaded OnyX - my iMac will not allow me to open the programme though.
    I do not use this iMac for much - dont download much, dont use many programmes - only internet and email really!
    I have contacted my broadband provider who have confirmed I am signed up to receive 5mb and I get the full five. They have said I have a good connection as far as they are concerned. I have run a broadband speed test - download speed - 4152kbps - upload speed- 497 kbps
    I connect to the internet wirelessly and the airport icon on my screen suggests full strength.
    I have now run out of ideas as to how I can speed up my beloved computer again.
    I'd be really grateful if anyone could suggest any further things I could do to fix this problem.
    Please!!

    I would assume based on your usage and problems that the issue is specifically isolated to your internet performance. If you almost exclusively use this machine for internet/email, then we're probably talking an internet throughput issue. And probably the issue is something with the wireless configuration.
    If you can post more information about your configuration, that would be helpful. Who is your ISP? Are they providing a modem that has wireless built in, or do you have a wired connection to another wireless router? What brand of router are you using? Also, what brand of modem(if they are different)? Finally, what version of OS X are you using and are your Software Updates up to date?
    Is there a way you could connect your computer via Ethernet directly to your ISP box to test your performance that way?
    Finally, do you have any cordless phones, microwaves, or anything using the 2.4 or 5 GHz radio band nearby? Something like items above might be causing intermittent interference.

  • Is it possible for the software to be too new to restore from old iPod's backup?

    So I tried to restore my new iPod from my old iPod's backup, but the old one was working on iOS 5.1 and the new one was an older software.
    It said it could not restore the new one from the backup of the old one because the software was too old, but the only option is to update it to iOS 5.1.1.. will it still say it is not compatible now because the new one is too new and the old one is too old? :/

    If you update your iPod to iOS 5.1.1, you'll be able to restore the iPod to a backup from any iPod with current or older software.
    To put it simpler, you can update your new iPod to the latest iOS and restore your old iPod's data.

  • Does FCP support the new iFrame format?

    I know the update was just released for iMovie, and I was thinking of nabbing one of these new Sanyo cams. Sometimes I use FCP for editing though.

    Your welcome Nick. I may be wrong, they may add it to FCP, who am I to second guess Apple, but you would of thought they would of put a camera in the new iPod touch too, but they didn't. So... you just never know. I'll certainly let you know if it's in the next update though.

  • Assigning places in full window - the info window is too tiny

    For asigning a place  (geographic location), I think that the latest version of iPhoto is not good: the info window on the lower-right corner cannot be enlarged. In iPhoto 8, I was able to enlarge it to any syze, much more convenient to identify on the satellite imagery the proper location to put a placemark. Iswitched back to the version 8. The new one is too cumbersome. Did I missed something?

    Report to Apple - iPhoto menu ==> provide iPhoto feedback
    LN

  • The new UI problems 6.21.64.104+

    There are several threads on the subject, I will try to summarize the key issues most people agree on. I can see a job opening for Skype Senior Designer at microsoft.com, and the timing doesn't look good
    Some posts on this forum are quite angry, but I know it's too early to come to any conclusions about the new design. There is also a lot of sense in merging the mobile and desktop UIs.
    Still there are some issues that need to be taken care of.
    Chat Bubbles
    The emphasis on the screen names is gone. It has become very hard to read group chats, especially with profile pictures disabled. The messages are clear, the senders' names are not anymore. Overall the bubbles don't work for group chats and something has to be done about it. A more varied color coding of the bubbles is an option, a switch for a bubbled/non-bubbled chat layout is another one. I vote for the latter.
    The Contact List Header
    The active user + status area along with 'Home' and 'Call phones' buttons occupy too much space in the new version. I don't know what your stats say, but I doubt that these are the functions people use most in the Skype window. The list is the most important thing. And the search area. The obvious solution is to snap the search back to the contact list and shrink everything above it.
    Also
    The new version shows too many symptoms of Alzheimer's. It doesn't remember:
    - if i prefer Recent tab to be open on launch
    - if i prefer the group chat users list to be expanded

    drixx wrote:
    OH MY GOD YES! The new UI just mess up everything. I hope they introduced switching themes so that users can just go back to the classic theme if they dont like the new theme. 
    SKYPE GODS, HEAR US! PUT US OUT OF MISERY!
    You can uninstall the 6.21.64.104 version with the new UI and install the regular 6.21.0.104 version:
    http://download.skype.com/msi/SkypeSetup_6.21.0.104.msi

  • I do not see ANY of the new features claimed for Firefox 4, and moving the home button all the way to the right is very inconvenient. So what's so great?

    I have used (and liked) Firefox from the first time it was offered. I
    typically upgrade to newer versions as they come out. Sometimes
    the newer version doesn't differ markedly from the previous one, but, until now, they were not usually a step backward. Upon installing Firefox 4 the welcome page indicated several new features. Specifically an app bar, and a bookmark button next to the home button. However neither of these features are on my copy of the program. Frankly, the only change that I see is the new position of the home button; and I don't like it. Moving the home button all the way across the page from the other commonly used buttons makes absolutely no sense to me, especially if the touted bookmark button doesn't exist. The new speed, if it continues, is nice, but other than that I see no real improvement over Firefox 3. So what's so great?

    The new interface is only default on Windows Vista and Windows 7. To get it on Windows XP you need to hide the menu bar. To do that in the View menu select Toolbars, then click on the "Menu Bar" entry.
    If you need access to the menus you can press either Alt or F10 to temporarily display them.
    You can rearrange the buttons and place them where you want, for details on how to do that see https://support.mozilla.com/kb/how-do-i-customize-toolbars

  • I can not use the new Itunes. I have managed to erase my shuffle and can not get any songs from my library onto my ipod shuffle now!!!!!! Tutorials do not help!!!!

    Ineed a manual to use the new Itunes. The simple easy to use version is gone. The new version is TOO complicated !!!!!!!

    Hello SandyGF
    I would check out the following article that will bring back the sidebar that will make iTunes a little more familiar and get you back on track with syncing your iPod Shuffle.
    iTunes 11: Frequently used features
    http://support.apple.com/kb/HT5649
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

Maybe you are looking for

  • Sharepoint Foundation 2013 - Tasks

    Hello, I have created a new Teamsite in SharePoint Foundation 2013, I added a Task content. My scope is to give to the users the possibility to create and manage their own tasks. The problem is that any task that the administrator creates and then as

  • How do I change firefox to open a new window when I start it several times instead of opening a new tab when I want to go to a different location?

    I want to go to several different websites at the same time. I want to compare the information on each site. I do not want to open a tab, I want a whole new window. How do I change firefox so it will open a new window instead of opening a new tab and

  • Crosstab support

    Hi all. I'm trying to properly render a crosstab report and I'm experiencing some really wierd issues. Suppose I have this set of results: AFE_NUM, MAJOR_MINOR, ACCT_GROUP_DESC, CDN Now, what I want to do is basically: for-each-group (ACCT_GROUP_DESC

  • How to get elive tab

    how to get elive tab

  • Developer server

    Just want to make sure I understand the Free CF 8 Developer edition. The free CF 8 Developer edition can be on a Development server but it can only have 2 client workstations (at one time) connecting to it or is it 2 workstations maximum connecting t