Weird error with placed .jpgs

Anybody else getting this? Whenever I place, touch, or move a .jpg file in Ai I get this pop-up error, but once cleared I can continue to work normally (until the next time I touch the .jpg). I've restarted, dumped prefs, etc. but it still happens.
Not sure if it's related to Illustrator itself or an external plug-in. For the record, I am not, nor do I know any, "guptaa", so it's odd to see it trying to reference his desktop!
I'm using a mid-2010 iMac running OSX 10.9.5 and Illustrator CC2014.

Meehan,
Is this limited to a single document, or to a single image?
In the former case, you may try to open a new document and File>Place the ailing one into it.
In the latter case, you may consider whether to use it at all (if there are alternatives).

Similar Messages

  • Weird error with sync

    I have an older 10GB iPod with the buttons across the top. I am trying to sync it with my computer and it starts to and then brings up a weird error message. It says that it can not be done because the folder can not be found. I dont even get a chance to restore my ipod because as soon as i plug it in it starts to do it and then brings up the message and ejects and shuts off the ipod. Please help.

    Just wanted to add some more info. I have done a proper restart of my iPad. I have also restarted first iTunes (no difference) and then the computer. No difference.
    Then I went into Preferences and deleted the device backup for my iPad. Plugged the iPad back in and it did a new backup VERY quickly. Unplugged, plugged back in and synced again... AND it's still installing all the apps (which are already on my iPad)... AGAIN
    I really don't know what to try next...

  • Weird error with taglib

    Hello, I'm getting this weird error. Sometimes when I'm using taglibs I get org.apache.jasper.JasperException: /mypage.jsp(11,4) According to TLD or attribute directive in tag file, attribute value does not accept any expressions. I refresh the page, and it displays, refresh again and the error is there again, this keeps happening randomly.
    In this post I found a solution http://forum.java.sun.com/thread.jspa?threadID=683007&messageID=9423383, changing the taglib to the "_rt" works, but some guy says this is not a preferred solution.
    This is my code without the "fix":
    <%@page contentType="text/html"%>
    <%@page pageEncoding="UTF-8"%>
    <%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
    <%@taglib uri="http://java.sun.com/jstl/fmt" prefix="fmt"%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html>
        <head>
            <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
            <title><fmt:message key="appTitle"/></title> 
        </head>
        <body>      
            <h3><fmt:message key="news"/></h3>
            <c:forEach items="${model.news}" var="news">
                <p>
                    <strong><c:out value="${news.title}"/></strong> - <i> <fmt:formatDate value="${news.daten}" pattern="dd/MM/yyyy"/> </i> - <a href="<c:url value="deleteNews.htm?newsId="/><c:out value="${news.id}"/>">Delete</a> - <a href="<c:url value="editNews.htm?newsId="/><c:out value="${news.id}"/>">Edit</a> <br>
                    <c:out value="${news.content}"/><br>
                    <small>Source:<c:out value="${news.source}"/></small>
                </p>
            </c:forEach>       
            <a href="<c:url value="addNews.htm"/>">Add News</a>       
        </body>
    </html>How can I fix this issue using the normal taglibs?
    Thanks in advance

    You seem to be mixing the versions of JSTL taglibs in your page.
    For the c taglib you are using the JSTL1.1 URI
    For the fmt taglib you are using the JSTL1.0 URI
    Change the import line to use the JSTL1.1 URI, and you should be set
    <%@taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
    (note the subtle change with /jsp in there)
    As I mentioned in the other post, use of the _rt taglib should be restricted to JSP1.2 containers (eg Tomcat4)
    In JSP2.0 containers (Tomcat5+) you should use JSTL1.1, and it should work perfectly, provided your web.xml file is up to date.
    Some other posts on the subject you might find useful, that explain why the JSTL1.0 tags did not accept runtime expressions:
    http://forum.java.sun.com/thread.jspa?threadID=628740
    http://forum.java.sun.com/thread.jspa?threadID=629437&tstart=0
    Cheers,
    evnafets (some guy)

  • Weird Error with imported (streamed) FLV

    The error being thrown is "The video player is in the connection error state. It enters this state when a video stream attempted to load but was unsuccessful. There are two possible reasons for the error: no connection to the server or the stream was not found."
    The reason it's weird is that the video plays just fine when the program is run.
    The error only pops up at random, generally when I'm doing other things (editing objects, drawing, selecting objects, navigating the timeline) and not when I'm actually compiling or running the application.
    The video is being streamed locally, so there's no issue connecting to a server, and the file exists, so it's not missing.
    WTH?

    I didn't say I've never done a drag/drop.... After learning how to use that option many years ago, I've just never chosen to use that method for any of my Web videos. The drag/drop as well as the Import Video wizard are very "Flash 101ish" and often present problems for inexperienced users..... as you are seeing.
    When I trouble shoot problems posted here I try to recreate the exact steps used in an attempt to replicate the problem so it can be solved. While you might find that frustrating to describe... it often resolves the problem.
    So I would venture to say that I have a little more experience than you in all aspects of Flash video.
    You may have missed it in my earlier response but I said that I could not replicate your problem (following the steps you describe), I was always presented with the option to choose between streaming server and local file.... which the links above pointed out.
    I stick by the reason I gave for the error, Flash is assuming you are attempting to connect to a streaming server and because no RTMP URL is listed, the connection always fails... hence the error message
    There was also the suggesting to place the FLVPlayback on the stage manually and set contentPath.... bypassing any Import Wizard problems..
    If those offers/suggestions don't satify you... oh well, I'll move on
    Best wishes,
    Adninjastrator

  • Weird Error with open dataset

    I am trying to read a .csv file using WS_upload. Please see the foll code:
    IF FILE1+0(1) <> '\'.
    CALL FUNCTION 'WS_UPLOAD'
         EXPORTING
             FILENAME = dataset
              FILENAME = FILE1
             FILETYPE = 'DAT'
              FILETYPE = 'ASC'
         TABLES
              DATA_TAB = rec.
    ENDIF.
    OPEN DATASET FILE1 IN TEXT MODE for INPUT.
    IF sy-subrc = 0.
      DO.
        READ DATASET FILE1 INTO rec2.
        IF sy-subrc <> 0.
          EXIT.
        ELSE.
         WRITE / rec2.
          rec-INFO = rec2.
          APPEND REC.
        ENDIF.
      ENDDO.
    ENDIF.
    The system is behaving different when I run in foreground on our test server and it gives error while running on produciton server. The open dataset block does not execute on the test server but on production server it does. And it ahs suddenly started doing it with any CSV file.. including the ones which earlier it did not ahve any problem with. Because the open dataset block executes on the production server it adds around 10000 lines to the file... the file ofcourse contain all garbage values for eg gwrd.exe, instance.lst , car.exe, dll etc. I have no clue why this has started happening suddenly when it was not happeing 1 hour before.
    please help/
    thanks.

    Hi Pranav,
    For the first IF condition where you determine whether to use WS_UPLOAD or to call OPEN DATASET.
    What will happen if the first IF condition is satisfied? It will trigger the WS_UPLOAD logic and after that it will also try to trigger the OPEN DATASET logic rite?
    Did u check if the program is trying to trigger the OPEN DATASET also? Coz if its trying to call OPEN DATASET after trying to call WS_UPLOAD it might either end up in error or might try to read some junk.
    Try to use the MESSAGE option of OPEN DATASET command and see if there is any error message issued.
    Hope this helps
    Cheers
    VJ

  • Weird errors with css11501s

    Hello all,
    A company I work for is hosting an application at a popular managed hosting provider and are using the css11501s to do layer-5 load balancing between a set of application servers.
    We are seeing a strange error that seems to occur when the following conditions are satisfied:
    1) The client of the application is running Internet Explorer (which separated HTTP headers with a \r\n as opposed to a single \n)
    2) The client is using a connection with a low mtu (thus there is a good deal of fragmentation and the http request fragments somewhere in the headers)
    Assume we have a packet which reaches the css with a trailing carriage return ('\r') charater, the following newline being at the begining of the next continuation packet, the CSS is errouniosly appending a \n\r\n to the packet before combining it with the continuation and sending it on to the server. For example, I'm currently looking at a dump where we recieve a packet which ends in this line
    Connection: Keep-Alive\r
    and the subequent packet's http section begins with
    \nCache-Control... etc
    This is being modified by the css and sent through as one packet with the follwing structure:
    Connection: Keep-alive\r\n
    \r\n
    Cache-Control:... etc
    Which is completely screwing up our application for obvious reasons. Has anybody else experienced this? I'm no expert on this piece of hardware but it seems our managed host isn't either...

    I just did the test and there is no problem.
    I sent the exact same lines as you indicated above and it works fine.
    Also, FYI, the \r\n is mandatory per HTTP RFC.
    So all browsers send the \r\n, not just IE.
    Regards,
    Gilles.

  • Weird error with AFP shares

    Hi everyone,
    I am using an OS X 10.8.5 Server with mostly 10.6.8 Clients. The clients usually open, save, copy to and from AFP shares provided by the server. Sometimes it happens that a client gets thrown out of a folder it is currently viewing on the AFP share. Once this behaviour starts it is near impossible to navigate down on the folder hierarchy since you get teleported back 1 to 3 levels. The number of levels depends on how fast you managed to drill down before you get thrown back. So an example would be:
    The client views folder A on /Volumes/AFPShare/Stuff/Folder1
    You start to navigate to a folder residing inside Folder1. If you now wait for a few seconds Finder will throw you out and back to Folder1. If you mangage to drill a few levels down really fast you might make it to /Volumes/AFPShare/Stuff/Folder1/data/more/here. But then you immediately are teleported back to /Volumes/AFPShare/Stuff/Folder1.
    From this point it won’t ever work again until you unmount and remount the share. Sometimes even a reboot of the client is neccessary. It happens with ~10 clients so it is not just one isolated client acting weird. On the Server side I did not notice anything wrong or weird happening. There are no backups, syncs or other tasks running on the server while this occurs. It seems to happen more often when you are using list view (cmd+2), but I have already seen it with column view, too.
    I’ve read about similar problems with SMB, but I am really stumped at where to look next. I already ruled out that it’s just with 1 client Mac. Deleting .DS_Store files did not help (not that I counted on that one).
    Another weird thing in addition to that is that sometimes the Finder shows folders twice or even more often. These are exactly named the same. Sometimes they disappear when you want to click on one of them.
    Any ideas anyone?
    Thanks
    Björn

    I believe I've seen a similar problem in my development.
    This was occurring in Beta 2 and I believe I had it happen in Beta 3 as well.
    This might be a way to repro the issue?
    1.  Have several collections.
    2.  Follow Robin's post to combine the collections into one:
    http://social.technet.microsoft.com/Forums/en-US/3c55b873-a0c7-4cc8-9bab-eaf809f62ab0/exporting-data?forum=projectsiena
    3. Change one of the underlying collections - add another column to the collection without using the function 'addcolumn' for example)
    What I saw happening is that the 'master collection' would say there was a problem.  To fix it, I simply had to drop off the last part of the function and then add it back (similar to what Ptr is saying in his posting). 
    The function in this example looked like this:  Collect(MasterBackup, Import1!Data) 
    By removing Import1!Data and then typing it back in the problem would be resolved.
    I hope this helps to add some insight -
    Thor

  • Weird errors with a DATE field in a certain row

    We have a table with an exp_date field of DATE datatype. One row is giving us mysterious problems.
    If I query the row in sqlplus, the exp_date field displays 18-Jun-04. The same query in Oracle SQL Developer displays 19-Jun-04. The same query in TOAD returns a NULL field, and adding "exp_date IS NULL" to the query returns no rows (since it really isn't NULL!).
    In sqlplus, if I use trunc() or round() on exp_date, it gets bumped up to 19-Jun-04.
    This field for this record is causing some issues in our java classes as well, we're adding some more logging/exception handling to find out exactly what they are.
    Any thoughts?
    FWIW this is on Oracle 10gR2 (10.2.0.2).
    Message was edited by:
    dtseiler

    what happens if you do the following on all three different environments:
    SQL> select to_char(exp_date, 'dd-mon-yyyy hh24:mi:ss') from your_table where your_condition ;
    [pre]

  • Weird errors with wireless router

    I have a TP-Link router set up at my relatives' place. It works perfectly well with two iPhones and an iPad, with no problems whatsoever.
    My MacBook Pro is a different story. I have set it up with this router. When I manage to get it to work, it works flawlessly... Until my laptop goes to sleep. Then, when waking up from sleep, it does the following things (about 3 out of 5 times):
    1. It keeps searching for networks, and finds several unknown ones (neighbors, etc.) after a long while.
    2. It complains that none of the preferred networks are available...
    3. Then it (sometimes) goes on to list my TP-Link router, even if it clearly contradicts 2.
    4. When trying to connect to it, it sometimes (but not always) asks for the password (even though it's saved in Keychain)
    5. Then it times out trying to connect.
    I repeat, and/or turn AirPort off and on, and after several minutes, it eventually starts working again.
    Signal strength is okay. Two iPhones manage to connect from the same room, at the same time. These, as well as an iPad, always work. 100% of the time. No exception.
    My MacBook Pro doesn't have any similar problems on any other WiFi networks.

    Apr 26 00:38:59 Andras-Puizs-MacBook-Pro airportd[344]: Apple80211Associate() failed -3905 (Timeout)
    ^^this one several times, plus some of these below:
    Apr 26 00:38:59 Andras-Puizs-MacBook-Pro Apple80211 framework[136]: airportd MIG failed (Associate Event) = -3905 (Timeout)  (port = 42259)
    Just plain old timeout, it seems.

  • Weird error with division and float

    I'm trying to write a program (which is due tomorrow) which draws an ellipse with horizontal and vertical radii input by the user. Now, for whatever reason, when I divide two numbers and put the answer in a double, it disregards the decimal (so when the answer is less than one, it gives me 0.0)
    Why is it doing that and what can I do to fix it?

    Heh. I actually figured that out before you posted,
    but thanks for the response.Most had that figured out before you even made your original posting so don't be too cocky now -:)

  • Weird Error with Creative Cloud

    I have the Adobe updater telling me that I have updates, but when I click on the icon in the System Tray and select "Open Updater" it brings up what you can see in this screenshot:
    As you can see the CC application is locked/frozen and you can see the desktop wallpaper through it. This happens right after the CC app logs me in. The little window with the CC icon in it has focus and cannot be closed. I have to use the Task Manager to close this application to remove it from my desktop, there's no other way.
    I'm on Windows 8.1. Any help would be appreciated.

    Have you tried canceling and trying again?  If the problem still continues please try downloading the trial from http://www.adobe.com/cfusion/tdrc/index.cfm?product=photoshop&loc=en_us.

  • Weird Error With  Firefox

    Every once in a while this message pops up. Any clue what it means??
    JavaScript Application
    injectScriptWithPath: Type Error: can't access dead object

    Hi Sally, see if clearing the Caches helps, or...
    http://support.mozilla.org/en-US/questions/935811

  • HELP! weird error with Nokia 6300 which keeps shut...

    hi
    pls help me, because there's no info on this in the manual. This morning after waking up my mobile was shut down. I turned it on, and suddenly I see the SMS icon (which is normally static) flipping in my screen and a BLACK E to the left of it. After a few seconds my mobile resets, and in some cases just shuts down.
    What is happening? FYI, I have never connected to the internet with my mobile nor have i received any strange SMS. Pls help me asap as my mobile is my only contact to the world!!!!
    thx

    it is probably your sim messages that need to be erased, you can do that by going to :
    Menu > Messaging > Options > Sim Messages
    delete all sim messages and your issue should be solved
    now the e usually indicates your edge internet connection. did you enable some new programs? try to restore factory settings from you menu the default code is always 12345
    You know what I love about you the most, the fact that you are not me ! In love with technology and all that it can offer. Join me in discovery....

  • Weird error with Vista...anyone help with preset error?

    Ok, i installed the trial version on Vista...it supposedly installed ok as admin, and it opens fine.
    If I start a new project and go to file>transcode>set presets(or whatever that one says to set the presets I click it and get this error [\dev\stingray\Libraries\UIFramework\Src\Window.cpp-247]
    Any thoughts on this?
    Then I have to end it. So I restart, then add a video and audio clip put both in a new timeline and then click as above to set new preset and just get the busy signal and says Encore dvd not responding at the top...so I can't get to the transcode presets at all. Any ideas? It appears you folks running it on Vista have never had this error..so wondering why I have it..thanks ahead of time..t

    As John says quite rightly, Encore is not supported or qualified for Vista.
    Tghis means it might work, but probably not properly, or more likely will not work well at all.
    Vista has made some serious changes to the way the OS handles XML files, and this is causing a lot of problems.

  • Weird Error with JApplet

    My program worked fine as a standalone, but when i tried to convert it to an applet, a pop up box looking for a file in my a: drive comes up and after i close it the applet is terminated. Any ideas on whas goin on??
    cheers-

    Anybody?

Maybe you are looking for