Possible Solution: Rentals Freeze

First, I have a Powerbook G4.
Last week I rented a movie through Itunes. I noticed, as many others have, that rentals seem to freeze quite frequently. In fact, mine was freezing about every 2 minutes.
Once I plugged my laptop in, because it was dying, the problem stopped. I unplugged it and it began freezing again.
I'm not sure why this happens, but it seems to be the solution. Don't really know why there is a problem though.

First, I have a Powerbook G4.
Last week I rented a movie through Itunes. I noticed, as many others have, that rentals seem to freeze quite frequently. In fact, mine was freezing about every 2 minutes.
Once I plugged my laptop in, because it was dying, the problem stopped. I unplugged it and it began freezing again.
I'm not sure why this happens, but it seems to be the solution. Don't really know why there is a problem though.

Similar Messages

  • OS X 10.9 freeze when WiFi is turned off (POSSIBLE SOLUTION)

    Hi, I just found a possible solution for this problem: my MacBook Pro freeze completely (without the spinning beach ball) after I turn off WiFi.
    I have a MacBook Pro 17 inch late 2007 (MacBookPro3,1 - A1229), with a NVIDIA GeForce 8600M GT 256 MB card, running OS X 10.9.
    What happened:
    - I updated the OS from 10.8.4 to 10.8.5
    - My Mac started freezing everytime after login, I don't remember if WiFi was on or off
    - Reverted back 10.8.4, thank you Time Machine!
    - Updated to OS X 10.9
    - Everything was OK, but then I did some work in my home and I had to turn off the modem
    - Modem was off, so I decided to turn off also the AirPort card on my MacBook Pro
    - After a couple of seconds my computer completely stopped responding, trackpad and keyboard were useless, the UI froze
    - After pressing the power button I managed to shutdown the Mac and then start it up again
    - Now after the startup process I was stuck in loop: WiFi was still off and I had few seconds to login, wait for my account to load and turn on WiFi from the menubar icon; I failed countless times!
    - In an attempt to slow down the Mac and earn some more seconds I did a PRAM reset and logged in with the Shift key pressed (after typing my password)
    - I managed to turn WiFi on and looked immediatly for clues on Console logs:
    04/11/13 14:31:02,000
    kernel[0]
    AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    04/11/13 14:31:02,000
    kernel[0]
    en1: BSSID changed to 90:72:40:16:09:df
    04/11/13 14:31:02,000
    kernel[0]
    2766.617367: setDISASSOC from ATH_INTERFACE_CLASS disconnectVap
    04/11/13 14:31:02,000
    kernel[0]
    2766.630567: setDISASSOCIATE ****STA SYNC DISASSOC SUCCESS 
    04/11/13 14:31:02,000
    kernel[0]
    2766.630581: switchVap from 1 to 1
    04/11/13 14:31:03,000
    kernel[0]
    flow_divert_kctl_disconnect (0): disconnecting group 1
    04/11/13 14:31:03,980
    configd[19]
    network changed: v4(en1-:10.0.0.4) DNS- Proxy-
    04/11/13 14:31:03,984
    UserEventAgent[11]
    Captive: CNPluginHandler en1: Inactive
    04/11/13 14:31:04,145
    netbiosd[170]
    network_reachability_changed : network is not reachable, netbiosd is shutting down
    04/11/13 14:31:12,814
    awacsd[58]
    KV HTTP 0
    04/11/13 14:31:17,886
    awacsd[58]
    KV HTTP 0
    04/11/13 14:31:27,959
    awacsd[58]
    KV HTTP 0
    04/11/13 14:31:28,344
    Google Drive[282]
    BUG in libdispatch client: kevent[EVFILT_WRITE] delete: "No such file or directory" - 0x2
    04/11/13 14:32:44,000
    bootlog[0]
    BOOT_TIME 1383571964 0
    (Last line is me powering the Mac on, after a forced shutdown; for some reason some lines have been lost forever: before the last one, there were some more "awacsd ... KV HTTP 0")
    This is what happen to my Mac when I turn off the AirPort card; I don't know if "Google Drive" or "libdispatch client" are the problem, but quitting Google Drive solved this madness.
    Hope this helps.
    Also on this forum:
    Re: MacBook Pro (2007) 3,1 & 10.8.5 freezing
    Re: MacBook Pro (2007) 3,1 & 10.8.5 freezing
    Message was edited by: Tom.my

    I'm experiencing a similar issue.
    In my case, a conflicting kext (kernel extension) from a vitual machine (VirtualBox) was causing an immediate freeze after turning Wi-Fi off. After disabling the kext's scripts, I can now disable Wi-Fi safely but if I reboot then the system hangs at radom instances of boot sequence (for example while showing the apple logo, or at the login screen or a few seconds after entering the password).
    I can only boot in single user mode (command-option-S) so after looking around a way to turn on WiFi from the command line, I ended up using a daemon (boot script) that turns on WiFi before anything else happens (at least as soon as the airport card is running).
    In any case, I left the instructions here, just for reference.
    The script should be created in /Library/LaunchDaemons
    It can have any name with "plist" extension, I choosen "com.fixwifi.wifion.plist"
    To create the file type: nano /Library/LaunchDaemons/com.fixwifi.wifion.plist
    Enter the following text (it's a lot of text, I know, but it is better than nothing):
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
        <key>Label</key>
        <string>com.fixwifi.wifion</string>
        <key>RunAtLoad</key>
        <true/>
        <key>KeepAlive</key>
            <dict>
                <key>SuccesfulExit</key>
                <false/>
            </dict>
        <key>ProgramArguments</key>
            <array>
                <string>networksetup</string>
                <string>-setairportpower</string>
                <string>en1</string>
                <string>on</string>
            </array>
        <key>StartInterval</key>
        <integer>2</integer>
    </dict>
    </plist>
    When finished, type "ctrl-x", then "y" to save and enter. Reboot.
    This script will:
    - try to power on the en1 interface as soon as the script loads
    - if it fails (because the interface is not running yet), will try to turn it on every two seconds
    - once the interface is on (exit is succesful), then unload the script.
    Note that this script assumes the airport interface is named "en1". It can also work with the word "airport" (at least in my tests).
    Good luck!

  • Adobe Acrobate XI and SecCommerce SecSigner have a problem during signing of a document, creating/verification of the signature is not possible - solutions?

    Adobe Acrobate XI and SecCommerce SecSigner have a problem during signing of a document, creating/verification of the signature is not possible - solutions? SecSigner is not responding.

    Well, I contacted SecCommerce about the issue, the response was, that I should sign the file later (afterwards). This is a solution, but not the best in my opinion.
    When I sign the document the SecSigner window/Java window appears and freezes. Adobe is not responding. I have to terminate Adobe because the program is not responding.
    I only found this support website, so I have realized that this is a User 2 User site, but it was a try to get some help.

  • Buy my problem of camels Store Lee games possible solution for me my problem?

    Buy my problem of camels Store Lee games possible solution for me my problem?

    This worked for me, sort of. A while back when I downloaded that windows update that installed the new version of IE, I noticed that IE wouldn't connect to the internet and pages wouldn't load. However, I thought nothing of it because I use Firefox and FF was working just fine.
    I went into IE earlier this evening (it still wasn't working) and tried to follow your recommended steps. I got up to step 4 and IE froze. I tried closing it, reopening it and repeating the steps but it would always freeze at step 4. In another thread, someone was saying that iTunes released a security update and that fixed the store for them so I tried opening Apple Software Update and that froze. I tried it several times, nothing. Would always freeze. I even tried updating thru iTunes and IT would freeze.
    Finally, I went to the control panel and uninstalled IE7. The iTunes store and the Apple Software Update program are now working! So thank you very much for your suggestion. Otherwise, it may have never clicked with me that IE was the problem.
    Windows XP

  • IPod is not recognized by Windows Vista - possible solution

    During the past couple of weeks that I faced this problem I found out that a lot of people had the same question as I did.
    Here is a possible solution.
    I have HP Pavilion laptop with Windows Vista. After I connected my new iPod – it didn’t show up in My Computer as a new device and in Device Manager it was listed in “Other devices” with a question mark next to it. I already had iTunes installed – it didn’t show up in iTunes. On the attempt to reinstall the driver I had a message that the driver was found but an error occurred while installing it.
    Here is what I did:
    1. Install iTunes (it has iPod driver for Vista in it).
    2. Turn on iPod and connect it to computer.
    3. Restart computer with iPod turned on and connected to computer.
    4. On the start up the computer will begin automatically installing the driver and the message will appear in the corner that new device is being installed.
    5. After it has been installed – check My Computer – you should see it listed there.
    6. Run iTunes and configure iPod.
    iTunes might run a little bit slow when configuring iPod for the first time.
    Good luck.

    if only this fix worked for windows xp or even 2000 (at my job)
    insane, but it IS a driver/usb problem i now know, at least i've gotten that far.

  • Possible Solution to Google Search Bar Not Working/Safari Not Loading Pages

    Hello Apple Forums,
    I have recently encountered a possible solution to a problem with Safari. The one in which Safari fails to load any page associated with www.google.com. Especially the Google Search Bar—a feature I use frequently.
    After browsing through the forums about the Google Search Bar issue, I took my knewly gained knowledge, and decided to do some diagnosing for myself.
    This is what I have done so far to try and solve this issue:
    Run Daily, Weekly, and Monthly Cron Scripts
    Cleared the following caches:
    System Local Computer Cache
    System VM (Swap) Files
    Curent User Cache
    Current User Icon Cache
    Internet Explorer Download Cache
    Page History
    Web Site Cache
    Temporary Files
    Safari Downloads List
    Form Values
    Page History
    Recent Searches
    Site Icons
    Web Site Cache
    User Cookies (used by Safari)
    Finder Recent Applications
    Recent Documents
    Recent Folders
    Recent Servers
    Recent Files of AppleWorks 6
    Disk Utility Disk Images
    Preview
    QuickTime Player Favorites/Recent
    REALbasic Projects
    TextEdit
    VideoLanClient
    and Other caches of Acquisition Current Downloads
    Acquisition Recent Searches
    MSN Conversation History
    Vicomsoft FTP Client Icon Cache
    All of the above runnings of Cron scripts and clearings of Caches were done using Mac Pilot version 1.1.5 (yes the one on the site is an updated version, but I have not downloaded it yet). If you decide to use this program to clear caches, I advise not clearing the Installer Receipts under the System section as Installer Receipts are used to correctly repair permissions. I do not clear Find File Indexes either, because I use the Find File feature quite frequently on my computer and I do not want to have it re-index files all the time (perhaps I'll do it every few months or so to refresh what I've got on the harddrive). Remember, all the information given in this paragraph is relative to Mac Pilot version 1.1.5.
    In addition, I have also repaired permissions using Disk Utility 10.4.4 (v145.7) (make sure you restart your computer after you repair permissions). I have taken out items in /harddrive/library/StartUpItems as well as taking out items in /harddrive/library/Internet Plug-Ins and in /user/library/Internet Plug-Ins and in user/library/Caches (restart your computer after taking out or putting in items in these locations).
    As of now, all the information mentioned above about trying to fix this problem have NOT worked.
    What HAS WORKED for me was tinkering with my 3rd party firewall—Norton Personal Firewall Version 3.0 (48). Under the Protection Settings, I HAD Enable Active FTB support, Enable Stealth mode, Enable suspicious activity protection (with Deny outgoing suspicious traffic and Deny incoming suspicious traffic selected), Enable UDP Protection (with Protect outgoing UDP connections, Allow access to essential services, and Protect a range of UDP ports 1 through 1023 selected).
    What I CHANGED in Protection Settings was DESELECT Enable suspicious activity protection (with Deny outgoing suspicious traffic and Deny incoming suspicious traffic DESELECTED). Upon deselecting that information the Google Search Bar feature in Safari WORKED practically instantaneously. Before hand, anything I inputted into Safari and after hitting Return on the keyboard just wound up hanging there.
    Just to be sure, all tests were performed on:
    IMac G4 800 Mhz SD Mac OSX 10.3.9 with ALL the latest Software Updates, Except Apple Remote Desktop Client version 1.2.4 and iPod Updater 2006-01-10
    I have a cable internet connection with ISP Time Warner Cable (RoadRunner) using a SurfBoard SB4100 Cable Modem on an AirPort Extreme Base Station (Apple Base Station V5.6)
    Interesting side note: I have a PowerBook G4 15" 1 Ghz Mac OSX 10.3.9 Laptop running on the same network (although it has an airport extreme card as opposed to the regular airport card in the iMac) with ALL the same latest Software Updates, Except iPod Updater 2006-01-10. The Apple Remote Desktop Client version 1.2.4 does not come up on Software Update on the Laptop and I can not find it on the harddrive using a name search in the Finder Find feature. It does not show up in Applications folder, so I do not know if it is on or active on the Laptop.
    The LAPTOP IS ABLE TO USE ALL GOOGLE FEATURES without DESELECTING Enable suspicious activity protection (with Deny outgoing suspicious traffic and Deny incoming suspicious traffic DESELECTED). Why this is apparent I have not officially confirmed.
    What I do know is that I have tried to Uninstall Norton Personal Firewall Version 3.0 (48) with the appropriate uninstaller but it FAILS during the uninstall (I wanted to uninstall and reinstall, it appears the program became corrupted). What I did to possibly circumvent this was to search for the phrase 'Personal Fire" using the Finder's Find feature (Search for items whose name contains 'Personal Fire') and deleted all the files that came up related to Norton Personal Firewall Version 3.0 (48). I then reinstalled Norton Personal Firewall Version 3.0 (48) since then, and it continues to have the problem with Enable suspicious activity protection (with Deny outgoing suspicious traffic and Deny incoming suspicious traffic selected).
    What I have not done:
    Updated Prebinding
    Run TechTool Pro version 4.1.2
    Install Combo OSX 10.3.9
    Initialize HardDrive with complete reinstallation of OSX 10.3.9
    To Summarize Possible Solution
    I've tried many possible solutions, what appears to work best as of now is to DESELECT Enable suspicious activity protection (making sure Deny outgoing suspicious traffic and Deny incoming suspicious traffic are deselected) under Protection Settings in Norton Personal Firewall Version 3.0 (48).
    One could try deselecting something similar in any firewall application other than Norton Personal Firewall Version 3.0 (48), to see if it is suspicious activity settings in firewalls that cause the problem.
    Any comments/feedbacks are extremely welcome.
    Hope It Helps!
    iMac G4 800Mhz SD 10.3.9 & PowerBook G4 15" 1 Ghz 10.3.9    
    iMac G4 800Mhz SD    
    iMac G4 800Mhz SD    
    iMac G4 800Mhz SD    
    iMac G4 800Mhz SD    
    iMac G4 800Mhz SD    

    Hello tr:
    Welcome to Apple discussions and thank you for your very very thorough post.
    Your instincts to delete anything named "Norton" were right on the mark. Norton software is POISON to Macs running OS X. An additional software firewall is, IMHO, completely unnecessary. Turn on the built-in firewall in OS X - it is robust. In fact, if it is already on, there may be a conflict.
    Go to Symantec's web site and use the uninstaller you should find there to get rid of the Norton stuff. After you do that, do a "find" on Norton and Symantec to be sure it is all gone - the stuff hides everywhere.
    Barry

  • I haven't been able to watch any of these three movies because of a pop up saying ''Unknown error (-42110)''. I have tried the possible solution but none of them have worked,they will expire soon.pls help

    I have rented 3 movies added up to a whopping $15.I have tried the possible solution but none of them have worked,they will expire soon.pls help

    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • Adding reminders to my calendar items is no longer an option after the software upgrade.  I also can't get to day and week view, only month view.  What's a possible solution?

    Adding reminders to my calendar items is no longer an option after the software upgrade.  I also can't get to day and week view, only month view.  What's a possible solution?  I'm using Andriod version 4.4.2 with kernal 3.4.0.

        @MaloneTP
    Thanks for keeping me updated!  Do you see the screen options displayed in the following link: http://bit.ly/T2koBL for changing the calendar view options in Kies Air?  Also, let me know if you're able to add a Reminder by following these steps: http://bit.ly/T2l9dY.  Keep me posted.  Thanks!
    AnthonyTa_VZW
    Follow us on Twitter @VZWSupport

  • HT1414 I updated to iOS 6.1.3 a while ago, but recently noticed I can't access wifi (when the wifi off/on switch is frayed out) does. Anyone know a possible solution to this problem.

    This problem occurred in the last few weeks and is a real downer for me because I like apple products but if I can't use wifi then I can't do my work or use much data Any possible solutions will help. Thanks

    Hi DJK2012,
    If you are having an issue with the Wifi option greyed out, you may find the following article helpful:
    iOS: Wi-Fi settings grayed out or dim
    http://support.apple.com/kb/ts1559
    Regards,
    - Brenden

  • My 3G connection is not working after updating to iOS 6.1. I have tried all possible solutions like resetting the network, restarting the iPad

    My 3G connection is not working after updating to iOS 6.1. I have tried all possible solutions like resetting the network , restarting iPad , ...

    The same story. No 3G after updating to 6.1.  Told my daughter temporarily not to do an update on her iPad with 6.01. We've exchanged SIMs. I inserted her SIM in my iPad - 3G appeared immediately. And my SIM in her iPad with ios 6.01 also WORKS FINE. We use the same provider - Megafon Moscow. After attempting to revert SIMs to original configuration, 3G disappeared on my iPad again. Don't know what's going on with SIM during the update to 6.1

  • I have just updated to the new iOS 6, and all my contacts have disappeared? Is there a possible solution to get them back?

    I've just updated to the new iOS 6 and all my contacts have dissappeared, is there a possible solution to bring them back, I really need them back. Thanks in advance.

    You tried clicking on "phone" then "groups" and "Show All Contacts"

  • I am having trouble connecting MacBook Pro (10.6.7) to Novell server. I get incorrect username and password message. I can connect worksations running 10.5 without any problem. Any possible solution? Thanks, Ned

    I am having trouble connecting MacBook Pro (10.6.7) to Novell server. I get incorrect username and password message. I can connect worksations running 10.5 without any problem. Any possible solution? Thanks, Ned

    Having the exact same problem with connecting ML and Snow Leopard machines to a Windows 8.1 machine. Oddly enough, connecting and copying to/from works perfectly from a Mavericks machine, despite the problems reported about Mavericks regarding the exact opposite. An old thread, but did you find a solution?

  • I have installed HP2035n. But when i try to open the embedded web server, i get the error "Firefox doesn't know how to open this address, because the protocol (fe80) isn't associated with any program." What is the possible solution?

    I have installed HP2035n. But when i try to open the embedded web server, i get the error "Firefox doesn't know how to open this address, because the protocol (fe80) isn't associated with any program." What is the possible solution?
    I typed in the IPv6 address of the printer in the address feild of firefox.

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode
    Do a malware check with some malware scanning programs.<br />
    You need to scan with all programs because each program detects different malware.<br />
    Make sure that you update each program to get the latest version of their databases before doing a scan.<br />
    * http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    * http://www.superantispyware.com/ - SuperAntispyware
    * http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    * http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    * http://www.lavasoft.com/products/ad_aware_free.php - Ad-Aware Free
    See also:
    * "Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • Possible solution if you can't install Acrobat 9 Pro via CS4 Installer

    (Thanks to Paul_Belza for this idea.)
    Symptoms:
    Acrobat 9 is grayed out in the Setup window of Creative Suite 4 installer.
    Opening the carat reveals an incorrect explanation of: "Acrobat 9 is already installed."
    You have more than one hard drive attached with an OS X install that has had prior Acrobat installs on it.
    Possible Solution:
    Unmount all drives except your current startup drive and try again.
    Discussion:
    Apparently, the Acrobat prior install scanner is not very picky about where it finds a prior install. It searchs any and all drives rather than just the current startup drive and/or the currently chosen install drive. In my case, I had a clone of my start drive so I could start the arduos process of making a manual deployment setup.
    Since I was previously involved in the CS4 beta, I wasn't too phased when I initially encountered issues on this machine, but much less pleased when I ran all the official uninstallers, cleaners etc and it still claimed Acrobat 9 was installed. Eventually stumbled on Paul Belza's note that the scanner is indiscriminate, unmounted my additional backup drive and all was immediately well.
    (Note: During the process, I also came across the fact that with a volume license Acrobat 9 Pro can be installed simply by mounting the extensions/Acrobat9_es.dmg (whatever it is called exactly) and dragging the folder into your Applications folder. As long as you have previously installed a CS4 app (so it doesn't hang at the serial number screen), it will self-repair and be ready for use.

    Not sure it will help, but try it when logged in as the administrator and with anti-virus turned off. As far as error numbers, must of us have no clue (there seems to be a list at Adobe, but we don't work there.

  • Date display with possible solution not working

    <bean:write name="peter" property="tDate" >
    Hi I am displaying the dates from database using above tag.
    Now the problem is I dont need to display the dates which are sundays
    so let me know how to do this
    thanxs in advance
    possible solution I got as below
    Just add a method to your ActionForm like this:
    code:
    public boolean isDateSunday() {        if (theDate == null) {            return false;        } Calendar cal = Calendar.getInstance(); cal.setTime(theDate); return(cal.get(Calendar.DAY_OF_WEEK) == Calendar.SUNDAY); }
    Then in your jsp:
    <logic:equal name="peter" property="dateSunday" value="false" >
    <bean:write name="peter" property="tDate" >
    </logic:equal>
    but
    Actually I am getting dates from database directly .No actionform is involded.
    I have access to only jsp page and in that follwoing code
    <bean:write name="peter" property="tDate" >
    even i tried to put the java code in jsp file but getting error on this line
    property="dateSunday" as there is no getter method for this in bean.even though there is getter method for tdate

    You dont have to put java code in your jsp.
    Add a getter method that returns a boolean value in which you check if the tDate (date property) resolves to a sunday.
    package yourpkg;
    class YourBean{
       private date tDate; //you already have this property and getter/setter methods for it.
       public boolean isSunday() {
         if(tDate== null){
              return false; //or throw an exception
         Calendar cal = Calendar.getInstance();
         cal.setTime(tDate);
         return cal.get(Calendar.DAY_OF_WEEK) == Calendar.SUNDAY;
        //other props and methods
    }Then in your jsp,
    <logic:equal name="peter" property="sunday" value="false" >
               <bean:write name="peter" property="tDate" >
    </logic:equal>Note the above will automatically call the isSunday() method on your bean.
    Does that help?
    ram.

Maybe you are looking for