I really need ur help on how to root my Android (itel inote Android)

pls help

If the that represents the dimensions of your swf file and the bowser does not produce scrollbars then look for and remove the following from the html file code or from the css file that supports it (likely tied to the bpdy tag styling)...
overflow: hidden;

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

  • HI, I need your help. How can I delete all data, when I do not have the special security code, which I didn´t remember ? I also think, that I never create this code before. But I cannot put my settings back.

    HI, I need your help. How can I delete all data, when I do not have the special security code, which I didn´t remember ? I also think, that I never create this code before. But I cannot put my settings back.

    You must remember the code, if you can't then take the phone and proof of purchase to an Apple Store.

  • 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

  • HT1937 my apple iphone 3g.unlock iphone,i need you help me how to back normal ios

    my apple iphone 3g.unlock iphone,i need you help me how to back normal ios...pls answer me urgent.thank you

    Sorry, but your post is unclear. I don't know what you mean by "back to normal iOS". Do you mean that you jailbroke your iPhone? If that's what you mean and you now wish to remove the jailbreak, you can try putting the iPhone into DFU mode and see if that will let you restore and remove the jailbreak:
    http://osxdaily.com/2010/06/24/iphone-dfu-mode-explained-and-how-to-enter-dfu-mo de-on-your-iphone/
    Some jailbreaks cannot be removed and in some cases will permanently disable your iPhone. If that happens to you, then you will have to buy a new iPhone; Apple will provide no support, warranty or out-of-warranty, for a jailbroken iPhone. You're on your own from here. We can provide no further help with a jailbroken iPhone in these forums.
    If that's not what you mean, please post back and clarify. You may wish to try posting in your native language so that your question is more clear.
    Regards.

  • 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.

  • 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.

  • 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.

  • My ipod deleted all my notes and I REALLY need them back! How can I get them back!?

    For some reason my ipod touch 5 deleted all my notes and all the mail in my inbox its all gone. I do not have the iOS 6.1 update though. So I dont know how this could have happened. I have not backed up my ipod to my computer since I got it because thats not how I use it. But my sisters ipod 4 also for some reason had my notes downloaded onto hers? And she has recently backed up her ipod on the computer. But once the notes on mine were deleted so were hers. But since she has recently backed hers up maybe I can restore the to her ipod then to mine. If so how would I do this? I really need those notes back they were REALLY important! Thanks!

    Your only hope is restoring from the bakup of your sister's iPod. For how see the restoring topic of:
    iOS: How to back up

  • 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.

  • 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.

  • HT201413 im having problem with my ipod. it cannot be recognize with my laptop. how to fix these? i already tried ur suggestions here but still didnt work. and also it cannot connect to itunes. plese I really need a help.

    my ipod is not recognized by my latop and even not connecting to itunes. I also tried to connect to other laptop and it works. I think the problem is with the software, how to fix this? a big thanks.

    Update:  I tried the "Toshiba Recovery Wizard" after everything else either fizzled out or hung up. After going all the way thru the recovery process (up to 100%), I finally got an error message.....it didn't work. And now, when I fire up the computer, I don't even get to that menu with the recovery options....the only thing I can boot into is the screens with the various ways to run your OS (in "safe mode", "safe mode with networking", etc).
    I'm not a techie, but I'm guessing at this point, the part of my hard drive that got damaged in the fall was, at the very least, the partition with the recovery data. Couple that with the fact that this cheapo Toshiba laptop didn't even come with recovery disk (or ANY kind of disk, even basic installation software!), I'm screwed: I don't see any way to get a workable computer now without some kind of disk to boot from. So NOW my concern is more about spending the $$ for a new OS and THEN finding out the hard drive has other problems too...is broken in some other way to boot.
    How to check this? As I said, I did run "chkdsk" back when I could get into the recovery menu and run the fix-it programs. It didn't note any problems. Thinking of taking this opportunity to upgrade to Windows 7 from Vista (which I never liked), but I have to know that the computer is otherwise ok....how to be sure? Help!!

Maybe you are looking for