Really need quick help!!

I am trying to renew my membership but it is not working. It should not be a problem of the card because I have funds in it. I did try to renew it already but not it says my order is being processes, however the order has been in the process for 15 days now. I am in need of certain programs to continue my work so if you would please help me quickly it would be very helpful.

Hi There,
Kindly contact our support team via: http://helpx.adobe.com/in/contact.html?step=CCSN_adobe-id-signing-in_stillNeedHelp
If you are unable to use chat option kindly try below mentioned steps.
Try different browser.
Delete cookies and cache
If you are still not able to chat, Kindly reply with the below mentioned information.
OS version:
Browser Version:
You can also try: http://helpx.adobe.com/x-productkb/global/phone-support-orders.html 
Thanks,
Atul Saini

Similar Messages

  • Anybody who can help me? I really need your help

    I've tried to execute J2ee tutorial examples.
    I don't know why this sample didn't execute...I've already finished to set up J2EE and enviornment variables.
    I was trying this part from j2ee tutorial titled as "Packing Web modules".
    Whenever I type "asant create-war" to make web modules in command window. I always got error.
    Packaging Web Modules(From J2ee tutorial for your information)
    A web module must be packaged into a WAR in certain deployment scenarios and whenever you want to distribute the web module. You package a web module into a WAR using the Application Server deploytool utility, by executing the jar command in a directory laid out in the format of a web module, or by using the asant utility. This tutorial allows you to use use either the first or the third approach. To build the hello1 application, follow these steps:
    In a terminal window, go to <INSTALL>/j2eetutorial14/examples/web/hello1/.
    Run asant build. This target will spawn any necessary compilations and will copy files to the <INSTALL>/j2eetutorial14/examples/web/hello1/build/ directory.
    To package the application into a WAR named hello1.war using asant, use the following command:
    asant create-war
    This command uses web.xml and sun-web.xml files in the <INSTALL>/j2eetutorial14/examples/web/hello1 directory.
    To learn how to configure this web application, package the application using deploytool by following these steps:
    Start deploytool.
    Create a web application called hello1 by running the New Web Component wizard. Select FileNewWeb Component.
    In the New Web Component wizard:
    Select the Create New Stand-Alone WAR Module radio button.
    In the WAR File field, enter <INSTALL>/j2eetutorial14/examples/web/hello1/hello1.war. The WAR Display Name field will show hello1.
    In the Context Root field, enter /hello1.
    Click Edit Contents to add the content files.
    In the Edit Contents dialog box, navigate to <INSTALL>/j2eetutorial14/examples/web/hello1/build/. Select duke.waving.gif, index.jsp, and response.jsp and click Add. Click OK.
    Click Next.
    Select the No Component radio button and click Next.
    Click Finish.
    Select FileSave.
    A sample hello1.war is provided in <INSTALL>/j2eetutorial14/examples/web/provided-wars/. To open this WAR with deploytool, follow these steps:
    Select FileOpen.
    Navigate to the provided-wars directory.
    Select the WAR.
    Click Open Module.
    I guess this step is for checking my system about setup information. I not sure how to change it.
    the result from execution of ansnt command in dos
    D:\J2ee\j2ee-1_4-doc-tutorial_7\j2eetutorial14\examples\web\hello1>asant create- war Buildfile: build.xml
    j2ee-home-test:
    BUILD FAILED D:\J2ee\j2ee-1_4-doc-tutorial_7\j2eetutorial14\examples\common\targets.xml:10: T he j2ee.home property is not properly set in <INSTALL>/j2eetutorial14/examples/c ommon/build.properties.
    Set the j2ee.home property to the location of your Application Server installati on.
    On Windows, you must escape any backslashes in the j2ee.home property with anoth er backslash or use forward slashes as a path separator. So, if your Application Server installation is C:\Sun\AppServer, you must set j2ee.home as follows:
    j2ee.home = C:\\Sun\\AppServer
    or
    j2ee.home=C:/Sun/AppServer
    j2ee.home is currently set to:
    Total time: 0 seconds
    D:\J2ee\j2ee-1_4-doc-tutorial_7\j2eetutorial14\examples\web\hello1>
    I've installed J2ee sdk in C:\Sun\AppServer
    PATH: %J2EE_HOME%\bin;%JAVA_HOME%\bin;
    CLASSPATH: %J2EE_HOME%\lib\j2ee.jar;C:\Java\jre1.6.0_05\lib\ext\QTJava.zip;C:\oraclexe\app\oracle\product\10.2.0\server\jdbc\lib\ojdbc14.jar
    J2EE_HOME: C:\Sun\AppServer
    JAVA_HOME: C:\Sun\AppServer\jdk
    I've installed J2ee with administration 4848, HTTP: 8089 HTTP: 8090
    I guess this could refer the target.xml and build.properties. So, I've tried after changing some value, which is fit for my setup.
    but, still doesn't work.
    targets.xml
    <path id="classpath">
    <fileset dir="${j2ee.home}/lib">
    <include name="j2ee.jar"/>
    </fileset>
    </path>
    <target name="j2ee-home-test" >
    <!-- Test if j2ee.home is set properly by looking for j2ee.jar -->
    <available file="${j2ee.home}/lib/j2ee.jar" type="file" property="j2ee.jar.present" />
    <fail unless="j2ee.jar.present">
    The j2ee.home property is not properly set in <INSTALL>/j2eetutorial14/examples/common/build.properties.
    Set the j2ee.home property to the location of your Application Server installation.
    On Windows, you must escape any backslashes in the j2ee.home property with another backslash or use forward slashes as a path separator. So, if your Application Server installation is C:\Sun\AppServer, you must set j2ee.home as follows:
    j2ee.home = C:\\Sun\\AppServer
    or
    j2ee.home=C:/Sun/AppServer
    j2ee.home is currently set to: ${j2ee.home}
    </fail>
    </target>
    <target name="clean" >
    <delete dir="${build}" />
    <delete dir="${dist}" />
    <delete dir="${assemble}" />
    <delete file="${ear.name}" />
    <delete file="${war.name}" />
    <delete file="${war.file}" />
    <delete file="${client.jar.name}" />
    </target>
    <path id="db.classpath">
    <fileset dir="${db.root}/lib">
    <include name="*.jar"/>
    </fileset>
    </path>
    <target name="create-db_common"
    depends="init,start-db,delete-db"
    description="Create database tables and populate database." >
    <sql driver="${db.driver}"
    url="${db.url}"
    userid="${db.user}"
    password="${db.password}"
    classpathref="db.classpath"
    delimiter="${db.delimiter}"
    autocommit="false"
    onerror="abort" >
    <transaction src="${sql.script}"/>
    </sql>
    </target>
    <target name="delete-db"
    description="Deletes the database tables." >
    <sql driver="${db.driver}"
    url="${db.url}"
    userid="${db.user}"
    password="${db.password}"
    classpathref="db.classpath"
    delimiter="${db.delimiter}"
    autocommit="false"
    onerror="continue" >
    <transaction src="${delete.sql.script}"/>
    </sql>
    </target>
    <target name="ping-db"
    description="Checks to see if Derby is running." >
    <java classname="org.apache.derby.drda.NetworkServerControl"
    fork="yes"
    resultproperty="db.ping.result">
    <jvmarg line="${db.jvmargs}" />
    <arg line="ping" />
    <classpath refid="db.classpath" />
    </java>
    <condition property="db.running">
    <equals arg1="${db.ping.result}" arg2="0" />
    </condition>
    </target>
    <target name="start-db"
    unless="db.running"
    description="Starts the Derby databse server."
    depends="ping-db">
    <sun-appserv-admin
    explicitcommand="start-database" />
    </target>
    <target name="stop-db"
    description="Stops the Derby database server."
    depends="ping-db"
    if="db.running">
    <sun-appserv-admin
    explicitcommand="stop-database" />
    </target>
    <target name="admin_command_common">
    <echo message="Doing admin task ${admin.command}"/>
    <sun-appserv-admin
    command="${admin.command}"
    user="${admin.user}"
    passwordfile="${admin.password.file}"
    host="${admin.host}"
    port="${admin.port}"
    asinstalldir="${j2ee.home}" />
    </target>
    <target name="create-jdbc-resource_common">
    <antcall target="admin_command_common">
    <param name="admin.command"
    value="create-jdbc-resource
    --connectionpoolid ${conpool.name} ${jdbc.resource.name}" />
    </antcall>
    </target>
    <target name="delete-jdbc-resource_common">
    <antcall target="admin_command_common">
    <param name="admin.command"
    value="delete-jdbc-resource ${jdbc.resource.name}" />
    </antcall>
    </target>
    <target name="deploy-war">
    <antcall target="admin_command_common">
    <param name="admin.command"
    value="deploy ${war.file}" />
    </antcall>
    </target>
    <target name="undeploy-war">
    <antcall target="admin_command_common">
    <param name="admin.command"
    value="undeploy ${example}" />
    </antcall>
    </target>
    <property environment="env" />
    <target name="listprops"
    description="Displays values of some of the properties of this build file">
    <property file="../../common/admin-password.txt" />
    <echo message="Path information" />
    <echo message="j2ee.home = ${j2ee.home}" />
    <echo message="j2ee.tutorial.home = ${j2ee.tutorial.home}" />
    <echo message="env.Path = ${env.Path}" />
    <echo message="env.PATH = ${env.PATH}" />
    <echo message="" />
    <echo message="Classpath information" />
    <echo message="classpath = ${env.CLASSPATH}" />
    <echo message="" />
    <echo message="Admin information" />
    <echo message="admin.password = ${AS_ADMIN_PASSWORD}" />
    <echo message="admin.password.file = ${admin.password.file}" />
    <echo message="admin.host = ${admin.host}" />
    <echo message="admin.user = ${admin.user}" />
    <echo message="admin.port = ${admin.port}" />
    <echo message="https.port = ${https.port}" />
    <echo message="" />
    <echo message="Domain information" />
    <echo message="domain.resources = ${domain.resources}" />
    <echo message="domain.resources.port = ${domain.resources.port}" />
    <echo message="" />
    <echo message="Database information" />
    <echo message="db.root = ${db.root}" />
    <echo message="db.driver = ${db.driver}" />
    <echo message="db.host = ${db.host}" />
    <echo message="db.port = ${db.port}" />
    <echo message="db.sid = ${db.sid}" />
    <echo message="db.url = ${db.url}" />
    <echo message="db.user = ${db.user}" />
    <echo message="db.pwd = ${db.pwd}" />
    <echo message="url.prop = ${url.prop}" />
    <echo message="ds.class = ${ds.class}" />
    <echo message="db.jvmargs = ${db.jvmargs}" />
    </target>
    build.properties ����
    j2ee.home=
    j2ee.tutorial.home=
    asinstall.dir=${j2ee.home}
    admin.password.file=${j2ee.tutorial.home}/examples/common/admin-password.txt
    admin.host=localhost
    admin.user=admin
    admin.port=4848
    https.port=8181
    domain.resources="domain.resources"
    domain.resources.port=8080
    # Derby configuration settings
    db.delimiter=;
    db.root=${j2ee.home}/derby
    db.driver=org.apache.derby.jdbc.ClientDriver
    db.datasource=org.apache.derby.jdbc.ClientDataSource
    db.host=localhost
    db.port=1527
    db.sid=sun-appserv-samples
    db.url=jdbc:derby://${db.host}:${db.port}/${db.sid};create=true;
    db.user=APP
    db.pwd=APP
    db.jvmargs=-ms16m -mx32m
    Is there anyone who can tell me how to change it? I really need your help....
    Thank you in advance.

    ok,
    First of all make sure your tutorial folder is installed from the root:
    C:\javaeetutorial5
    or
    D:\javaeetutorial5
    it makes things so simple.
    Secondly:
    set your jee tutorial home
    JAVAEE.TUTORIAL.HOME =
    C:/javaeetutorial5
    Thirdly: check in:
    C:\javaeetutorial5\examples\bp-project
    make a copy of the build.properties.sample save it as build.propropties, as a property file,
    edit the properties file as in:
    build.properties
    As follows:
    # uncomment the property javaee.home, and add the path
    # to your GlassFish Java EE 5 SDK installation
    javaee.home=c:/Sun/SDK
    javaee.tutorial.home=c:/javaeetutorial5
    # Uncomment the property j2ee.server.username,
    # and replace the administrator username of the app-server
    javaee.server.username=admin
    # Uncomment the property j2ee.server.passwordfile,
    # and replace the following line to point to a file that
    # contains the admin password for your app-server.
    # The file should contain the password in the following line:
    AS_ADMIN_PASSWORD=admin1234and so fourth. Some of the settings as the application server name is all done for you
    and then test it again.
    Take care of editing the property file. It can give you headache.
    Note also that this is for application server 9.1 - JEE5.
    eve

  • Guys i really need your help, i upated my ipad to io6 but it suddenly shut down and till now it is not working. please any kind heart who will help me would be very much appreciated. thanks

    please someone help me regarding my ipad, i updated it to io6 but suddenly it shut down and till today i cannot use it nor turn it on, everytime i turn it on an apple logo only appears on the screen and nothing happens, please i really need a help here thanks

    Have you the iPad User Guide? If not, download it from the link under manuals at the start of this forum an tke time to give it a cursory read at the very least.
    Also, there is no point in awarding yourself the 'This solved my question' (or indeed 'This helped me') tags since, as you can see, the questioner cannot get any points. (Pardon the pun.) You can learn more about this at
    https://discussions.apple.com/static/apple/tutorial/mark.html

  • HT4993 A CHINESE STUDENT REALLY NEED YOUR HELP!!

    A CHINESE STUDENT REALLY NEED YOUR HELP!!
    Dear Sir or Madam,
    As I bought my iPhone 5 (16GB,White) in the USA from Sprint, full price with tax,  unlocked ,it was excepted to be a global phone. But now I come across with some problems in China  using local carrier, everything is working properly except sending text message, and iMessage and Facetime also seem not to work.This is very serious for Apple and me! Will I have the chance to fix this?
    I tried all the possible solutions from the Internet, and the Official solution offered by Apple (http://support.apple.com/kb/TS4459), but it doesn't seem to work.
    Will Apple help me with this issue? Please do.
    Information of my iPhone:
    SN: :F1*******8GJ
    <Personal Information Edited by Host>

    luyao49 wrote:
    A CHINESE STUDENT REALLY NEED YOUR HELP!!
    Dear Sir or Madam,
    As I bought my iPhone 5 (16GB,White) in the USA from Sprint, full price with tax,  unlocked
    No such thing is sold from any authorized source in the US. The Sprint phone is not unlocked. It can be unlocked by Sprint for use on international (non US) carriers for current Sprint customers in good standing after completing (I believe) 60 days of service.
    If you are having problems using certain features on an unsupported carrier, you'll have to work it out with your carrier.

  • I just brought an iphone 4 16gb off Ebay and everytime i insert my sim it doesnt allow me to activate any further i really need your help?

    i just brought an iphone 4 16gb off Ebay and everytime i insert my sim it doesnt allow me to activate any further i really need your help?

    applelogo wrote:
    ...Please insert another SIM card from a supported carrier or request that this iPhone be unlocked by your carrier. ...
    You need to Contact the Carrier that it is locked to...
    Also see this discussion.
    https://discussions.apple.com/message/21189708

  • Hi. I am reinstalling Macbook Pro OS X from the "question mark icon". During process, there is a question "select the disk where to install Mac OS X" but there is no option/selection in the box. I really need your help guys. I need it badly. :'(

    Hi. I am reinstalling Macbook Pro OS X from the "question mark icon". During process, there is a question "select the disk where to install Mac OS X" but there is no option/selection in the box. I really need your help guys. I need it badly. :'(

    If you got the question mark and you do not see any partition to install OS X to, it is not good.
    Close the OS X installer by pressing the red button at the top left corner of the Install OS X window, and open Disk Utility. Then, look at the left sidebar and tell me if you see your hard drive. You should see something like this:
    Do not worry if you do not see Macintosh HD or if the option with an arrow shows a different name. This is normal.
    If you see it, choose it, go to the Erase tab and erase the drive. Finally, close Disk Utility and reinstall OS X. You will lose everything if you do not have a backup.
    If you do not see the drive, it is damaged and it has to be replaced. You can replace the hard drive of a MacBook Pro without voiding the warranty, and any 2'5" SATA hard drive is valid. If you are not an experienced user or you do not want to go inside the MacBook, take it to an Apple Store or reseller.

  • HT4946 Hi. i downloaded the last version osf ios7, but i skipped the part where i was supposed to sing in to iCloud, now i'm trying to restart my iphone and i can't,,, i don't know what to do i really need your help!!!

    Hi. i downloaded the last version osf ios7, but i skipped the part where i was supposed to sing in to iCloud, now i'm trying to restart my iphone and i can't,,, i don't know what to do i really need your help!!!

    Just go into settings>Icloud> then sign in there.

  • When making a circle, illustrator automaticly makes lots and lots of more circles... How to resolve this problem? Really need quick advice!!

    Hi there,
    I have used illustrator now for a long period of time. Recently I purchased Adobe CC. Had no problems with it untill now.
    It's like this. Whenever I try to make a circle (or, square, line or other forms) Illustrator makes lots and lots of more circles within it.
    From the moment I click on the page untill I release my mouse, it keeps making circles. (see enclosed picture)
    I have really no idea whatsoever how to undo this. I have used Illiustrator CC before for another project, and it worked fine. Now however, it doesn't.
    Can anyone help me out here? I have payed projects to deliver, and I really need this to work really soon...
    Thnx for your help!
    btw, I work on a PC with Windows 8. (don't really think it's relevant, but still..)

    Thnx!
    I didn't know that could cause it. Which is actually weird since I've recently bought a new laptop. >,<U
    Thnx for your help!

  • I am the biggest "Newb" on this site,  and I really need some help please..

    Ok, the short of it.... I started training on Database programming about 2 weeks ago. I still don't really know a thing, or even understand the concepts. Now, my boss wants me to fix a bug in Oracle, and I haven't a clue. The ONLY help I've gotten was a link to this forum, and a speech about how I need to help myself. I told him I have the same chance of fixing anything, as monkeys typing hamlet. Anyone up for a challenge?
    When I go to Application System, then Application Entry and enter the password a dialog box appears.... "FRM-40039: Cannot attatch library Empower while opening from APPUSRAPP."
    That's what I have to fix. I have no clue. I don't even really know how to click around in this program. Please help, someone.
    UPDATE: I've been told that everyone's pretty much going to be a jerk to me for asking this, and I'm currently searching old threads and can't find a way to delete this one I posted. So, you could just ignore the post, or jump in and be the internet tough-guy and tell me what I already know.... I'm a newb.
    Edited by: user11033020 on Apr 14, 2009 11:41 AM

    As this appears to be a Forms error (the error begins with FRM) you might get a better response by posting this in the Forms forum:
    Forms
    The Community Feedback forum isn't meant for product-related questions (as it says in the title).
    Still, you should consider searching Metalink as well. If you've paid for support, you have every right to use it.

  • RSS Bug getting closer to a fix... I really need your help!!  Please?

    Background: Cannot get SUBSCRIBE button to shoot me into iTunes/podcasts like it did before in v06.
    Situation: (iWeb08) and http://www.threeboysproductions.com is a godaddy domain buy. http://web.mac.com/captmench is the actual address.
    LONG AND SHORT: I really need to get rid of the www.threeboysetc from anywhere in iWeb but I can't seem to find a way.
    Here's why:
    Clicking on SUBSCRIBE from my Zachary's Film page generates this address:
    http://www.threeboysproductions.com/Site/Zachary_Films/rss.xml
    which, if you click on it you'll get the homepage. Why? Not sure but anything past the www.threeboyspetc/ just sends you to the homepage.
    so
    change www.tbp.com to actual title and you get a nice RSS feed:
    http://web.mac.com/captmench/Site/Zachary_Films/rss.xml
    HOWEVER --
    Take any of those feeds and you'll get the main page again because they all say www.threeboysproductions.com.
    For Example this from the RSS feed:
    http://www.threeboysproductions.com/Site/ZacharyFilms/Entries/2007/8/25_FirstDinner.html
    Sends you back to homepage
    change it from www.threeboysproductions... and:
    http://web.mac.com/captmench/Site/ZacharyFilms/Entries/2007/8/25_FirstDinner.html
    It works fine!!
    The xml file generated by iWeb confirms this:
    <?xml version="1.0" encoding="UTF-8"?>
    <rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:iweb="http://www.apple.com/iweb" version="2.0">
    <channel>
    <title>Filming Zachary</title>
    <link>http://www.threeboysproductions.com/Site/ZacharyFilms/ZacharyFilms.html</link>
    <description>Zachary’s never known any other camera but the DVX... so I’ve been able to get some very nice stuff of him all along.</description>
    <generator>iWeb 2.0.1</generator>
    <ttl>60</ttl>
    <itunes:explicit>no</itunes:explicit>
    <itunes:author>ThreeBoys Productions</itunes:author>
    <itunes:owner>
    <itunes:name>ThreeBoys Productions</itunes:name>
    </itunes:owner>
    AND --
    <description><a href="http://www.threeboysproductions.com/Site/Media/ElmoShirt.mov"><img src="http://www.threeboysproductions.com/Site/ZacharyFilms/Media/ElmoShirt1.png" style="float:left; padding-right:10px; padding-bottom:10px; width:192px; height:108px;"/></a>Zachary’s grandmother sent him an Elmo shirt... This is what happened when he opened it up.</description>
    <enclosure url="http://www.threeboysproductions.com/Site/Media/ElmoShirt.mov" length="26452526" type="video/quicktime"/>
    <itunes:explicit>no</itunes:explicit>
    <itunes:duration>00:04:18</itunes:duration>
    Please help me get this squared away.
    Thanks,
    CaptM

    Ok... part of this might have come from the migration to 08. I had to trash my old site and rebuilt from ground up (using the same dirt, I think) and maybe I ended up keeping some of the old information.
    look at the forward link:
    http://web.mac.com/captmench/iWeb/Site/ThreeBoys.html/Site/Zachary_Films/rss.xml
    The part iWeb/Site/ThreeBoys.html must be from your old version , so you may want to look at your forward config at your domain host.
    You may want to talk to your domain host, because the forward frame is generated by them.

  • Really need advice/help please

    I am importing VHS movies and I need advice on procedures, I am really stuck so any advice given will be very helpful.
    I have my VCR connected to a ADVC300 analog to digital convertor, which is hooked up to my macbook.
    I am using iMovie 08, but have the previous one installed iMovie HD 6.
    I have no problem importing the footage... it comes in as a DV file (which I believe I need in order to edit footage later on).
    My problem is:
    1) The size of the DV is HUGE. Is this the format that I need to edit to later put on DVD by converting to mp4?
    2) I am a total novice, so is iMovie the best for doing the import? I have Final Cut Express, but I am not sure how to use it.
    3) I also have QT Pro, but after I am done doing an import and transfer the DV file to my back up drive... I cant seem to get the import to pull up in iMovie again. Do you have to do the editing right away after the import or you loose the ability in iMovie?
    4) My HD space on my computer is almost full and I thought that I deleted the DV file off my computer after transfering it to a backup drive. I went into Movies, and iMovies and deleted it... but it must be stored somewhere else, because I have like 60 GB used still?
    Thank you SO MUCH!!!!

    1) The size of the DV is HUGE. Is this the format that I need to edit to later put on DVD by >converting to mp4?
    Yes, DV is huge. You really need an external drive. The hugeness of DV is not an issue for iDVD. iDVD will convert the DV or MP4 into MPEG2 for encoding on the DVD. If you get iMovie 09, you can send DV to iDVD. In iMovie 08, you share as an h.264 file and that goes to iDVD. In my experience, not much difference.
    2) I am a total novice, so is iMovie the best for doing the import? I have Final Cut Express, but I am >not sure how to use it.
    Yes, iMovie 08/9 is the best. You can easily edit in iMovie 08. However if you later want to edit in FCE, you can access these files from FCE. If you import into FCE, iMovie can't see them.
    3) I also have QT Pro, but after I am done doing an import and transfer the DV file to my back up >drive... I cant seem to get the import to pull up in iMovie again. Do you have to do the editing right >away after the import or you loose the ability in iMovie?
    In iMovie, click VIEW/EVENTS BY VOLUME. You should see your external drive in the Event Library list. You can drag your file from your internal drive to the external drive by dragging and dropping the icon for your event onto the icon for the external drive. If you do it this way, iMovie will still see it.
    4) My HD space on my computer is almost full and I thought that I deleted the DV file off my >computer after transfering it to a backup drive. I went into Movies, and iMovies and deleted it... but >it must be stored somewhere else, because I have like 60 GB used still?
    It might be in your trash. Try emptying your trash.

  • Storage:  I got a 32gig iPad for Christmas - I really need some help.

    Storage:  I got a 32gig iPad for Christmas, and literally I am already down to 2 gigs of storage left.  I believe my iPad is a 4th generation, and currently on my device I only have a 10 apps, 6 photos, 3 personal family videos 10mins in length each, and about 10 disney channel tv shows for my kids.  I also have my work email, but I set it to only go back two weeks. 
    I am not sure what I am doing to eat through this much space so quickly.  I realized after downloading 4 tv shows for my daughter I was getting HD, so I did change the other 6 to SD which I know takes less space.  However it hasn't really helped.  Recently I started using the camera to take a few short movies of my kids 3 videos about ten mins in length each and that ate through space in no time.
    My iPad is 32gigs but really only started with 28 gigs capacity. 
    Is there something I can do?  Am I doing something wrong?  Sorry I am not the most technically inclined, but a co-worker of mine has an older iPad with thousands of pics, hundreds of songs, plenty of movies, at least 20 apps, etc and her 32 gig iPad still has 12 gigs left.  She has WAY more stuff on hers than mine.
    I really appreciate any help someone can provide.  Thank You.  

    Ok. Do you know if I delete a show from iTunes on my device can I still redownload it for free?  Seems that 13.7 gigs taken up are those disney channel shows.  If I delete them I can always just redownload them no? 
    I appreciate your help.  Thanks.

  • Need Quick Help if Possible

    I have two big questions that I need urgent help with.
    1. Can you reference a background image in flash that will
    change montly?
    2. Can you reference Microsoft Reporting Services to publish
    reports through a flash interface in SharePoint?
    I know these are crazy questions, but I am working with a
    client and need to know whether this is possible ASAP as I have to
    get it completed by COB tomorrow if it is possible.
    Thanks so much!

    Remove all the videos that won't play from your iPod. Go to the Store menu in iTunes, Deauthorize your computer, play one of the videos in question and when prompted enter your Apple ID and password. Resync the videos.

  • Fried RAM slot?  Really need some help quick.

    Hi guys. I have a major problem on my hands, that I hope you may be able to help me solve...
    I have been working on a deadline for the production of a DVD that will be used as part of a mental health outreach program, and all had seemingly been going well, albeit slow with my OEM 512MB of RAM. I therefore decided to upgrade my RAM, first buying two 512MB DIMMS from macsolutuons, but these DIMMS produced crashes almost religiously after 5 or so minutes of uptime. After receiving a new shipment, ensuring they were from the same batch, all seemed to be well. The computer stayed up for days without crash - but when I put a load on it, namely video encoding to DV stream and to MPEG-2, poof - hard crashes.
    I decided the RAM from macsolutions looked generic and suspected if I bought some real RAM I'd be safe. I purchased Viking RAM form macmall, three 512MB DIMMS, overnighted so I can make this deadline.
    Here's the catch...
    If I use all three DIMMS, the computer crashes in less than 5 minutes of uptime religiously. If I use two of them, the computer seems to stay up without problems, but when it sees a load like video conversion places on the system, it locks up. When I remove all RAM, so only one 512MB DIMM is present, I can encode video, and I don't seem to get crashes.
    When I bought the machine from Apple some two years ago, it came with one 512MB DIMM. I'm only hypothesizing here, but is there a chance that I received a machine that has a RAM slot 1 that's fine, but there's something wrong with slot 2 (or even 2, 3, 4)? In theory, when just surfing or using standard apps, the first slot meets the RAM need, but when more RAM allocation is needed under hard processes, and the system feeds off of slots beyond #1, then I crash. MenuMeters is installed so I can monitor RAM use, and sure enough, I mainly get crashes as my used RAM approaches 480-500MB.
    It's really urgent that I get to the bottom of this issue sooner than later, so I can finish this project to meet my deadline. Assuming slot 2 and so forth are bad, could I use a single 1GB DIMM module?
    Any advice is greatly appreciated. If i can repay the favor in any way, I'd be glad to.

    I suspected the RAM as well, however when I use only one DIMM I get zero crashes. I have used each of the three DIMMS for one day each now, and no crashes, but the second I add another ino the configuration crashes occur. While I agree that cheap RAM is often the culprit, to me all signs point to a faulty slot 2.
    I think I'll try getting a 1G RAM DIMM and only use slot 1 and see how that goes. Too bad, because I could really use more than 1G.

  • Getting this 'glitched' music off of my iPod. Really need serious help.

    Ok, so here goes the story. 2nd gen ipod, 16GB. this just randomly happened- around a week after i homeshared with my friend and bought some new music.
    THERE ARE NO DUPLICATES IN MY LIBRARY CONCERNING THIS MUSIC!!!
    Around a week ago, I bought the album Moulin Rouge. I bought it with a gift card on he computer, then re-bought it on my ipod (a mistake, I know) It was completely normal, played normally, no problems. Far before this, I got a song from inception off of itunes, (we built our own world). It was also normal, save the fact that there was a sound at the beginning of it every time it played- like a clap. It started doubling before the moulin did.
    The album and song are now behaving oddly. They are doubling themselves up. Like, when I have the Moulin album checked, two of each song pop up in the album. then when I uncheck the album, there still remains the whole album; so it seems there are two copies, one glitched stuck on my ipod, one normal from itunes. Moulin also has very weird ******** album art; the art is like a genius mix cover with another random album. Both of these symptoms are the same with the inception song.
    And also, sometimes the moulin picks up random cover art from completely different albums, cover art I have added to songs I have gotten from limewire (NONE OF THE LIMEWIRE SONGS I GOT ARE GLITCHED OR BEHAVING ODDLY)
    So, I have reset my iPod several times. I plugged my ipod in, wen under the music tab, and unchecked the 'Sync Music' box. So now the only music that is on my ipod is the weird, glitch music that doesn't seem to be originating from my iTunes library.
    I don't even know if restoring my ipod will work with this. I have absolutely no ay of getting this music off my ipod. The 'regular' versions of the song + album are behaving fine, I can still listen to everything on my library.
    Please help me. I need to get this iPod through a month or so more, and it just really annoys me to have something like this. I know I can simply create playlists and listen from there, but I kinda need to have my music organized.

    For non-iTunes purchases you need a third-party program like one of those discussed here:
    Recovering your iTunes library from your iPod or iOS device: Apple Support Communities

Maybe you are looking for