Video download failed but still charged me!!!!

I had just recently bought a music video from itunes but the download didn't work then when i looked it still charged me for the incomplete download!!!!! how do i get my money back?

If your download gets interrupted mid-flow it usually resumes next time you start iTunes. Just occasionally however the item may complete the transfer to your download folder, but fail to be copied into your main library. Have a look inside the download folder to see if you can see any evidence of the file in question. It might also be worth checking the Movies section in case iTunes has failed to set the Media Kind as Music Video.
tt2

Similar Messages

  • My Ipod Touch is not recognised in itunes or my computer but still charges, Please help

    My Ipod Touch is not recognised in itunes or my computer but still charges when connected via USB Please help

    Did plugging it into another USB port do any good? Make sure it is a USB port on the back of your PC and not via a USB hub or one on the front as they sometimes do not output enough power for the iPod to properly communicate with your PC.
    Do you have another 30 pin dock connector cable around you use to try and rule out a faulty cable? 
    Did you try a hard reset of the device with it still connected to your PC?  To do this, press and hold both the Sleep/Wake and Home buttons together long enough for the Apple logo to appear.
    With the article above were you able to verify that the Apple Mobile Device Service was installing and running on your system?
    Lastly, try plugging it into a different PC to see if it is recognized there.  It can help narrow down whether it is an issue with the iPod or with your PC.
    B-rock

  • Want to playback archived webcast recorded using Cisco webex recording. Downloaded Cisco webex meeting software from apple download page but still cannot play recording

    Want to playback archived webcast recorded using Cisco webex recording. Downloaded Cisco webex meeting software from apple download page but still cannot play recording

    You will probably find better support about the features of the Webex app on their support page here: http://www.webex.com/products/web-conferencing/mobile-iphone-ipad-faq.html
    Doesn;t look like it's listed as a feature of the iPad app.

  • HT202159 I was downloading a app from the app store and it downloaded about 85% then gave an error message download failed but when I reopen the app store to the purchases the resume button show but when i click it the same error comes up failed to downlo

    I was downloading a app from the app store and it downloaded about 85% then gave an error message download failed but when I reopen the app store to the purchases the resume button show but when i click it the same error comes up failed to download

    If you have more than one user account, these instructions must be carried out as an administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Select
    /var/log ▹ install.log
    from the hierarchical list on the left. If you don't see that list, select
    View ▹ Show Log List
    from the menu bar. Then select the messages from the last installation or update attempt, starting from the time when you initiated it. If you're not sure when that was, start over and note the time. Copy them to the Clipboard (command-C). Paste into a reply to this message (command-V).
    If there are runs of repeated messages, post only one example of each. Don’t post many repetitions of the same message.
    When posting a log extract, be selective. Don't post more than is requested.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Edit it out by search-and-replace in a text editor before posting.

  • To download file but still the Save Dialog box still not show? Please help.

    Hi All,
    Below is my full code to download file but still the Save Dialog box still not show..
    <%@ taglib prefix="cs" uri="futuretense_cs/ftcs1_0.tld"
    %><%@ taglib prefix="asset" uri="futuretense_cs/asset.tld"
    %><%@ taglib prefix="assetset" uri="futuretense_cs/assetset.tld"
    %><%@ taglib prefix="commercecontext" uri="futuretense_cs/commercecontext.tld"
    %><%@ taglib prefix="ics" uri="futuretense_cs/ics.tld"
    %><%@ taglib prefix="listobject" uri="futuretense_cs/listobject.tld"
    %><%@ taglib prefix="render" uri="futuretense_cs/render.tld"
    %><%@ taglib prefix="siteplan" uri="futuretense_cs/siteplan.tld"
    %><%@ taglib prefix="searchstate" uri="futuretense_cs/searchstate.tld"
    %><%@ taglib prefix="locale" uri="futuretense_cs/locale1.tld"
    %><%@ taglib prefix="dateformat" uri="futuretense_cs/dateformat.tld"
    %><%@ taglib prefix="blobservice" uri="futuretense_cs/blobservice.tld"
    %><%@ taglib prefix="satellite" uri="futuretense_cs/satellite.tld"     
    %><%@ taglib prefix="date" uri="futuretense_cs/date.tld"
    %><%@ page import="COM.FutureTense.Interfaces.*,
    COM.FutureTense.Util.ftMessage,
    COM.FutureTense.Util.ftErrors"
    %><%@ page import="COM.FutureTense.Interfaces.*,
    COM.FutureTense.Util.ftMessage,
    COM.FutureTense.Util.ftErrors"
    %>
    <%@ page language="java" contentType="text/html;charset=UTF-8" %>
    <%@ page import="java.io.File" %>
    <%@ page import="java.io.OutputStream" %>
    <%@ page import="java.io.FileInputStream" %>
    <cs:ftcs><%-- france/test_template
    INPUT
    OUTPUT
    --%>
    <%-- Record dependencies for the Template --%>
    <ics:if condition='<%=ics.GetVar("tid")!=null%>'><ics:then><render:logdep cid='<%=ics.GetVar("tid")%>' c="Template"/></ics:then></ics:if>
    <%
    String fileToFind = request.getParameter("file");
    if(fileToFind == null) return;
    File fname = new File(fileToFind);
    System.out.println("Save As: "+fname.getName() );
    if(!fname.exists()) return;
    FileInputStream istr = null;
    response.setContentType("application/octet-stream;charset=ISO-8859-1");
    response.setHeader("Content-Disposition", "attachment; filename=\"" + fname.getName() + "\";");
    try {
    istr = new FileInputStream(fname);
    int curByte=-1;
    while( (curByte=istr.read()) !=-1){
    out.write(curByte);
    out.flush();
    } catch(Exception ex){
    ex.printStackTrace(System.out);
    } finally{
    try {
    if(istr!=null) istr.close();
    } catch(Exception ex){
    System.out.println("Major Error Releasing Streams: "+ex.toString());
    try {
    response.flushBuffer();
    } catch(Exception ex){
    System.out.println("Error flushing the Response: "+ex.toString());
    %>
    </cs:ftcs>
    Can anybody help me with this??? What is lacking...
    Thank you in advance.

    Put this code into a servlet rather than a JSP.
    JSP are for returning text based HTML pages. It adds extra carriage returns into the response that will corrupt the file, and prevent the dialog showing up.
    This code is much better off being in a servlet
    If you are using a FileInputStream, you should be using a ServletOutputStream rather than the JSP writer: response.getOutputStream()
    When dealing with file input in a JSP/Servlet you should use the methods of ServletContext. getRealPath() turns a website relative file into a real location on disk. getResourceAsStream() opens the file for you. getResourceAsStream() is more reliable as it will work even if the web app is deployed in a packed WAR.
    Cheers,
    evnafets

  • AAA authorization fails, but still command is executed...

    Hi everyone,
    i've implemented authorization and it basically works. The user can only use a limited set of commands (show int status, conf t, interface ethernet, interface gigabitethernet, interface fastethernet, shut, no shut).
    Now I try to configure a loopback or Vlan interface, which should not be allowed.
    COMMANDS IMPLEMENTED:
    aaa authorization config-commands
    aaa authorization commands 0 vty group tacacs+ none
    aaa authorization commands 1 vty group tacacs+ none
    aaa authorization commands 15 vty group tacacs+ none
    line vty 0 15
    authorization commands 0 vty
    authorization commands 1 vty
    authorization commands 15 vty
    COMMAND AND OUTPUT FROM TESTING:
    SWITCH(config)#int vlan 2
    Command authorization failed.
    DEBUG AAA AUTHORIZATION:
    SWITCH#
    Dec  7 14:31:50: AAA: parse name=tty1 idb type=-1 tty=-1
    Dec  7 14:31:50: AAA: name=tty1 flags=0x11 type=5 shelf=0 slot=0 adapter=0 port=1 channel=0
    Dec  7 14:31:50: AAA/MEMORY: create_user (0x46603F4) user='USER1' ruser='SWITCH' ds0=0 port=
    'tty1' rem_addr='10.10.255.249' authen_type=ASCII service=NONE priv=15 initial_task_id='0', vrf= (id=0)
    Dec  7 14:31:50: tty1 AAA/AUTHOR/CMD (60725991): Port='tty1' list='SCAS' service=CMD
    Dec  7 14:31:50: AAA/AUTHOR/CMD: tty1 (60725991) user='USER1'
    Dec  7 14:31:50: tty1 AAA/AUTHOR/CMD (60725991): send AV service=shell
    Dec  7 14:31:50: tty1 AAA/AUTHOR/CMD (60725991): send AV cmd=interface
    Dec  7 14:31:50: tty1 AAA/AUTHOR/CMD (60725991): send AV cmd-arg=Vlan
    Dec  7 14:31:50: tty1 AAA/AUTHOR/CMD (60725991): send AV cmd-arg=2
    Dec  7 14:31:50: tty1 AAA/AUTHOR/CMD (60725991): send AV cmd-arg=<cr>
    Dec  7 14:31:50: tty1 AAA/AUTHOR/CMD (60725991): found list "SCAS"
    Dec  7 14:31:50: tty1 AAA/AUTHOR/CMD (60725991): Method=tacacs+ (tacacs+)
    Dec  7 14:31:50: AAA/AUTHOR/TAC+: (60725991): user=USER1
    Dec  7 14:31:50: AAA/AUTHOR/TAC+: (60725991): send AV service=shell
    Dec  7 14:31:50: AAA/AUTHOR/TAC+: (60725991): send AV cmd=interface
    Dec  7 14:31:50: AAA/AUTHOR/TAC+: (60725991): send AV cmd-arg=Vlan
    Dec  7 14:31:50: AAA/AUTHOR/TAC+: (60725991): send AV cmd-arg=2
    Dec  7 14:31:50: AAA/AUTHOR/TAC+: (60725991): send AV cmd-arg=<cr>
    Dec  7 14:31:50: AAA/AUTHOR (60725991): Post authorization status = FAIL
    Dec  7 14:31:50: AAA/MEMORY: free_user (0x46603F4) user='USER1' ruser='SWITCH' port='tty1' r
    em_addr='10.10.255.249' authen_type=ASCII service=NONE priv=15
    As you can see the reply from the Tacacs is a "FAIL", but still the command is executed.
    RESULT:
    SWITCH#sh run int vlan 2
    Building configuration...
    Current configuration : 38 bytes
    interface Vlan2
    no ip address
    end
    QUESTION:
    I don't understand what the problem is...Since I get a FAIL from the Tacacs Server I assume that the configuration on that side is fine.
    But why would the switch ignore a FAIL and still execute the command? Same problem exists with the Loopback-Interface.
    Is this me not understandig the basic concept of AAA or is this some other problem?
    The Switch is a Cisco WS-C3750-24TS (running c3750-ipbasek9-mz.122-50.SE2.bin).
    The Tacacs runs Cisco Secure ACS4.2.0.124
    Thanks,
    Tom

    Hi Tom,
    this is CSCtd49491 : TACACS+ command authorization for interface configuration fails .
    The bug is currently in a Closed state, meaning that the "Bug report is valid, but a conscious decision has been made not to fix it at all or in all releases."
    As far as I can tell, the impact is rather limited since the interface that gets created will have no effect unless the vlan exists, and even then the effect is minimal since it cannot be configured.
    You may want to open a TAC case or work with your account team to get the bug re-opened if this is still a concern though.
    hth
    Herbert

  • I cancelled my transaction to purchase the lion ox, but still charged me

    I cancelled my transaction to purchase the lion ox, but still charged me?

    This has nothing to do with itunes.  it is a MAc app Store question.
    Once you click "Buy" it is bought.  There is no cancelling.

  • New gen 4 touch. first time on itunes window comes up needs at least version 10.6.3...i downloaded this but still asks every time and cant load music

    New gen 4 touch. first time on itunes window comes up needs at least version 10.6.3...i downloaded this but still asks every time and cant load music

    See the futher information area of Troubleshooting issues with iTunes for Windows updates for download advice and direct links if required.
    See this migrate iTunes library post for advice on moving the library over from a previous computer and this post on deduplication.
    tt2

  • Download failed but card still charged

    I tried to purchase Foo Fighters greatest hits the other day. The download failed and BB World crashed. I noticed that the 10 dollars was still charged to my Mastercard, even though I didn't get my download. It doesn't show up in "My World" and when I go to the item again it still wants me to pay.

    Hello!
    I suggest that you clear the AppWorld application cache.
    KB24714 How to clear cache for BlackBerry World on BlackBerry smartphones and the BlackBerry PlayBook tablet
    Hopefully it'll work for you! Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Download failed but phone still stuck...

    I don't know much about these things, hence why I am posting here. In trying to download iOS7 the first time, I got through most of the process - however, in the finishing stages a message popped up on iTunes saying download failed. The REAL problem, however, is that my phone is stuck on the screen showing the download bar; it no longer comes up in iTunes, pressing the home button does nothing - so I'm wondering if it is safe to unplug it from my computer? Will anything bad happen if I do that? I'm scared.....

    chelsmeister wrote:
    I don't know much about these things, hence why I am posting here. In trying to download iOS7
    as are millions & millions of other people.
    Plug the iPad into your computer, open iTunes then press & hold both Home & Power on the iPad.

  • Re charge was canceled but still charging me!

    I had problems on the last time to be refounded by Skype.
    I had selected an opition to desactivate the automaticly re charge but still auto recharging me.
    The auto recharge was today, 3 december 2012.
    I am asking to cancel this order, once I didn't need those creditis.
    Contact information
    [Removed to preserve confidentiality.]
    Please do not duplicate post; doing so does not conform with the Community Guidelines

    if the normal method of deactivating auto-recharge is not working in your case, 
    you may need to contact customer service for further assistance :
    http://community.skype.com/t5/General-Discussion/How-to-Contact-Skype-Customer-Service/m-p/431911
    IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
    ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES
    SEE MORE TIPS, TRICKS, TUTORIALS AND UPDATES in
    | skypefordummies.blogspot.com | 

  • My iPod nano 6th gen is not recognised by my computer or itunes, but still charges?

    My laptop recently came back from repairs and  wiped everything off of it, so I have had to reinstall everything again. The only way I have got my music is on my ipod, so I cant lose any of the music stored on the ipod.
    I have tried everything to connect it to my laptop, but it just wont connect.
    I have followed all instructions from other people who have had the same problem, but nothing works. I have tried uninstalling itunes, where I delete everything and reinstall it. I have tried uninstalling all my usb ports and reinstalling them. I have tried to download apple usb driver, but it didn't work. I have reset my ipod many times - but nothing works! My computer just wont show my ipod, but it still charges it.

    And you have a tried a different USB cable to verify that the current cable is not faulty or damaged? If so, that points to a hardware issue with the Nano, likely its dock connector port. Look for signs of damaged/bent/corroded pins or debris that could be blocking a proper connection.
    B-rock

  • OS X Lion download failed but the machine thinks it's installed? What can I do?

    I tried to download Lion on a second authorized macbook, but the download failed. The App store now says that Lion is installed, even though it isn't, and it won't let me download again and install it properly.
    Being a Mac newbie I have no idea what to do. Can anyone help please?
    Geoff

    Hi Colin
    Thanks for that. You were spot on.
    I love using my Mac but am still getting used to it after running Windows for so long.  Simpler as long as you know where to look.
    Cheers

  • Ipod not being recognized but still charging

    I've had my 60 gig ipod for about two years now. I tried connecting it the other day to charge and add songs to it when my computer says that the device has "malfunctioned" and cannot be recognized.
    I disconnected and tried again but no luck. It still charges,it still plays music,but itunes and windows choose not to recognize it. I tried 4 out of the 5 "r's" because of course i can't restore my ipod without itunes.
    I also tried the other ipods I had in my house and they all worked perfectly fine.
    Any suggestions as to what i can do?

    We're having a similar issue with a 30Gig 5th Gen on Windows XP. The only difference is that the battery was completely dead when initially attached and we didn't get the malfunctioned error. We've tried it on different computers (one with iTunes 7.x and the other with 8.x) with the same results.
    Have tried resetting (menu/select) numerous times, as well as going through the diagnostic (both manual and automatic). Can't seem to find anything wrong in the diagnostics.
    The device now has a full charge, and still won't be seen by either Windows or iTunes.

  • Ipod nano 6th generation wont connect to computer or itunes, but still charges

    I have an Ipod nano 6 that will not connect to my computer. It still charges however. I tried a new cord. I uninstalled and reinstalled itunes. I reset my computer and the ipod. I looked to see if it was a problem with my usb drivers and the ipod did not show up. I have basically tried everything but restoring it. Any help is greatly appreciated

    Hey JHost13!
    I have an article for you that will help you troubleshoot this issue with your iPod nano:
    iPod not recognized in My Computer and in iTunes for Windows
    http://support.apple.com/kb/ts1369
    Thanks for coming to the Apple Support Communities!
    Cheers,
    Braden

Maybe you are looking for

  • Css to center align

    Hi I have tried to center allign using css as described in a tutorial cafetownsend by adobe. However, it doesn't seem to work. I added the link to the css stylesheet and put the dive tag in but it doesn't allign to center. This is the css #wrapper {

  • Info Record Validity Dates - Future Period

    Hi Gurus can you help we have current Purchase Info Recs in place, with pricing condition records that have a validity date that will expire in the next few days we have already loaded the next pricing for the next cotnract period with the vendor, bu

  • IDOC TPSSHT01 - Subsequent delivery split

    Hello All, How do i invoke subsequent delivery split for a shipment order via idoc TPSSHT01. I want to create a shipment order for a delivery and then invoke subsequent delivery split for the qty received via idoc TPSSHT01. Thanks for your help in ad

  • Quality Managemnt in BW

    Hi all, I have heard this QM in datawarehousing and I don't know where do we do that in BW. Please let me know, if any of you have idea on this. thank you Gandaki

  • Elements 9 inspiration browser update for Mac

    When I attempt to update the inspiration browser for my Mac, I get the following error message: " This  application cannot be installed because this installer has been misconfigured. Please contact the application author for assistance." Can anyone h