Problem when tried to work with jstl

i have downloaded standard tag library and copied the
jakarta-taglibs/standard-1.0/lib file into /WEB-INF/lib as said in
http://java.about.com/od/beginningjava/l/aa_jstl_intro_2.htm
and tried to execute hamsandwhich.jsp which is as follows
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
Setting the value: "Hello World!"
<c:set var="hello" value="Hello World!"/>
<p/>
<c:out value="${hello}"/>
i get an error
org.apache.jasper.JasperException: This absolute uri (http://java.sun.com/jstl/core) cannot be resolved in either web.xml or the jar files deployed with this application
but i dont know how to check with web.xml since i dont know xml
here is my web.xml
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE web-app
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
"http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
</web-app>someone kindly help me with this.........

hi, my problem is bit diffrent.
i m trying to achieve a login procizer in JSP and using JSTL c and sql library. MySQL as database solution.
most of the things are working fine but i want to add confirm password in registeration form. and i do not know how to compare two string.<%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<c:if test="${param.submitted}">
     <c:if test="${empty param.name}" var="noname" />
     <c:if test="${empty param.pw}" var="nopw" />
<c:if
test="${not (noname or nopw or requestScope.takenName)}">
<c:set value="${param.name}" var="name" scope="request" />
<c:set value="${param.pw}" var="pw" scope="request" />
<c:set value="${param.cpw}" var="cpW" scope="request" />
<jsp:forward page="doRegister.jsp" />
     </c:if>
          </c:if>
<html>
<head>
</head>
<body bgcolor="FCDBE4" >
<form method="post" name="frmRegister">
<input type="hidden" name="submitted" value="true"/>
<script type="text/javascript">
<!--
     function add_onclick() {
          var TRUE = new Boolean("True")
          var FALSE = new Boolean("False")
          blnError = FALSE
          strError = "The following problems were found in your registration form: \n\n"
          if (frmRegister.name.value == "")
                    blnError = TRUE
                    strError = strError + " - You must provide a Login Name\n"
          if (frmRegister.pw.value == "")
                    blnError = TRUE
                    strError = strError + " - You must provide a Password\n"
          if (frmRegister.cpw.value == "")
                    blnError = TRUE
                    strError = strError + " - You must confirm your Password\n"
          if (frmRegister.pw.value != frmRegister.cpw.value)
                    blnError = TRUE
                    strError = strError + " - Your Password does not match\n"
          if (blnError == TRUE)
                    strError = strError + "\nPlease correct these mistakes and try again."
                    alert(strError)                    
          else
                    frmRegister.submit()
     //-->
     </SCRIPT>
<p align="left"><b> Register <hr> </p>
<p align="center"><b>Please complete the following registration form</b>  <hr><br><br>
<img src="dmu.jpg" alt="DMU University" align="left">
<img src="dmu.jpg" alt="DMU University" align="right">
<table BORDER="0" ALIGN="CENTER" VALIGN="TOP" CELLPADDING=2 CELLSPACING=0>
<tr>
<td><Strong>Username</strong></td>
<td><input type="text" name="name" value="<c:out value="${param.name}" />"
/>
</td>
</tr>
<tr>
<td><Strong>Password</strong></td>
<td> <input type="password" name="pw"  value="<c:out value="${param.pw}"/>"
/>
<tr>
<td><Strong>Confirm password</strong></td>
<td> <input type="password" name="cpw"  value="<c:out value="${param.cpw}"/>"
/>
<tr><td>�</td>
<td><input type="submit" value="register"LANGUAGE=javascript onclick="return add_onclick()" />
</td>
</tr>
</table>
<img src="dmu.jpg" alt="DMU University" align="left">
<img src="dmu.jpg" alt="DMU University" align="right">
</form>
</body>
</html>doRegister.jsp
<%@ taglib uri="http://java.sun.com/jsp/jstl/sql" prefix="sql" %>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<sql:setDataSource
     dataSource= "????"
     scope="session"/>
<sql:transaction isolation="serializable">
     <sql:query var="result" >
          select username from rptable where username=?
          <sql:param value="${requestScope.name}" />
     </sql:query>
     <sql:update>
          insert into rptable(username,password) VALUES (?,?);
          <sql:param value="${requestScope.name}" />
               <sql:param value="${requestScope.pw}" />
     </sql:update>
</sql:transaction>
<c:set var="user" scope="session" value="${requestScope.name}" />
<jsp:forward page="prelogin.jsp"/>both script is working but when i try to not confirm password still it goes to the database because i do not use anythinh which compare them ad then if yes then go inside or give a error message.
can anyone help me to do this..
thanks in advance.

Similar Messages

  • When trying to work with Agilent 34401A multimeter (serial RS-232 connection), HP34401A Getting Started.vi gives always the message: "Error 1073807369 occurred at Old VISA Open ".

    Baud rate and parity are set correctly, RS-232 cable is also connected correctly. My QuickBasic program has no problems to read and write to the Multimeter. It is obviously a software problem: the same error is persistent if I disconnect RS-232 cable.
    I downloaded NI-VISA 2.6 for Windows 95/98/NT/ME/2000/XP frorm digital.ni.com and installed it. But it did not help.
    Thank you in advance
    Best regards
    Alexei Soloviev

    Hi Steve
    I have problems with the 34401A and serial communication. Do you remember
    where the error was in the code ?
    Thanks
    Klaus
    wrote in message
    news:[email protected]..
    > Alexei,
    > This may or may not help, I was tasked to do something similar
    > recently and found an error in their driver. The GPIB VISA worked
    > fine, but when I tried it on serial it played up. There was an errant
    > carriage return (or CR/LF I can't remember). GPIB liked one and Serial
    > liked the other. It always amuses me that we never have problems with
    > Quickbasic!.
    > If you want me to dig deeper give me a shout.
    >
    > Steve Watts
    >
    > On Thu, 24 Jan 2002 06:16:55 -0800 (PST), "Alexei V. Soloviev"
    > wrote:
    >
    > >When trying
    to work with Agilent 34401A multimeter (serial RS-232
    > >connection), HP34401A Getting Started.vi gives always the message:
    > >"Error 1073807369 occurred at Old VISA Open ".
    > >
    > >Baud rate and parity are set correctly, RS-232 cable is also connected
    > >correctly. My QuickBasic program has no problems to read and write to
    > >the Multimeter. It is obviously a software problem: the same error is
    > >persistent if I disconnect RS-232 cable.
    > > I downloaded NI-VISA 2.6 for Windows 95/98/NT/ME/2000/XP frorm
    > > digital.ni.com and installed it. But it did not help.
    > >Thank you in advance
    > >Best regards
    > >Alexei Soloviev
    >

  • Why does Firefox not acknowledge that I have Silverlight already installed. When trying to work with "Getting Started" in Windows 7, it keeps telling me I have to download Silverlight to view this information.

    I recently purchased a new computer with Windows 7 OS. When trying to learn the transition experience from Windows XP to this new OS version, I was presented with this problem of going around in circles.
    When trying to view "Discover Windows 7" via "Start>Getting Started>Discover Windows 7", a Microsoft website opens to; (http://windows.microsoft.com/en-US/windows7/help/videos/personalizing-your-pc). It tells me; To view this contents, please install Microsoft Silverlight. Once I install it and get back to this page, I get the same message. I can not view any of the help content before installing Microsoft Silverlight. So now it is a never ending "CIRCLE of LIGHT"! Is this a problem with my Firefox or with Windows Microsoft 7?

    I'm not seeing the Silverlight plugin in your More system details list, so Firefox doesn't find it if you have it.
    I assume that you also do not see it in Tools > Add-ons > Plugins ?

  • IDVD freezing when trying to work with old project

    I am running iLife '09 and OS X 10.6.2. I burned this project successfully in the past 12/09 after creating it, however trying to burn and work with the project after some changes and iDVD will freeze or give me a grey screen and crash. Where can I look to see the cause of this? Crash Reporter has no logs of the events.
    cheers!
    James

    Hi
    There is a bug in iDVD'09 (at least)
    If You make an iDVD project
    Then go back to Your movie and make a small change
    Then open iDVD again - it will notice this and say to Update or Cancel
    NEITHER of them works.
    ONLY one medicine - Make a brand new iDVD project and re-import Your movie.
    Sorry - Non has come up with a more elegant solution. (at all)
    Yours Bengt W

  • Problem when trying to sync with Palm Centro phone and Palm m500

    I just purchased a Palm Centro phone and have had no problem when I try to sync the phone with the Palm software on the computer, however, my wife has an older Palm m500 and all her contacts are on her Palm, but they don't show up on the Palm Desktop software.  Is there something we're doing wrong?  All the dates show up on her desk top and everything in my phone shows up on my desktop, only her contacts are empty.
    Post relates to: Centro (Verizon)

    It is likely that your wife's older device (with Legacy two-word PIMs) is incompatible with the Access Desktop/Hotsync for Verizon Centros as I believe it has only the new Extended (one-word) PIM conduits. If you are running XP you might be able to use a download of 4.1.4e. Suggest you search the Hotsync forum to see if the Centro can use this version of Hotsync (I don't have a Centro).
    Post relates to: Palm TX

  • Hello, I have a Mac computer with NVIDIA 750M dedicated graphics card and monitor EIZO but the problem was there when I was working with Windows and Acer monitor. When I open a file from Camera Raw in PS this is smaller than the screen so I double-click w

    Hello, I have a Mac computer with NVIDIA 750M dedicated graphics card and monitor EIZO but the problem was there when I was working with Windows and Acer monitor. When I open a file from Camera Raw in PS this is smaller than the screen so I double-click with the tool "hand" to fit on the screen, but the picture loses sharpness and becomes blurry. If you magnify the image even only slightly with the tool "zoom" the picture comes back clear. In Camera Raw instead is always sharp. I solve the problem by turning off the graphics card in PS but often use plugin that need the graphics card otherwise the processing time is much longer. I ask for help.
    Thanks.

    Hello, I have a Mac computer with NVIDIA 750M dedicated graphics card and monitor EIZO but the problem was there when I was working with Windows and Acer monitor. When I open a file from Camera Raw in PS this is smaller than the screen so I double-click with the tool "hand" to fit on the screen, but the picture loses sharpness and becomes blurry. If you magnify the image even only slightly with the tool "zoom" the picture comes back clear. In Camera Raw instead is always sharp. I solve the problem by turning off the graphics card in PS but often use plugin that need the graphics card otherwise the processing time is much longer. I ask for help.
    Thanks.

  • Photoshop Cs6 is hanging when trying to work in 3D when it wasn't before

    When I first started using 3D in Photoshop it was working rather smoothly and seemed to chug along fairly fast. Then one day when I was working in it as usual and tried to perform some random action it just started hanging with the spinning blue circle for about 2 or 3 minutes. It continued to do this ever since, sometimes hanging for up to 5 minutes before performing my command. Some actions cause it to hang longer than others, such as creating a new light and changing the diffuse color of a material, which is by far the worst in terms of the amount of time it will hang. I have searched the forums and google and tried all suggestions to any problem that seemed to have a similar nature. The only time that I had a partial success was after I had uninstalled Photoshop, then ran the adobe creative suite cleaner tool, then manually searched through the registry for every reference to adobe and Photoshop I could find and deleted them. I then reinstalled Photoshop and updated it. When I started using it in 3D after that it was running smooth as butter, no hangs or stalls on anything, including creating lights and changing diffuse colors. But my joy was not long lived, as after about 2 hours of use it started to do its usual behavior of hanging again.So I tried that approach again and it did not seem to work a second or third or fourth time. So out of desperation and all out of options, I decided to run process monitor from sysinternals to see if it showed me anything even though I knew that I probably would not understand what it were showing me. I noticed a lot of errors with the results of "name not found" for registry calls, "invalid parameter" for directory quarries, and "no such file" for file reads. But the one that seems to be happening the most whenever the program is hanging is it is trying to open a file from C:\program files\Adobe\photoshop x64\required\CgShaders, but that directory is nonexistent on my system. I was hoping that someone would be able to solve this for me as 3D in Photoshop is a big part of my workflow and I am all out of ideas. I'm going to include the process monitor log file and it will be in pml format which you will need process monitor to read, but it is a very small, portable, and free program which can be downloaded from http://technet.microsoft.com/en-us/sysinternals/bb896645. The Log file Can be downloaded from http://sdrv.ms/Xxcmuu (skydrive) or https://www.box.com/s/jzdmgmdmz7xe47smalv2 (box) .
    And here is my system info from Photoshop (I have a first generation I3 processor with intel HD graphics, which as I said was running fairly smooth before my problem started):
    Adobe Photoshop Version: 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00) x64
    Operating System: Windows NT
    Version: 6.2
    System architecture: Intel CPU Family:6, Model:5, Stepping:5 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 2
    Logical processor count: 4
    Processor speed: 2394 MHz
    Built-in memory: 7989 MB
    Free memory: 3903 MB
    Memory available to Photoshop: 7036 MB
    Memory used by Photoshop: 65 %
    Image tile size: 128K
    Image cache levels: 4
    The GPU Sniffer crashed on 1/22/2013 at 6:33:53 PM
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: Intel
    Video Card Renderer: Intel(R) HD Graphics
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 768, right: 1280
    Video Card Number: 1
    Video Card: Intel(R) HD Graphics
    OpenCL Unavailable
    Driver Version: 8.15.10.2858
    Driver Date: 20121009000000.000000-000
    Video Card Driver: igdumd64.dll,igd10umd64.dll,igdumdx32,igd10umd32
    Video Mode:
    Video Card Caption: Intel(R) HD Graphics
    Video Card Memory: 3770 MB
    Video Rect Texture Size: 8192
    Serial number: Tryout Version
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\
    Temporary file path: C:\Users\RYANS_~1\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      C:\, 341.9G, 102.3G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6 (64 Bit)\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
       ACE.dll   ACE 2012/06/05-15:16:32   66.507768   66.507768
       adbeape.dll   Adobe APE 2012/01/25-10:04:55   66.1025012   66.1025012
       AdobeLinguistic.dll   Adobe Linguisitc Library   6.0.0  
       AdobeOwl.dll   Adobe Owl 2012/06/26-12:17:19   4.0.95   66.510504
       AdobePDFL.dll   PDFL 2011/12/12-16:12:37   66.419471   66.419471
       AdobePIP.dll   Adobe Product Improvement Program   6.0.0.1654  
       AdobeXMP.dll   Adobe XMP Core 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPFiles.dll   Adobe XMP Files 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPScript.dll   Adobe XMP Script 2012/02/06-14:56:27   66.145661   66.145661
       adobe_caps.dll   Adobe CAPS   6,0,29,0  
       AGM.dll   AGM 2012/06/05-15:16:32   66.507768   66.507768
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56  
       aif_core.dll   AIF   3.0   62.490293
       aif_ocl.dll   AIF   3.0   62.490293
       aif_ogl.dll   AIF   3.0   62.490293
       amtlib.dll   AMTLib (64 Bit)   6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012 18:00:00)   1.000000
       ARE.dll   ARE 2012/06/05-15:16:32   66.507768   66.507768
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2012/06/05-15:16:32   66.507768   66.507768
       BIBUtils.dll   BIBUtils 2012/06/05-15:16:32   66.507768   66.507768
       boost_date_time.dll   DVA Product   6.0.0  
       boost_signals.dll   DVA Product   6.0.0  
       boost_system.dll   DVA Product   6.0.0  
       boost_threads.dll   DVA Product   6.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.0.5.19287   2.0.5.19287
       CoolType.dll   CoolType 2012/06/05-15:16:32   66.507768   66.507768
       data_flow.dll   AIF   3.0   62.490293
       dvaaudiodevice.dll   DVA Product   6.0.0  
       dvacore.dll   DVA Product   6.0.0  
       dvamarshal.dll   DVA Product   6.0.0  
       dvamediatypes.dll   DVA Product   6.0.0  
       dvaplayer.dll   DVA Product   6.0.0  
       dvatransport.dll   DVA Product   6.0.0  
       dvaunittesting.dll   DVA Product   6.0.0  
       dynamiclink.dll   DVA Product   6.0.0  
       ExtendScript.dll   ExtendScript 2011/12/14-15:08:46   66.490082   66.490082
       FileInfo.dll   Adobe XMP FileInfo 2012/01/17-15:11:19   66.145433   66.145433
       filter_graph.dll   AIF   3.0   62.490293
       hydra_filters.dll   AIF   3.0   62.490293
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       image_compiler.dll   AIF   3.0   62.490293
       image_flow.dll   AIF   3.0   62.490293
       image_runtime.dll   AIF   3.0   62.490293
       JP2KLib.dll   JP2KLib 2011/12/12-16:12:37   66.236923   66.236923
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0  
       LogSession.dll   LogSession   2.1.2.1640  
       mediacoreif.dll   DVA Product   6.0.0  
       MPS.dll   MPS 2012/02/03-10:33:13   66.495174   66.495174
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6910  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6910  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6910  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS6   CS6  
       Plugin.dll   Adobe Photoshop CS6   CS6  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (64 bit)   3.0.0.383  
       PSArt.dll   Adobe Photoshop CS6   CS6  
       PSViews.dll   Adobe Photoshop CS6   CS6  
       SCCore.dll   ScCore 2011/12/14-15:08:46   66.490082   66.490082
       ScriptUIFlex.dll   ScriptUIFlex 2011/12/14-15:08:46   66.490082   66.490082
       tbb.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       TfFontMgr.dll   FontMgr   9.3.0.113  
       TfKernel.dll   Kernel   9.3.0.113  
       TFKGEOM.dll   Kernel Geom   9.3.0.113  
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113  
       updaternotifications.dll   Adobe Updater Notifications Library   6.0.0.24 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   6.0.0.24
       WRServices.dll   WRServices Friday January 27 2012 13:22:12   Build 0.17112   0.17112
       wu3d.dll   U3D Writer   9.3.0.113  
    (post shortened)
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
    Installed TWAIN devices: NONE

    Thank you very much for your reply. And yes I have tried all of these suggestions that you have just made. And as for the GPU crash I did not notice that in there before but I also didn't look for it because every time I looked before it wasn't there, and looking at the date that was when that I was rolling back\uninstalling\reinstalling\trying modded drivers, etc., Which is probably the reason why the gpu sniper crashed.
    One interesting thing that you said was whether there is the same failure in a new design as opposed to an existing one. The answer to that is yes and no. To elaborate, when the program was working as it is supposed to eve and creating new lights and positioning them did not cause any slowdown despite the file that I was working on, but after the problem starts occurring it is like a snowball rolling down a hill. Every time I open the file (the one I was working on when the problem started to happen) to continue work on it be sluggish response of Photoshop is still there and only gets worse. If I start over on a new file the program will run much more smoothly, but will still had a slight amount of sluggishness with less intensive task whereas the more intensive task such as working with lights is still moderately sluggish but not to the extent as it was working in the previous file. As you said in your post it seems the father all along I get in my document the more pronounced and time consuming the freezes become. But nonetheless wants the problem has occurred it does not go away I can only lesson that by starting from scratch, which is not very convenient.
    If you look at the process monitor log file linked in my first post and search through it pretty quickly you will see photoshop doing this
    1-Operation: unknown     Path:C:\
    2-Operation: unknown     Path:C:\Program Files
    3-Operation: unknown     Path:C:\Program Files\Adobe
    4-Operation: unknown     Path:C:\Program Files\Adobe\Adobe Photoshop                                 Cs6 (64 bit)
    5-Operation: unknown     Path:C:\Program Files\Adobe\Adobe Photoshop                                 Cs6 (64 bit)\Required
    6-Operation: unknown     Path:C:\Program Files\Adobe\Adobe Photoshop                                 Cs6 (64 bit)\Required\CgShaders
    7-Operation: unknown     Path:C:\Program Files\Adobe\Adobe Photoshop                                 Cs6 (64 bit)\Required\CgShaders
    1-Result: INVALIDATE PARAMETER
    2-Result: INVALIDATE PARAMETER
    3-Result: INVALIDATE PARAMETER
    4-Result: INVALIDATE PARAMETER
    5-Result: INVALIDATE PARAMETER
    6-Result: NO SUCH FILE
    7-Result: NAME NOT FOUND
    It does this repeatedly over and over again, specifically when I tried to work with lights. The weird thing is that there is no directory in required called CgShaders. I see 1 CG.dll & 1 cgGL.dll in the Photoshop (64 bit) directory. To meet that just seems very strange and probably more than a coincidence and probably does not happen on everybody else's system.
    This is the process monitor log file that I saved in csv format and edited the first three blocks so that it fit correctly. Open it up in wordpad and you'll see what I mean. This is what I was talking about right above.
    https://www.dropbox.com/s/43waqf9wvc8xo7m/Logfile.CSV.rtf

  • How do i deactivate a device through icloud if the device is broken and i am unable to turn on find my iphone? Also i do not own a apple id as ive been using a family members due to problems when trying to make one?

    How do i deactivate a device through icloud if the device is broken and i am unable to turn on find my iphone? Also i do not own a apple id as ive been using a family members due to problems when trying to make one?

    Hey tyjox,
    Thanks for the question. After reviewing your post, it sounds like you need to deactivate Find My iPhone on a device that does not work. You will need to work with the family member of the account the iPhone is registered with. I would recommend that you use this article to help you resolve or isolate the issue.
    iCloud: Remove your device from Find My iPhone
    http://support.apple.com/kb/PH2702
    Remove an iOS device you no longer have
    If you no longer have the iOS device because you gave it away or sold it, you need to remotely erase it before you can remove it.
    Sign in to icloud.com/#find with your Apple ID (the one you use with iCloud).If you’re using another iCloud app, click the app’s name at the top of the iCloud.com window, then click Find My iPhone.
    Click All Devices, then select the device.
    Click Erase [device], then enter your Apple ID password. Because the device isn’t lost, don’t enter a phone number or message.If the device is offline, the remote erase begins the next time it’s online. You’ll receive an email when the device is erased.
    When the device is erased, click Remove from Account.All your content is erased and someone else can now activate the device.
    Thanks for using Apple Support Communities.
    Have a nice day,
    Mario

  • HT5105 How can you do picture in picture when you are working with a Multicam clip?

    How can you do picture in picture when you are working with a Multicam clip?

    Im doing a drumming music video and with the multi cam clip all the angles are nicely sync'd top the audio.
    Problem is if i want to have 3 angles on top of the main shot, im gonna have to re-sync them all to get them to line up manually. If i could use the multi cam clip they will already be aligned
    Thanks for trying to help appreciate, hoping someone has some multiclip knowledge and will be able to tell me if yay or nay.

  • Bugged audio playback? When I start working with more than 1 audio track.

    Hi!
    I have been using premiere elements 12 for editing FullHD videos.
    Brand new for me just bought it like 2 weeks ago.
    Now during the last couple weeks I have had this MAJOR proglem with editing the audio.
    This problem is headache and turns my simple editing into almost impossibilites.
    I have had this problem with all my projects. _ALL_
    Usually the problem seems to appear when I want to start working with several audio tracks.
    At somepoint my projects just get ruined, I simply cannot hear the audio tracks.
    The audio starts to disapear randomly from all the audio tracks.
    It is not only playback problem. When I exported the video, the audio was partly missing, same as the project.
    I have tried to look help on forums and search all what I could find, but havent been able to solve this.
    Small fix has slightly helped:
    I export audio to single track and bring it back to project. This works but I still usually have more editing to do.
    I simply cannot understand why the playback disapears, I fear it is a bug.
    I found lot of earlier version problems on people with similar type of problems, but no help for this version of program.
    To solve the matter I have changed my audio setting in PE12.
    Tried Premiere Elements WDM Sound and ASIO4ALL V2, but same problem on both.
    I have looked up that my audio playback device and PE12 matches, and are not muted, and volumes maxed.
    I have deleted my C:\ appdata\roaming\adobe  premiere elements & premiere elements 12 folder preferences.. not helping..
    I press the update pretty much everyday hoping for new version.. But yes, program keeps telling me its the latest.
    I usually only work with 3 audio track maxinum. And I am doing really the most basic stuff here..
    I have set all my audios to foreground and it has given me best results, but it does not seem to take the problem away as at somepoint randomly my audio playback is missing again, randomly across the playback.
    Please anyone? I am feeling hopeless here.
    Info on my computer:
    Operating system: Win7
    Processor: AMD Phenom(tm) x4 955 processor 3.20 GHz
    memory (RAM): 4GB
    system: 64bit
    <moved from downloading, installing, setting up forum by mod- kglad>
    Message was edited by: kglad

    First of all, thank you for replying my message!
    I will go and try to answer best I can.
    Source media properties:
    Progressive frame rate, I record this from a game.
    Recording program: dxtory
    codec: Lagarith Lossless codec
    Format: avi
    Frame width: 1920
    Frame height: 1080
    Data rate: 1990656kbps
    total bit rate 1992192kbps
    Frame rate 30/frames/seccond
    Audio of video properties:
    Codec: PCM
    Format: 16bit, stereo
    Bit rate: 1536kbps
    Channels: 2(stereo)
    Audio sample rate 48 kHz
    In addition to that I use wav files for music and narrate
    Music files sizes 20-50mb
    bit rate: ~1411kbps
    In total sizes of audio involved is usually something like 300mb
    What are you or the program setting as the project preset in the new project dialog. See Edit Menu/Project Settings/General and its Editing Mode, Timebase, and Frame Size readings.
    I opened new project and this is what i got:
    Editing mode: HD 1080i
    Timebase: 25,00 frames/second
    Frame size: 1920 x1080
    Audio is 48000 Hz
    (I dont know how to change these, btw. Program don't seem to let me change editing mode.
    I also looked up my most recent project and found these settings:
    Editing Mode: DSLR
    Timebase: 30,00 frames/second
    Frame size: 1920 x1080
    ..and same audio settings
    Do the problems persist if you start a new project? Do you find the audio problems develop when the Timeline content is fairly well developed or can the problems occur when there a minimal amount of content of those tracks? Let us look at the size and duration of this project.
    Yes, I have had this problem with all my projects. Sometimes it goes away tho, just enough for me to work bit more. My work progress usually starts by clipping the video material, like 1h material to 8minutes in clips. After that I want to work with audio tracks, and here problems start! When I start working with more than 1 track, so the problem is at later stage. To fix the problem a small fix I have used, I export audio like music and effects tracks together to 1 wav and bring it back. After that, I start working with narrate track. To describe the problem with audio:
    Audio Randomly starts to disapear when I playback, and can also be gone if I export the video out.
    My source videos total size are usually within 80Gb max limit and audio edit material 300mb total.
    In my last project my biggest source video was 47GB and leingth of 1h 4m, in addition to that I had 3 smaller videos, sizes of 1GB, 1,54GB and 300MB.
    Is there any evidence that you are accidentially moving the audio track rubberband to alter the audio volume. That rubberband is the orange line that runs horizontally through the middle of the audio clip when you are looking at the wave form display style of that audio track. The rubberband represents audio volume.
    No, audio volumes might have been adjusted in my tracks but they are present. The problem is usually like ~2-5seconds, a random audio track can be heard (like music or narrate) or just no sounds at all. This makes it very difficult to work with the audio. Also I gotta say that this problem starts by simply having the 2-3 audio tracks.. In my recent project the only adjustment I used to edit the audio was fade in/out.
    I don't have any other audio problems with any other programs.
    I am more than happy to provide more information if needed. I hope this information helps.
    In addition I can say that when I close Adobe Premiere Elements 12, it crashes. No idea why.
    I have also looked up my firewall settings, anything involved adobe and premiere..
    In addition some effects like HD text templates make "Adobe Media Core CS6" crash. I tend to just not use em, or if I need em, I add em at end of the edits.
    I hope this helps, I would really like to solve this problem.
    Thank you alot for taking the time to answer! I welcome anyone to help mee too! Please giev links to similar problems too. Thank you everybody!

  • Itunes 10.5 freezes when trying to sync with iPhone 4

    My itunes 10.5 freezes when trying to sync with iPhone 4.
    When i disconnect the iphone itunes unfreezes instantly.
    Where is the problem?
    Ipad syncs with no problems.

    I am having the same issue
    Itunes 10.5 freeze when I connect my Iphone 3GS
    I found a solution is to remove the podcast from my iphone and then it work immediately
    But this is anoying to allways remove my podcast from my iphone
    I will try your solution to way a long time and see if the problem resolve by itself I keep you posted of my results

  • IPhone 4s reboots many times when trying to sync with iTunes

    iPhone 4s reboots many times when trying to sync with iTunes.
    Since IOS 8, my iPhone 4s reboots many times when trying to sync with iTunes on my Mac. It will start running the backup and reboot, it will reboot many times when updating packages. It can take 12 hours to finish a sync with the mac. The phone gets hot during this. I keep deleting more and more pictures and apps, hoping that maybe it doesn't have enough space, but iTunes shows I have 4.9 Gbytes free, which I think should be enough.  I am on IOS 8.0.2, I thought maybe I would try to upgrade to the latest IOS today, but I am worried that I will end up with a non working phone.
    Is anyone else having these problems?
    Ed

    Well thats Od... I have never experienced that problem.. Maybe you should try to backup your phone and then wipe it by going to Settings<General<Reset

  • Quick Time screen capture freezes when i'm working with Modo 3D. Any solution?

    Hi guys,   When I'm working with Luxology Modo, Quick Time screen capture freezes every time on Mac OS X Mavericks. When I'm doing some operation in Modo, like slice geometry per exemple, QuickTime crashes. I must force quit quicktime and when I relauch the application, the screen capture opens but screen capture ends at the time when I cliked on the Modo slice operation. It's frustrating because I can't do nothing with screen capture.  I tried other screen capture applications but the problem persists! When I was using Snow Leopard Quick Time works very well!!   Do you have some resolution for this problem?   Regards,   César.

    I'm using OS X Mavericks as well, and it seems like the same thing happens when I try to type in MonoDevelop, part of the Unity package. Unity works fine, it only seems as though I can't screen record typing in MonoDevelop. It looks like it's still recording, it just has the rainbow wheel of death after I try to finish out the Quicktime. I left it up for several days and ignored it, but it still didn't finish. I finally had to force quit it and reopen it and when I did it opened up the temporary file of the video I was recording, but it stopped whenever I started to type into the MonoDevelop interface. The first time it let me save the video to the desktop. The second time, the time which I left it open for days, it would not let me save it, on command-S or on exit. I don't know exactly what's wrong, but I believe that you know as much as I do. Please post a reply if you need any more information or have a fix.

  • I got problem when trying to contact my iphone 4 using facetime,it did ringing,but my iphone 4 did not receive that call as if nothing happen.But,when the call ended,that call appeared in the missed call list.fyi both are connected to internet.

    i got problem when trying to call my iphone 4 using facetime with my Macbook Pro 13',it did ringing,but my iphone 4 did not receive that call as if nothing happen.But,when the call ended,that call appeared in the missed call list.fyi both are connected to internet.Help!! thank you in advance

    i got problem when trying to call my iphone 4 using facetime with my Macbook Pro 13',it did ringing,but my iphone 4 did not receive that call as if nothing happen.But,when the call ended,that call appeared in the missed call list.fyi both are connected to internet.Help!! thank you in advance

  • I am having the problem when trying to take a panorama picture.   It may only take the first frame or doesn't even start at all when I press the shutter button. even though when i  hold the phone straight up and down, so that camera is at the top

    I am having the problem when trying to take a panorama picture. 
    It may only take the first frame or doesn't even start at all when I press the shutter button.
    even though when i  hold the phone straight up and down, so that camera is at the top on the back and the home button is on the bottom on the front.
    This problem is irritating me....?

    To take panorama
    - ensure that the panorama option is on
    - press the shutter button once
    - you will see a line with an arrow
    - move around in a circle  ( I keep the camera steady and turn myself around in a circle)
    - as you do this you will see the arrow moving across the screen as it captures pictures
    - at the end of the capture, you will be able to see your panorama picture
    I hope that this helps, do report back.

Maybe you are looking for

  • What I learned in the mortgage and build process

    What I learned in my 8 month loan and new build process. -don't sweat the small stuff -no news is good news.  If you send in the requested docs, and you don't hear back quickly, than all is good.  Understand the farther out from closing you are, the

  • Modifying value of dynamic field-symbol

    I have a requirement in which i need to access columns of a dynamic internal table , manipulate and update back to the dynamic internal table Names of the columns are also not fixed. This i am determing at the runtime. Following is the code used : Lo

  • N73 v3.0649.0.0.1 firmware update change log?

    Is there any change log for the v3.0 firmware update? Because I don't see anything new nor do I feel any difference after a 65MB update. Thanks in advance.

  • Can ditto select files based on modification date?

    Hi. I'm trying to use ditto to make backups. I would like to have it select only files modified after a certain date. Is there a way to do this? I noticed the bom (bill of materials) option... can that be used for this purpose somehow? Not quite sure

  • Recovering contacts from iCloud

    Hello, I have iPhone 5 and I purchased iPhone 6 so I gave my old iPhone to my sister and she deleted all my contacts using an app called multi delete. Now my new iPhone have no contacts. Both phones have the same iCloud account. How can I recover my