Exception again but not previous

Hi
now the given example is running well
my code is creating this error or exception
Exception:
java.sql.SQLException: ORA-00917: missing comma
     at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:180)
     at oracle.jdbc.oci8.OCIDBAccess.check_error(OCIDBAccess.java, Compiled Code)
     at oracle.jdbc.oci8.OCIDBAccess.executeFetch(OCIDBAccess.java, Compiled Code)
     at oracle.jdbc.oci8.OCIDBAccess.parseExecuteFetch(OCIDBAccess.java, Compiled Code)
     at oracle.jdbc.driver.OracleStatement.executeNonQuery(OracleStatement.java, Compiled Code)
     at oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java, Compiled Code)
     at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java, Compiled Code)
     at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java, Compiled Code)
     at fileSave.insertNewPhoto(filesave.java:69)
     at demo.jsp._docInsert._jspService(_docInsert.java:154)
     at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java, Compiled Code)
     at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java, Compiled Code)
     at oracle.jsp.JspServlet.doDispatch(JspServlet.java, Compiled Code)
     at oracle.jsp.JspServlet.internalService(JspServlet.java, Compiled Code)
     at oracle.jsp.JspServlet.service(JspServlet.java, Compiled Code)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
     at org.apache.jserv.JServConnection.processRequest(JServConnection.java, Compiled Code)
     at org.apache.jserv.JServConnection.run(JServConnection.java, Compiled Code)
     at java.lang.Thread.run(Thread.java:479)

<%@ page language="java" %>
<%@ page import="fileSave" %>
<%@ page import="oracle.ord.im.OrdHttpJspResponseHandler" %>
<%@ page import="oracle.ord.im.OrdHttpUploadFormData" %>
<%@ page import="oracle.ord.im.OrdHttpUploadFile" %>
<jsp:useBean id = "docb" scope = "page" class = "fileSave"/>
<jsp:useBean id = "handler" scope = "page" class = "oracle.ord.im.OrdHttpJspResponseHandler"/>
<jsp:useBean id = "formData" scope = "page"
class = "oracle.ord.im.OrdHttpUploadFormData"/>
<%
String doc_id;
String to;
String from;
String sub;
String desc;
OrdHttpUploadFile uploaddoc = null;
try
formData.setServletRequest(request);
if (!formData.isUploadRequest())
%>
<jsp:forward page = "docload.jsp"/>
<%
return ;
formData.parseFormData();
to = formData.getParameter("to");
from = formData.getParameter("from");
sub = formData.getParameter("sub");
desc = formData.getParameter("desc");
uploaddoc = formData.getFileParameter("doc");
if (uploaddoc == null ||
uploaddoc.getOriginalFileName() == null ||
uploaddoc.getOriginalFileName().length() == 0)
%>
<jsp:forward page = "docload.jsp?error = Please + give + doc + name."/>
<%
return;
if (uploaddoc.getContentLength() == 0)
%>
<jsp:forward page = "loaddoc.jsp?error = Please + give + File. "/>
<%
return ;
//docb.setDoc_id(doc_id);
docb.setTo(to);
docb.setFrom(from);
docb.setSub(sub);
docb.setDesc(desc);
docb.insertNewPhoto(uploaddoc);
finally
//docb.release();
// formData.release();
%>
<html>
<head>
<title>File Insertion jsp page</title>
</head>
<body>
<h3>Document load page</h3>
</body>
</html>
fileSave code is here
import java.util.*;
import java.io.*;
import java.sql.*;
import javax.servlet.ServletException;
import oracle.jdbc.driver.*;
import oracle.ord.im.OrdDoc;
import oracle.ord.im.OrdHttpUploadFile;
import oracle.ord.im.OrdMediaUtil;
public class fileSave
     private final static String EMPTY_DOC = "ordsys.ordDoc.init()";
     private OracleConnection conn;
     private OraclePreparedStatement stmt;
     private OracleResultSet rset;
     private static Stack connStack = new Stack();
     private static boolean driverLoaded = false;
     String doc_id;
     String to;
     String from;
     String sub;
     String desc;
     OrdDoc doc;
     public void selectTable() throws SQLException
          if (conn == null)
               getConnection();
               stmt = (OraclePreparedStatement)conn.prepareStatement(
                              "select * from doc_table");
               rset =(OracleResultSet)stmt.executeQuery();
     public void selectRowByDoc_id(String doc_id) throws SQLException
               if (conn == null)
                         getConnection();
               stmt = (OraclePreparedStatement)conn.prepareStatement(
                                                                 "select * from doc_table where doc_number = ?");
                    stmt.setString(1, doc_id);
                    rset = (OracleResultSet)stmt.executeQuery();
     public boolean fetch() throws SQLException
               if (rset.next())
                    doc_id = rset.getString(1);
                    to = rset.getString(2);
                    from = rset.getString(3);
                    sub = rset.getString(4);
                    desc = rset.getString(5);
                    doc = (OrdDoc)rset.getCustomDatum(6,OrdDoc.getFactory() );
                         return true;
                         else
                         rset.close();
                         stmt.close();
                         return false;
public void insertNewPhoto(OrdHttpUploadFile uploaddoc)
throws SQLException, ServletException, IOException
if (conn == null)
     getConnection();
                         conn.setAutoCommit(false);
          OraclePreparedStatement stmt =     
                                        (OraclePreparedStatement)conn.prepareStatement(          
     "select doc_sequence.nextval from dual" );
OracleResultSet rset = (OracleResultSet)stmt.executeQuery();
     if (!rset.next() )     {
     throw new ServletException( "new ID not found" );
          String doc_id = rset.getString( 1 );     
rset.close();
stmt.close();
stmt = (OraclePreparedStatement)conn.prepareStatement(
"insert into doc_table(doc_number, to_user, from_user,subject, description, doc)" +
                                   "values(?,?,?,?,?,ORDSYS.ORDDoc.init())");
                         stmt.setString(1,doc_id);
                         stmt.setString(2,to);
                         stmt.setString(3,from);
                         stmt.setString(4,sub);
                         stmt.setString(5,desc);
                         stmt.executeUpdate();
                         stmt.close();
                         stmt = (OraclePreparedStatement)conn.prepareStatement(
                    "select doc from doc_table where doc_number = ? for update");
                         stmt.setString(1, doc_id);
                         rset = (OracleResultSet)stmt.executeQuery();
                         if (!rset.next())
     throw new ServletException("new row not found in table");
doc = (OrdDoc)rset.getCustomDatum(1,OrdDoc.getFactory());
rset.close();
stmt.close();
uploaddoc.loadDoc(doc);
stmt = (OraclePreparedStatement)conn.prepareStatement(
"update doc_table set doc = ? where doc_number = ? ");
stmt.setCustomDatum(1,doc);
stmt.setString(2,doc_id);
stmt.execute();
stmt.close();
conn.commit();
public void release() throws SQLException
if (rset != null)
rset.close();
rset = null;
if (stmt != null)
stmt.close();
rset = null;
if (conn != null)
freeConnection(conn);
conn = null;
public String getDoc_id()
return doc_id;
public void setDoc_id(String doc_id)
this.doc_id = doc_id;
public String getTo()
return to;
public void setTo(String to)
this.to = to;
public String getFrom()
return from;
public void setFrom(String from)
this.from = from;
public String getSub()
return sub;
public void setSub(String sub)
this.sub = sub;
public String getDesc()
return desc;
public void setDesc(String desc)
this.desc = desc;
public OrdDoc getDoc()
return doc;
public void setDoc(OrdDoc doc)
this.doc = doc;
private Connection getConnection()
throws SQLException
//Connection conn = null;
synchronized(connStack)
if(!driverLoaded)
DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
driverLoaded = true;
if (connStack.empty())
                                   conn =(OracleConnection)DriverManager.getConnection
               ("jdbc:oracle:oci8:@", "kashif", "raojee");
                                        try
                                        OrdMediaUtil.imCompatibilityInit(conn);
                                        catch (Exception e)
                                        throw new SQLException(e.toString());
                                             else
conn = (OracleConnection)connStack.pop();
conn.setAutoCommit(true);
return conn;
private void freeConnection(Connection conn)
if(conn != null)
synchronized(connStack)
connStack.push(conn);

Similar Messages

  • 'exception thrown but not caught' error on the url iview

    Hi,
    EP6, we have url iview that is working fine for displaying a web application. but the problem is some of the link on the web application throws 'exception thrown but not caught' error. it happens to some of the users though.

    Hi Mokone
    I agree with Raghvendranath statement.
    This is not portal side problem.U just using URL of that application
    Also do this
    Open the URLiView editor and check the Fetch Mode property value.
        Launch the same URL in a new browser window (not in the portal).
        Change the URLiView Fetch Mode property from Server-Side to Client-Side.
        The iView is using the Server-side fetching mode but no proxy is defined for the portal
    Hope this info help you
    Regards
    Ruturaj

  • Site works in exception.sites but not DeploymentRuleSet?

    Has anyone seen where a site will work when added to exception.sites but doesn't work in the DeploymentRuleSet.jar? 
    Same url   "https://host.mydomain.com:123/" or even if I use "*.mydomain.com" in DeploymentRuleSet, it still fails with a manifest error, which should be bypassed with the "permission=run" rule.  Trying to get by until the application is updated later this year.
    Fails with both Java 7u75  or 8u40.  and both versions  work when I put the entry in exception.sites
    I have a number of other sites in the DeploymentRuleSet.jar which work fine, this particular one just won't work.

    Fascinating, Kirk (+he types with one raised eyebrow+).
    QuickTimeKirk wrote:
    When I drag across your page most of your links do not change. The "text" portion of them doesn't change, either. Something is covering them.
    I can see that. But for the life of me, I don't know what could be covering those links. In my app, when I click in the area of the links, the type is the first item selected. Unless, possibly, it could somehow be the faint reflection of my black-and-white image (me & the ground I stand on). Hmmm...
    QuickTimeKirk wrote:
    Single click (outside the boundaries of your page contents) and an "outline" will appear. It shows the image file dimensions and locations.
    This I don't see. An outline? As in "an object outline," or as in "a list of dimensions and locations?" When I click outside my page contents, I get nothing.
    Thanks, QTK. I truly appreciate your troubleshooting here.
    John

  • URLConnection with Proxy (yeah URL's again but not simmilar to others;))

    Hy all,
    What i try to do: getting the content of a website over a Proxy.
    Well it took me some time to google and stuff and i found out this is something many ppl. are stuck at.
    The most common solution to do that is something like where i am at this point, there is a commented version of the code at the
    end of this post (And please note that my exception Handling should be taken as a 'how to not do' solution^^).
    public static void main(String[] args){
            java.net.URL url = null;
            URLConnection  con = null;
            InputStream in = null;
            String user = "usr";
            String passwd = "�pwd";
            try{
              url = new URL("http", "anyProxy.com", 80, "http://www.google.ch");
              con = url.openConnection();
            }catch(Exception e){
                e.printStackTrace();
            con.setDoInput(Boolean.TRUE);
            con.setReadTimeout(10);
            con.setRequestProperty("Accept","text/xml,text/*,text/html");
            con.setRequestProperty("Cache-Control","no-cache");
            con.setRequestProperty("Proxy-Authorization", "Basic " + new sun.misc.BASE64Encoder().encode((user + ":" + passwd).getBytes()) );
            try{
                con.connect();
                in = con.getInputStream();
            }catch(IOException e){
                e.printStackTrace();
            BufferedReader reader = new BufferedReader(new InputStreamReader(in));
            String fullFile = "";
            try{
                for (String line = ""; line != null; line = reader.readLine()) {
                   fullFile += line;
            }catch(Exception e){
                e.printStackTrace();
            try{in.close();reader.close();}catch(Exception e){e.printStackTrace();};
            url = null;
            con = null;
            in = null;
            reader = null;
            System.out.println(fullFile);
        }So after this you should be able to read a url... but wait, there is MY problem, i get the content of the proxyserver delivered but not the site i want the content to be delivered AFTER passing the proxy (google in this case).
    I found about 30 Forums/ Posts that recomend that solution, 1 or 2 are mentioned that there wont be any content of the following site (google in this example) but NONE of these has a solution or a link to any informations how to solve that problem.
    Thank you for taking the time to read this Post, also thank you for any tips/links etc. that could solve this problem.
    I wish you a nice day;)
    Regards
    Balsi
    The commented solution should not be taken to seriously, this is how I interprete the solution and how i assume it works. It should not be taken
    word by word but at least help to understand a bit. Please post any badly wrong informations so i can delete/ change the comment, there is enoth
    of wrong information already out there...
    public static void main(String[] args){
            /*The URL just specifies a Resource, which means stuff like:
             *    - Protocoll => Which protocoll is needet, http, ftp, file etc. (File is used if URL represents a local file)
             *    - Adress, Proxys usw. Check out the API for overall Informations
            java.net.URL url = null;
            /*The URLConnections represents a specified Connection, note that the connection from
             *url.getConnection() is not yet a successfull connection to the adress specified
            URLConnection  con = null;
            //The InputStream will be used to get the Data from the Site
            InputStream in = null;
            //This is a proxy User if a proxy is between you and the internet
            String user = "usr";
            //This is the pw you need to authentificate  the user defined above when connecting to the proxy
            String passwd = "pwd";
            try{
            /* The Url now gets inicialised, the delivered parameters are:
             * String protocol: The protocoll we want to use (since we use a Proxy its http)
             * String host: The Proxyserver itself, can be the dns name or the ip
             * int Port: The Proxyservers port he's listening and accepting requests
             * String file: The URL we want to get after Proxy authentification
            url = new URL("http", "anyProxy.com", 80, "http://www.google.ch");
            /* We now open the connection, note that opening the connection does not mean
             * accutally connecting to a server! It just represents a Connection, in the real
             * World this would be the idear to open a browser and later type in a Url and press enter
            con = url.openConnection();
            }catch(Exception e){
                e.printStackTrace();
            // We need to indicate that we want to read content from that connection by setting true
            con.setDoInput(Boolean.TRUE);
            // Timeout if needet, default is somewhere between 10-30secs
            con.setReadTimeout(10);
            //Filter what date this connection accepts
    //        con.setRequestProperty("Accept","text/xml,text/*,text/html");
            //Filter weather we accept cached site data
            con.setRequestProperty("Cache-Control","no-cache");
            /* Now this is important, we specifie that this Connection will use a Proxy by setting the Attribute
             * Proxy-Authorizasion to a Base64 Encoded value which contains our user as well as the Password
            con.setRequestProperty("Proxy-Authorization", "Basic " + new sun.misc.BASE64Encoder().encode((user + ":" + passwd).getBytes()) );
            try{
            /* We now finally acctually connect to the server this is equal to pressing enter inside a
             * We-explorer such as IE, Mozilla etc. after typing in a URL
             * NOTE: This is not the same like IE, Mozilla etc. displaying something afterwards!
             *       (No worry, this will come soon)
            con.connect();
            /* There we go, we connected to the server and open a InputStream to get the data from it
            in = con.getInputStream();
            }catch(IOException e){
                e.printStackTrace();
            // We use a BufferedReader to read the InputStream
            BufferedReader reader = new BufferedReader(new InputStreamReader(in));
            // For now we use a String, note that a StringBuffer would be more effective looking at the performance
            String fullFile = "";
            try{
                for (String line = ""; line != null; line = reader.readLine()) {
                   fullFile += line;
            }catch(Exception e){
                e.printStackTrace();
            /* It's very recomendet to close all the connections/streams etc. especially if your application
             * isnt just a mainprogramm like this to show a simple example. If you would open serval connetions
             * parallely (Threads) not closing the streams/connections will fastly kill your memory;)
            url = null;
            con = null;
            //expecially the Streams&Buffers need to be closed but can throw a exception while trying it
            try{in.close();reader.close();}catch(Exception e){e.printStackTrace();};
            in = null;
            System.out.println(fullFile);
        }

    Hy and thanks for the fast replie, i will check out the Authenticator as well as the java.net.Proxy for further information, hopefully i get a sollution i then can post here;)
    Yeah, i wanted to comment that readTimeout but forgot, doesnt seem to work for me, no matter what i set there (had ranges from 1- 99999) the timeout always occurs after about 20 seconds (but it could also be that there is something like a not working authentication mechanism abortin my connection hu?)
    Well, going to check out the other two classes mentioned, of course going to reward you if this gets me to my aim;)
    Regards
    Balsi
    (oh well and sorry for my probably not that nice english, not my motherlanguage;))

  • Exception logged but not thrown on invocation of webservice (BEA-000905)

    Using webservices.jar that comes with Weblogic SP3 and ant task clientgen to build the client, I got this warning on console:
    <14/Abr/2005 16H00m BST> <Warning> <Net> <BEA-000905> <Could not open connection with host: localhost and port: 7777.>
    Of course, weblogic is right, localhost:7777 is not listening, but the problem is that the application does not know this, since no exception is thrown. I'm catching for a Throwable and I get nothing. This is severe because I'm changing the state of some records in a DB table if the invocation of the webservice is OK, i.e., if no exception is thrown. But there really is a connection exception...
    Can anyone help?

    Just to clarify: the warning is logged when invoking a webservice and the target machine is down. I'm sniffing the communication through localhost:7777 (so this is the target machine for the invocation), and then it redirects the request to the machine where the webservice is hosted.
    I was expecting to catch an exception like IOException or RemoteException, or even a custom exception that I defined in the throws clause of the webservice method.

  • I accidently deleted my pre-installed safari program on my iphone and can't find it anywhere. I have tried to search spots to download it again, but not sure which is the right download as only see for mac users etc.  Need help to get safari back Iphone 4

    Hi,
    I have accidently deleted safari from my iphone and can't find it to put it back. I did it ages ago as I didn't know what it was and I was trying to create extra space!   Now when I click on a link say in an email, it doesn't come up with a browser.  I have looked at the apple site but can only see a download for mac users.  Not sure if this is the case because it is preinstalled on the iphone.
    Help needed please!
    Linda/Phillip

    Try this...
    Reset your Home screen to the default layout:
    Choose Settings > General > Reset and tap Reset Home Screen Layout.
    iPhone User Guide
    http://manuals.info.apple.com/en_US/iphone_user_guide.pdf

  • Update 3.615 unable to load; says to close firefox and try again but not versions are on.

    do I need to uninstall upgrade and if so how do i do that?

    Sounds like a "hang at exit" problem. There are several possible causes for that error. See:
    * How to stop the running Firefox process
    ** In Task Manager, does firefox.exe show in the '''<u>Processes</u>''' tab?
    ** See: http://kb.mozillazine.org/Kill_application
    * What may cause Firefox to hang at exit
    ** http://support.mozilla.com/en-US/kb/Firefox+hangs (see "Hang at exit" section)
    ** http://kb.mozillazine.org/Firefox_hangs
    ** https://support.mozilla.com/en-US/kb/Firefox+is+already+running+but+is+not+responding
    * You may need to try Firefox Safe Mode
    ** You may need to use '''Safe Mode''' to locate the problem: http://support.mozilla.com/en-US/kb/Safe+Mode
    **Firefox Safe Mode is a diagnostic mode that disables Extensions and some other features of Firefox. If you are using a theme, switch to the DEFAULT theme: Tools > Add-ons > Themes '''<u>before</u>''' starting Safe Mode. When entering Safe Mode, do not check any items on the entry window, just click "Continue in Safe Mode". Test to see if the problem you are experiencing is corrected.
    ** If the problem does not occur in Safe-mode then disable all of your Extensions and Plug-ins and then try to find which is causing it by enabling '''<u>one at a time</u>''' until the problem reappears. '''<u>You MUST close and restart Firefox after EACH change</u>''' via File > Restart Firefox (on Mac: Firefox > Quit). You can use "Disable all add-ons" on the Safe mode start window.
    ** See the following for more information
    *** http://support.mozilla.com/en-US/kb/Troubleshooting+extensions+and+themes
    *** http://support.mozilla.com/en-US/kb/Troubleshooting+plugins
    *** http://support.mozilla.com/en-US/kb/Basic+Troubleshooting

  • I bougt a new  Macbook pro in 02/26/2013, in  11/25/ 2013, my trackpad become bulging, they exchange the trackpad, but not the bulging battery.  I went there yesterday, with different problem, and they said one screw  came off from the  truckpad again!

    I bought a new  Macbook pro in 02/26/2013 from Apple Canadian Ices -003.  Than I could not use it, because  my cursor uncontrollably  was jumping around the screen, I was  resumed my trackpad become bulging, Than on11/25/ 2013 they changed my trackpad for free, because was manufactoring defect,  but not the bulging battery.  They said that is do not needed.  Since that my cursor is quiet often quivering, I think my Macbook has serious  manufacturing defect. But they said no, during a year period I went to  the genius bar at least 15 times, with this and similar problems.   I went there yesterday, with different problems, and they said one of the screws  came off from my   truck pad, therefore they need to fix it and change it.  I said: -  What,  how, what  is the real problem?  A screw does not comes off just like that?  They will change my trackpad again, but not the battery. They said  has to rebuild the operation system, I'm  saving all of my data right now! I would like to exchange the battery too, or maybe get a new Macbook. My Macbook is 2010 China model. How long I would have this trackpad  problem? What are you suggesting?

    If it's a 2010 as you say towards the end of your post, it's out of warranty. The battery isn't covered in that case. Why don't you just buy a new battery if that's your concern? If it's a 2013 as you say up at the top, it shouldn't have a bulging battery. How do you know it does? If it really does, ask for the store manager and explain the problem.

  • My Ipod charges only at the store, but not at home or anywhere else!

    I've just got a Ipod 30Gb, and usually I put it to charge on my computer before the battery is completely off, but I forgot to do it and now it is completely empty. I tried to charge it at home, but my computers don't recognize my Ipod, so I took it to the store, they tried with their Power adapter and it worked. I bought an adapter for me, but when I got home, it still didn't work. I tried at work and it did'nt charge either, so I returned to the store, and they tried with their adapter, and it worked again, but not with any other new adapter they opened to test. They have to old model, the big one...does anyone have any idea of what could I do before being obliged to send my Ipod for repair? I'm sure it's not broken...

    Not sure what you mean about "big old" charger working and newer ones not. It is possible that the battery has run down too low to revive by itself or that the iPod has crashed and won't respond.
    Try leaving it for 24-30 hours in a cool place and try again with the AC charger and a known good cable.
    For more info, see my web site: The iPod Battery Unplugged.
    -dan
    BlacBook, iMac 15, G1, G3, G5 iPods   Mac OS X (10.4.8)   Boot Camp

  • HT4623 I updated to 7.0 and now my ipod wont play in my car stero. I have reset, bought an itunes song and reset again but nothing is working. Pandora wont play. I can hear it on my phone when I unplug but not anything thru the stero except static. Help!

    I updated to 7.0 and now my ipod wont play in my car stero. I have reset, bought an itunes song and reset again but nothing is working. Pandora wont play. I can hear it very slightly in my speakers if I turn up the speakers but it is so faint. It plays thru its own speakers and my radio plays thru my speakers in my car so my its not my speakers.Help! Thank you!

    Hi Novagurl2369!
    I have an article for you that can provide some helpful troubleshooting steps to address your issue:
    No sound through stereo headset1
    Inspect the headset jack for debris and clean if necessary.
    Connect the headset and make sure the connector is pushed in all the way.
    Check the volume setting. Adjust the volume by pressing the volume up and down button on the left side of the iPhone.
    If you are trying to listen to music and cannot hear any audio, make sure that the music on iPhone is not paused. Try squeezing the headset microphone to resume playback. Additionally, from the Home screen you can choose iPod > Now Playing, then tap Play.
    Make sure the latest version of iTunes is installed on the computer that you are syncing the iPhone with (songs purchased from the iTunes Store using earlier versions of iTunes won't play).
    Try another Apple headset (some third-party headsets require an adapter to be used with original iPhone).
    Try a different song or video.
    Check to see if the iPhone alert sounds or other iPhone sound effects exhibit the same audio issues.
    Disconnect the headset from the iPhone and see if sound comes from the built-in speaker.
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/TS2802
    Take care, and thanks for visiting the Apple Support Communities.
    -Braden

  • I accidentally cut instead of copied a folder of previously imported raw files. When I pasted the folder back I could see it in Windows Explore but not in the LR library. How can I work with these files again?

    HI,
    My daughter will often ask me to give her raw files I've taken at family events so that she can process them in her own copy of LR. (I work too slowly, apparently.) Recently I inadvertently cut instead of copied a folder. When I pasted it back I could see it in Windows Explorer but not in my LR library. I thought that re-importing the files might work, LR gave me a message that they were already imported. I expect there is a way to make the files available again in LR and would be grateful for some advice.
    thanks
    Ken

    The solutions is either of the following:
    Adobe Lightroom - Find moved or missing files and folders
    Copy the photos back into the exact same folder and folder location that they were in before
    I don't know what you actually did "when I pasted it back" ... but the bigger issue is that you shouldn't be working with these files in your operating system, period. Once you import them into Lightroom, you don't manage these files in your operating system.

  • HT1386 I have synced the items from itunes to an iphone 4 without problem, except the two albums I just purchased did not sync.  They show up on the itunes on my desktop and on my ipod, but not on the new iphone.  What do I need to do?

    I have an itunes account and an ipod, and when I purchased 2 albums on the computer they synced straight to the ipod.  I bought an iphone and used the usb cord from the computer to it to sync the itunes albums to the new phone.  Everything transfered, and those were albums I had uploaded (not purchased from the itunes store), except the two albmus I just purchased from the itunes store.  They appear on my itunes on the computer and ipod, but not on the iphone.  What did I fail to do or did I do incorrectly?

    This might sound weird, but here's an idea which worked for me re music that was newly added to itunes and showed up in my ipod but wouldn't play - I simply played the tracks in itunes first, just a second of time or so will do it, not the whole track, then connect the ipod and sync again and this time they played - hope this helps.

  • Restore previous backup (folder exist in C:/...backup) but not on the iTune list.

    There were problems with my iPhone for the past few days with freezing etc. So i backup the phone and brought it into Apple for an exchange for a new one. When i got home, when i plugged into iTune, there are no other options apart from ONLY set up as a new phone.
    After that was done, i tried to restore from the previous back but the one i backed up from the previous phone is not listed except the one new one is created with plugging in the new phone for the first time.
    I have checked '\Users\(username)\AppData\Roaming\Apple Computer\MobileSync\Backup\' there is my folder there named 'a97551c3537f0068b2f80e92b51254453e20675e' which is the backup i did with the previous phone but cannot be seem when i tried to restore in iTune.
    MAJOR HELP PLEASE!!

    I backed up my computer - but not my iphone on time machine.  Will the backup file on time machine be from the last iphone backup?  or from my last iphone sync? (I won't have access to my time machine drive for a few days, and am stressing out trying to find another way to retrieve the lost info)

  • I am not able to hear any sounds of games on the speaker. Though the sounds function on the head fones. The speaker works perfect in other applications except games.Have checked all the settings but not able to fix it.

    i am not able to hear any sounds of games on the speaker. Though the sounds function on the head fones. The speaker works perfect in other applications except games.Have checked all the settings but not able to fix it.

    Have you got notifications muted ? Only notifications (including games) get muted, so the iPod and Videos apps, and headphones, still get sound. Depending on what you've got Settings > General > Use Side Switch To set to (mute or rotation lock), then you can mute notifications by the switch on the right hand side of the iPad, or via the taskbar : double-click the home button; slide from the left; and its the icon; press home again to exit the taskbar. The function that isn't on the side switch is set via the taskbar instead : http://support.apple.com/kb/HT4085
    If that doesn't solve it then try a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • How do I permanently set a popup exception. I can set an exception, but everytime I leave FF and connect again, I have to set the exception again.

    How do I permanently set a popup exception. I can set an exception, but every time I leave FF and connect again, I have to set the exception again. Can I set it once on a permanent basis?

    In case you are using "Clear history when Firefox closes":
    *do not clear Site Preferences
    *Tools > Options > Privacy: History: [X] Clear history when Firefox closes > Settings
    *https://support.mozilla.org/kb/Clear+Recent+History
    Note that clearing "Site Preferences" clears all exceptions for cookies, images, pop-up windows, software installation, and passwords.

Maybe you are looking for