I've downloaded movies to my itunes but once they are finished they completely disappear. Also today I opened my itunes and over half of my music and movies that actually show up are gone. Can anyone give me some advice on this problem?

I have downloaded movies through itunes until the latest version came out. Now the movies will download and then disappear. Everything is up to date so I'm not sure what is wrong. Also I opened my itunes today and over half of my music is missing along with several of the movies that do play. Luckily I have all my music saved, but the movies are completely gone. Does anyone have some ideas that could help me?

There's a whole lot to read in your post, and frankly I have not read it all.
Having said that, this troubleshooting guide should help:
http://support.apple.com/kb/TS1538
In particular, pay attention to the mobile device support sections near the bottom, assuming you have already done the items above it.

Similar Messages

  • I updated my software today and since have not been able to use some of the games on Facebook. I have installed the flash player 12 and still problems, can anyone give me some advice?

    I updated my software today and since have not been able to use some of the games on Facebook. I have installed the flash player 12 and still problems, can anyone give me some advice?

    Your above posted list of installed plugins doesn't show the Flash plugin for Firefox.<br />
    See [[Managing the Flash plugin]] and [[Installing the Flash plugin]]
    You can check the Adobe welcome and test page: http://www.adobe.com/software/flash/about/
    You can use this manual download link:
    *http://kb2.adobe.com/cps/191/tn_19166.html#main_ManualInstaller

  • HT201413 i tried to resore my iphone 3GS with itunes but it is showing an error 29 , can anyone help me to sort out this problem?

    i tried to resore my iphone 3GS with itunes but it is showing an error 29 , can anyone help me to sort out this problem

    Try to restore get a error 29 - iPhone 3GS - iFixit
    See if this helps.

  • When I select a song on my iTunes library is will not play, no sound and does not advance.  The speaker on my computer MacBook Air is fine and functioning otherwise.  I am a complete idiot when it comes to computers, ext.  Can anyone give me some advice

    When I select a song to play from my iiTunes library it will not play, advance, no sound.  Speakers are fine otherwise on MacBook Air.  Where can I start.?  Thank you for any suggestions.

    Hi,
    See if these Links for Home Sharing add any light to the problem
    Understanding
    http://support.apple.com/kb/HT3819
    Troubleshooting
    http://support.apple.com/kb/TS2972
    How to
    http://support.apple.com/kb/HT2688

  • Can anyone give me some advice on databases?

    Hi All,
    Ive recently created my first database in phpmyadmin so i am new to the whole process. Id like to some how apply a time limit of 60 days to the data that is uploaded to the table, after this time id like the data to be automatically deleted. Is this possible in phpmyadmin and can this be done without changing or making alterations to the code in Dreamweaver? Please see image below to see the structure of my database table.
    Thank you for any advice!

    Ok i have done that and inserted a new data via my 'insert_donations.php' page which has uploaded the new data and a date now appears in 'dateCreated' column in my table, all working as it should! I tried changing the date to yesterdays date via phpmyadmin but it didnt seem to like it so ive left it and will wait to see if it deletes it tomorrow. Fingers crossed! BUT the problem i am having now is when i open the 'insert_donations.php' the security login page (index.php) should load first but now it doesn't for some reason. It was working great until i added that earlier code (above)?
    Heres what the code looks like -
    <?php require_once('../Connections/milesdata.php'); ?>
    <?php
    $con=mysqli_connect("localhost","root","root","milesdata");
    // Check connection
    if (mysqli_connect_errno())
       echo "Failed to connect to MySQL: " . mysqli_connect_error();
    mysqli_query($con,"DELETE FROM donations WHERE date < DATE_SUB(NOW(), INTERVAL 1 DAY");
    mysqli_close($con);
    ?>
    <?php
    if (!isset($_SESSION)) {
      session_start();
    $MM_authorizedUsers = "";
    $MM_donotCheckaccess = "true";
    // *** Restrict Access To Page: Grant or deny access to this page
    function isAuthorized($strUsers, $strGroups, $UserName, $UserGroup) {
      // For security, start by assuming the visitor is NOT authorized.
      $isValid = False;
      // When a visitor has logged into this site, the Session variable MM_Username set equal to their username.
      // Therefore, we know that a user is NOT logged in if that Session variable is blank.
      if (!empty($UserName)) {
        // Besides being logged in, you may restrict access to only certain users based on an ID established when they login.
        // Parse the strings into arrays.
        $arrUsers = Explode(",", $strUsers);
        $arrGroups = Explode(",", $strGroups);
        if (in_array($UserName, $arrUsers)) {
          $isValid = true;
        // Or, you may restrict access to only certain users based on their username.
        if (in_array($UserGroup, $arrGroups)) {
          $isValid = true;
        if (($strUsers == "") && true) {
          $isValid = true;
      return $isValid;
    $MM_restrictGoTo = "index.php";
    if (!((isset($_SESSION['MM_Username'])) && (isAuthorized("",$MM_authorizedUsers, $_SESSION['MM_Username'], $_SESSION['MM_UserGroup'])))) {  
      $MM_qsChar = "?";
      $MM_referrer = $_SERVER['PHP_SELF'];
      if (strpos($MM_restrictGoTo, "?")) $MM_qsChar = "&";
      if (isset($_SERVER['QUERY_STRING']) && strlen($_SERVER['QUERY_STRING']) > 0)
      $MM_referrer .= "?" . $_SERVER['QUERY_STRING'];
      $MM_restrictGoTo = $MM_restrictGoTo. $MM_qsChar . "accesscheck=" . urlencode($MM_referrer);
      header("Location: ". $MM_restrictGoTo);
      exit;
    ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $editFormAction = $_SERVER['PHP_SELF'];
    if (isset($_SERVER['QUERY_STRING'])) {
      $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
      $insertSQL = sprintf("INSERT INTO donation (name, url) VALUES (%s, %s)",
                           GetSQLValueString($_POST['name'], "text"),
                           GetSQLValueString($_POST['url'], "text"));
      mysql_select_db($database_milesdata, $milesdata);
      $Result1 = mysql_query($insertSQL, $milesdata) or die(mysql_error());
      $insertGoTo = "insert_success.php";
      if (isset($_SERVER['QUERY_STRING'])) {
        $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
        $insertGoTo .= $_SERVER['QUERY_STRING'];
      header(sprintf("Location: %s", $insertGoTo));
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Insert data</title>
    <style type="text/css">
    @import url("../Style sheet.css");
    a:link {
              color: #D91327;
    a:visited {
              color: #D91327;
    a:hover {
              color: #CEB239;
    a:active {
              color: #D91327;
    </style>
    </head>
    <body>
    <div id="container"><img src="../banner.jpg" width="1082" height="187" alt="banner" />
    <p> </p>
    <p class="admin_heading">Insert Record to Database</p>
    <p> </p>
    <form action="<?php echo $editFormAction; ?>" method="post" name="form1" id="form1">
      <table align="center">
        <tr valign="baseline">
          <td height="25" align="right" nowrap="nowrap" bgcolor="#E6CC7F">Deceased Name:</td>
          <td height="25" bgcolor="#E6CC7F"><input type="text" name="name" value="" size="70" /></td>
        </tr>
        <tr valign="baseline">
          <td height="25" align="right" nowrap="nowrap" bgcolor="#F5E7B8">Deceased Unique Url:</td>
          <td height="25" bgcolor="#F5E7B8"><input type="text" name="url" value="" size="70" /></td>
        </tr>
        <tr valign="baseline">
          <td nowrap="nowrap" align="right"> </td>
          <td><input type="submit" class="submit" value="Insert record" /></td>
        </tr>
      </table>
      <input type="hidden" name="MM_insert" value="form1" />
    </form>
    <p> </p>
    <p class="maintext">If you wish to just update data in database please click <a href="update_donation.php">here</a></p>
    </div>
    </body>
    </html>

  • I just bought a new iPhone 5 and both the itunes and the App Store apps don't work, can anyone give me some answers?

    I just bought a new iPhone 5 and both the itunes and the App Store apps don't work, can anyone give me some answers?

    Follow the directions here:
    http://support.apple.com/kb/HT2109

  • Can anyone give me some documents for data cluster

    Hi,
    can anyone give me some documents for data cluster?
    ths!
    regards!

    Hi ,
    The following is a documentation on the <b>Data Cluster</b>:
    <b>Data clusters</b> are specific to ABAP. Although it is possible to read a cluster database using SQL statements, only ABAP can interpret the structure of the data cluster.
    You can store <b>data clusters</b> in special databases in the ABAP Dictionary. These are called ABAP cluster databases, and have a prescribed structure:
    <u><b>Cluster Databases</b></u> ( I have explained the cluster databse below )
    This method allows you to store complex data objects with deep structures in a single step, without having to adjust them to conform to the flat structure of a relational database. Your data objects are then available systemwide to every user. To read these objects from the database successfully, you must know their data types.
    You can use cluster databases to store the results of analyses of data from the relational database. For example, if you want to create a list of your customers with the highest revenue, or an address list from the personnel data of all of your branches, you can write ABAP programs to generate the list and store it as a data cluster. To update the <b>data cluster</b>, you can schedule the program to run periodically as a background job. You can then write other programs that read from the data cluster and work with the results. This method can considerable reduce the response time of your system, since it means that you do not have to access the distributed data in the relational database tables each time you want to look at your list.
    <b>Cluster Database :</b>
                    Cluster databases are special relational databases in the ABAP Dictionary that you can use to store data clusters. Their line structure is divided into a standard section, containing several fields, and one large field for the <b>data cluster.</b>
    <b>Creating a Directory of a Data Cluster</b>
    To create a directory of a data cluster from an ABAP cluster database, use the following statement:
    Syntax
    <b>IMPORT DIRECTORY INTO <dirtab>
                     FROM DATABASE <dbtab>(<ar>)
                     [CLIENT <cli>] ID <key>.</b>
    This creates a directory of the data objects belonging to a data cluster in the database <dbtab> in the internal table <dirtab>. You must declare <dbtab> using a TABLES statement.
    To save a <b>data cluster</b> in a database, use the <b>EXPORT TO DATABASE</b> statement .
    For <ar>, enter the two-character area ID for the cluster in the database. The name <key> identifies the data in the database. Its maximum length depends on the length of the name field in <dbtab>. The CLIENT <cli> option allows you to disable the automatic client handling of a client-specific cluster database, and specify the client yourself. The addition must always come directly after the name of the database.
    The IMPORT statement also reads the contents of the user fields from the database table.
    If the system is able to create a directory, SY-SUBRC is set to 0, otherwise to 4.
    The <b>internal table</b> <dirtab> must have the ABAP Dictionary structure CDIR.
    <b>******** Sample Program illustrating the data cluster .</b>
    PROGRAM Zdata_cluster.
    TABLES INDX.
    ******to save data objects in cluster databases
    DATA: BEGIN OF ITAB OCCURS 100,
            COL1 TYPE I,
            COL2 TYPE I,
          END OF ITAB.
    DO 3000 TIMES.
      ITAB-COL1 = SY-INDEX.
      ITAB-COL2 = SY-INDEX ** 2.
      APPEND ITAB.
    ENDDO.
    INDX-AEDAT = SY-DATUM.
    INDX-USERA = SY-UNAME.
    INDX-PGMID = SY-REPID.
    EXPORT ITAB TO DATABASE INDX(HK) ID 'Table'.
    WRITE: '    SRTF2',
         AT 20 'AEDAT',
         AT 35 'USERA',
         AT 50 'PGMID'.
    ULINE.
    SELECT * FROM INDX WHERE RELID = 'HK'
                       AND   SRTFD = 'Table'.
      WRITE: / INDX-SRTF2 UNDER 'SRTF2',
               INDX-AEDAT UNDER 'AEDAT',
               INDX-USERA UNDER 'USERA',
               INDX-PGMID UNDER 'PGMID'.
    ENDSELECT.
    ****To create a directory of a data cluster from an ABAP ****cluster database
    DATA DIRTAB LIKE CDIR OCCURS 10 WITH HEADER LINE.
    IMPORT DIRECTORY INTO DIRTAB FROM DATABASE
                                      INDX(HK) ID 'Table'.
    IF SY-SUBRC = 0.
      WRITE: / 'AEDAT:', INDX-AEDAT,
             / 'USERA:', INDX-USERA,
             / 'PGMID:', INDX-PGMID.
      WRITE  / 'Directory:'.
      LOOP AT DIRTAB.
        WRITE: / DIRTAB-NAME,  DIRTAB-OTYPE, DIRTAB-FTYPE,
                 DIRTAB-TFILL, DIRTAB-FLENG.
      ENDLOOP.
    ELSE.
      WRITE 'Not found'.
    ENDIF.
    *******run this program and see the result.
    Hope this documentation will give you an idea of data cluster.
    if useful, do reward with the points.
    Regards,
    Kunal.

  • When i connect my iphone 4,an error message saying usb device is malfunctioning is appearing...can anyone give me a solution for this?

    when i connect my iphone 4,an error message saying usb device is malfunctioning is appearing...can anyone give me a solution for this?i tried using on a different pc.but still get the same result..

    First thing i would try is to use another cable if available.

  • Hi, I have recently updated my iMac from OS x mountain lion to OS X Mavericks. After that I can't upload any video and some files to my personal email account. Can anyone please help me to sort this problem.

    Hi,
    I have recently updated my iMac from OS x mountain lion to OS X Mavericks.
    After that I can't upload any video and some files to my personal email account.
    I have tried to send a small video clip to the sender as attachment. i have done this before
    with the same video same and same email account. This problem found just after installed the
    OS X Movericks. Can anyone please help me to sort this problem.
    Thanks.
    Roman

    Please follow these directions to delete the Mail "sandbox" folders. In OS X 10.9 there are two sandboxes, while in earlier versions there is only one.
    Back up all data.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Containers/com.apple.mail
    Right-click or control-click the highlighted line and select
    Services ▹ Reveal
    from the contextual menu.* A Finder window should open with a folder named "com.apple.mail" selected. If it does, move the selected folder — not just its contents — to the Desktop. Leave the Finder window open for now.
    Log out and log back in. Launch Mail and test. If the problem is resolved, you may have to recreate some of your Mail settings. You can then delete the folder you moved and close the Finder window. If you still have the problem, quit Mail again and put the folder back where it was, overwriting the one that may have been created in its place. Repeat with this line:
    ~/Library/Containers/com.apple.MailServiceAgent
    Caution: If you change any of the contents of the sandbox, but leave the folder itself in place, Mail may crash or not launch at all. Deleting the whole sandbox will cause it to be rebuilt automatically.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combinationcommand-C. In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.

  • I deleted my back up files from my external hard drive and my trash won't empty. I get an error code -22. Can anyone tell me how to fix this?

    I deleted my back up files from my external hard drive and my trash won't empty. I get an error code -22. Can anyone tell me how to fix this?

    JLCruz wrote:
    I deleted my back up files from my external hard drive ...
    If this is related to Time Machine Backups...
    See here  >  Should I delete old backups?  If so, How?
    From Here  >  http://pondini.org/TM/FAQ.html
    If the TRASH still won’t Empty...
    See Here  >  http://pondini.org/TM/E6.html

  • I've been trying to transfer Photos I took on my iPhone to my PC am unable to figure it out, can anyone give me some pointer onthis?

    Can anyone give me any Pointers on how to Transfer my Photos
    That I took on my iPhone to my PC?

    when ever you connect ur iphone to ur computer , a new tab appears wit iphone icon on it. there is option in that tab to import pics .This will help you out, or when ever you connect it to ur pc go to my computer select your iphone select the pics , right click and check the option import .

  • When I am downloading a free application (foursquare) in the App Store, it came up with a message saying Verification Required which means I need to pay for it. Can anyone tell me how to fix this problem?

    I am currently using iPhone 3GS and when I am going to download foursquare which is a FREE application in the App Store, it came up with a message saying Verification Required which means I need to pay for it. Can anyone tell me how to solve the problem? For further informations, I am currently using Windows running Vista. Special thanks to those who replied.

    Your iTunes account sounds like it does not have a credit card or payment attached to it. Even free apps require that you have entered payment information even though you won't be charged for the app.

  • My daughters ipod is not working it is just showing a blank screen can anyone give any advice

    My daughters ipod touch is not working it just shows a blank screen.Can anyone help?

    Basics from the manual are restart, reset, restore.  Have you tried each of these?

  • Any one can plz give me the Solution for this problem

    select country ----text field
    select states ---------text field
    select country is one text field and select states is another text field .
    By using ajax if i select country like india states belonging to the india should be displayed in select states text field -----
    like if i select any country , belonging states should be displayed in selected states text field.
    can any one plz suggest me for this problem by using ajax with step by step solution.
    thanks in advance.....

    nareshannam wrote:
    can any one plz suggest me for this problem by using ajax with step by step solution.
    thanks in advance.....Well my Idea is to look for another Forum ,This is not a Ajax Forum
    maybe try [http://www.dynamicdrive.com/] or [http://www.webdeveloper.com/]

  • RE: CNAME change im stuck can anyone give me some help

    I followed the advice given to me in a post a few days ago. I want to change my domain name over to my new site but really dont know how to do it so wrote to the company and got this reply
    We unfortunatly do not have a system in place that allows us to change the CNAME. If you wish to change the CNAME you would need to transfer your domain name away from us (£15 charge to transfer away) and then with your new registrar you can change the CNAME for your domain name
    I have a question who would be my new registrar and how do I do this know, I tried using ftp and that didnt work so went to change the name over and now that doesnt work either, As im new to this im really stuck what to do. Can anyone help me please

    1. Login into your Godaddy account
    2. Click on Manage Domains and click on your domain name
    3. Click on the "Total DNS" link
    4. Under Host click on the edit link for "www"
    5. For "Alias Name" use: www
    6. For 'Points to Host Name" use: web.mac.com
    7. Click "Ok"
    8. Should update within 24 hours
    from this thread:
    http://discussions.apple.com/thread.jspa?threadID=1086731&tstart=50
    and then
    2)If you're not already logged in to .Mac, go to www.mac.com, and log in.
    3)Click Account in the left column on the .Mac homepage, and confirm your login.
    4)On the Account Settings page, click the Personal Domain button, and then follow the instructions that appear.
    When asked to enter your domain name, be sure to type the entire domain name (including the extension, such as .com, .net) that you've registered.
    5)When you see a screen confirming that .Mac is configured to host your domain, go to your domain name registrar's web hosting area, and point your domain (by adding or changing a "cname record") to web.mac.com
    For instructions on changing the cname register, contact your domain name registrar.
    Please note that the whole process can take up to 48 hours and maybe because of christmas and new year more...
    Regards,
    Cédric

Maybe you are looking for