Iphoto error message "NSplaceholder Mutable String nil argument"

I'm getting this error message every time I try to buy an iphoto book. I've talked to apple several times and reconstructed the books, deleted photos and the message is repeated each time and I am unable to assemble the books. Has anyone else had this experience?

One small precision regarding my post : see here the explanation that solved the problem.
http://docs.info.apple.com/article.html?artnum=306692

Similar Messages

  • Error message: 450 [Wrong number of arguments or invalid property assignment]

    Hello Support,
    I have a vbscript which does some database query. i see from the log that script quits with the below error.
    Error message: 450 [Wrong number of arguments or invalid property assignment]
    but when i execute the same query directly on database, it gives me correct result. also i see that not all the time script quits with this error.
    Does anyone have idea how to troubleshoot it?
    -KAKA-

    i see. i know at which line it fails as error handling is done and will be written in the log.
    sQuery_Prod = "select object_text from sto_ov_externalnode where name = '" & NodeId & "'"
    oRecordSet_Prod.Open sQuery_Prod, oConnection, adOpenStatic, adLockOptimistic
    if err.number <> 0 then
    LogWrite ("Unable to run query")
    LogWrite ("Query: [" & sQuery_Prod & "]")
    LogWrite ("Connection string: [" & sConnect & "]")
    LogWrite ("Error message: " & err.number & " [" & err.description & "]")
    wscript.quit(1)
    end if
    and this piece of code write following in the log.
    07.10.2014 16:55:03:Unable to run query
    07.10.2014 16:55:03:Query: [select object_text from sto_ov_externalnode where name = '{B10255CF-F618-45FB-99BC-31A57D747702}']
    07.10.2014 16:55:03:Connection string: [DSN=Script;DRIVER={SQL Native Client};User ID=xxxxxx;Password=yyyyyy]
    07.10.2014 16:55:03:Error message: 450 [Wrong number of arguments or invalid property assignment]
    Where as i can run query "select object_text from sto_ov_externalnode where name = '{B10255CF-F618-45FB-99BC-31A57D747702}'" successfully directly on database.
    also in the next cycle same query will be successfull within script too.
    Does this help in understanding the problem?
    -KAKA-

  • How can I put all output error message into a String Variable ??

    Dear Sir:
    I have following code, When I run it and I press overflow radio button, It outputs following message:
    Caught RuntimeException: java.lang.NullPointerException
    java.lang.NullPointerException
         at ExceptionHandling.ExceptTest.actionPerformed(ExceptTest.java:72)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
         at javax.swing.JToggleButton$ToggleButtonModel.setPressed(JToggleButton.java:291)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
         at java.awt.Component.processMouseEvent(Component.java:6038)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3260)
         at java.awt.Component.processEvent(Component.java:5803)
         at java.awt.Container.processEvent(Container.java:2058)
         at java.awt.Component.dispatchEventImpl(Component.java:4410)
         at java.awt.Container.dispatchEventImpl(Container.java:2116)
         at java.awt.Component.dispatchEvent(Component.java:4240)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4322)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3986)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3916)
         at java.awt.Container.dispatchEventImpl(Container.java:2102)
         at java.awt.Window.dispatchEventImpl(Window.java:2429)
         at java.awt.Component.dispatchEvent(Component.java:4240)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:273)Caught RuntimeException: java.lang.NullPointerException
         at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:183)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:173)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:168)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:160)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:121)I hope to catch all these error message into a String Variable such as StrErrorMsg, then I can use System.out.println(StrErrorMsg) to print it out or store somewhere, not only display at runtime,
    How can I do this??
    Thanks a lot,
    See code below.
    import java.awt.Frame;
    import java.awt.GridLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import java.io.FileInputStream;
    import javax.swing.ButtonGroup;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JRadioButton;
    public class ExceptTest extends JFrame implements ActionListener {
        private double[] a;
      private JRadioButton divideByZeroButton;
      private JRadioButton badCastButton;
      private JRadioButton arrayBoundsButton;
      private JRadioButton nullPointerButton;
      private JRadioButton negSqrtButton;
      private JRadioButton overflowButton;
      private JRadioButton noSuchFileButton;
      private JRadioButton throwUnknownButton;
      public ExceptTest() {
        JPanel p = new JPanel();
        ButtonGroup g = new ButtonGroup();
        p.setLayout(new GridLayout(8, 1));
        divideByZeroButton = addRadioButton("Divide by zero", g, p);
        badCastButton = addRadioButton("Bad cast", g, p);
        arrayBoundsButton = addRadioButton("Array bounds", g, p);
        nullPointerButton = addRadioButton("Null pointer", g, p);
        negSqrtButton = addRadioButton("sqrt(-1)", g, p);
        overflowButton = addRadioButton("Overflow", g, p);
        noSuchFileButton = addRadioButton("No such file", g, p);
        throwUnknownButton = addRadioButton("Throw unknown", g, p);
        getContentPane().add(p);
      private JRadioButton addRadioButton(String s, ButtonGroup g, JPanel p) {
        JRadioButton button = new JRadioButton(s, false);
        button.addActionListener(this);
        g.add(button);
        p.add(button);
        return button;
      public void actionPerformed(ActionEvent evt) {
        try {
          Object source = evt.getSource();
          if (source == divideByZeroButton) {
            a[1] = a[1] / a[1] - a[1];
          } else if (source == badCastButton) {
            Frame f = (Frame) evt.getSource();
          } else if (source == arrayBoundsButton) {
            a[1] = a[10];
          } else if (source == nullPointerButton) {
            Frame f = null;
            f.setSize(200, 200);
          } else if (source == negSqrtButton) {
            a[1] = Math.sqrt(-1);
          } else if (source == overflowButton) {
            a[1] = 1000 * 1000 * 1000 * 1000;
            int n = (int) a[1];
          } else if (source == noSuchFileButton) {
            FileInputStream is = new FileInputStream("Java Source and Support");
          } else if (source == throwUnknownButton) {
            throw new UnknownError();
        } catch (RuntimeException e) {
          System.out.println("Caught RuntimeException: " + e);
          e.printStackTrace();
          System.out.println("Caught RuntimeException: " + e);
        } catch (Exception e) {
          System.out.println("Caught Exception: " + e);
      public static void main(String[] args) {
        JFrame frame = new ExceptTest();
        frame.setSize(150, 200);
        frame.addWindowListener(new WindowAdapter() {
          public void windowClosing(WindowEvent e) {
            System.exit(0);
        frame.show();
    }

    yes, I update as follows,
    but not looks good.
    import java.io.*;
    public class UncaughtLogger implements Thread.UncaughtExceptionHandler {
        private File file;
        private static String errorMessage;
        public UncaughtLogger(File file) {
            this.file = file;
            //Thread.setDefaultUncaughtExceptionHandler(this);
        public UncaughtLogger(String str) {
            this.errorMessage = str;
            Thread.setDefaultUncaughtExceptionHandler(this);
        //@Override()
        public void uncaughtException(Thread t, Throwable e){
            try {
                log(e);
            } catch (Throwable throwable) {
                System.err.println("error in logging:");
                throwable.printStackTrace();
        private void log(Throwable e) throws IOException {
            PrintWriter out = new PrintWriter(new FileWriter(file, true));
            try {
                e.printStackTrace(out);
            } finally {
                out.close();
        private static UncaughtLogger logger = new UncaughtLogger(new File("C:/temp/log.txt"));
        private static UncaughtLogger logger2 = new UncaughtLogger(errorMessage);
        public static void main(String[] args) {
                String s1 = "Hello World!";
                s1 = null;
                String s2 = s1.getClass().getName();
                System.out.println(s1);
                System.out.println(s2);
                System.out.println("errorMessage =" + errorMessage);
    }

  • Error message :ORA-01704: string literal too long

    Hello:
    I need your help. I have a long long string must be insert to
    database. I use long data type and long varchar data type to
    define table. But I got the error messages is ORA-01704: string
    literal too long when I insert data. Please tell me the solution.
    Thank you so so much.

    Hello,
    I have a table with a column "XML_Data" of type CLOB.
    I am trying to insert XML of the size 59975. I
    get a error message ORA-01704: string literal too
    long.
    How to enter that large XML??
    Regards,
    Sanjeev.Try using Oracles XMLDB, by dropping the XML file into the XMLDB WebDAV area and then you can access it directly through the database "resource_view". No limits on file size whatsoever.
    If you're using XML within an Oracle database you're better off doing things this way as it gets stored in an XMLType column (sys.xmltype) which is a superset object of the CLOB datatype, providing all the object methods you need to navigate, update and query your XML. You won't be able to do much with it just sitting in a CLOB column without re-writing the wheel that Oracle have already built.
    ;)

  • Iphoto error message: unable to assemble book

    iphoto error message: "unable to assemble book" when i'm trying to place an order.

    Boot into Safe Mode,  Mac OS X: Starting up in Safe Mode, and create a preview copy as described in this Apple document,  .  If that is successful preview the PDF copy before ordering the book from the Safe Mode.
    Keep the PDF  file to compare with the printed copy when you receive it.
    By any chance are you ordering an XL sized book?
    OT

  • Tried burning photos to DVD from iphoto - error message

    Burned several hundred photos without any issues, but now have tried unsuccessfully to do the last 300 photos - each time I enter a disc and hit burn, I get an error message: "The burn to the MATSHITA DVD-R UJ-898 drive failed. The disc drive didn’t respond properly and can’t recover or retry". Tried burning them in smaller groups of albums and having no luck. Also tried rebooting.
    Using iPhoto 8.1.2.
    Any suggestions?

    I ran into this exact issue, trying to archive some iPhone videos from my iPhoto Library. Even though iPhoto tells you how much space you have left on the disc, it must not count any additional data it has to burn onto that disc. I finally got my disc to burn by removing videos, freeing up around 500 MB from the DVD.
    This is very frustrating behavior not only because the error message says nothing about disc space, but also because iPhoto gives you a user interface for keeping an eye on how much space is left on your disc but it doesn't tell you the whole story.

  • .Issue with creating a photo book in Iphoto error message states some frames are missing images, but I've checked each one and from I can see they are all filled in. It won't let my buy the book though

    Having an Issue with Creating a photo Book in Iphoto. I continue to get an error message when clicking on "Buy Book" The error indicates that I'm missing a frame or frames from the book. I've checked this many times and cannot locate the issue. The book appears to be complete from my perspective. What can I do now? I worked very hard on this and would hate to lose it all.

    How did you check the book? Did you preview it?
    See:
    iPhoto, Aperture: Previewing an order in iPhoto or Aperture
    Is that the message?
    "your book seems to have frames on one or more pages that do not contain photos. You must either change the layout of those pages or place photos in those frames before you can buy this book."
    The most common reason for this error is, that you have used a page layout that needs a background photo and you have not yet added the backdrop. Then the book is still showing some default grayscale image.
    Check, if one of your page layouts is using this background:
    Then you need to add a photo to the background of the page.

  • Run time error message - Conversion from string "Mobile Telecommunications" to type 'Boolean' is not valid.

    I get a error message when I select an element in the combo box, please review my variables:
     Public Sector As String
        Public Index As Decimal
    ...and code
     Select Case ComboBox1.Text
                Case "Banks"
                    Sector = "Bank" And Index = -0.086
                Case "Mobile Telecommunications"
                    Sector = "Mobile Telecommunications" And Index = -0.024
                Case "Real Estate Investment Trusts"
                    Sector = "Real Estate Investment Trusts" And Index = 0.132
            End Select

    And is a boolean operator. Try it like this instead:
    Select Case ComboBox1.Text
    Case "Banks"
    Sector = "Bank"
    Index = -0.086
    Case "Mobile Telecommunications"
    Sector = "Mobile Telecommunications"
    Index = -0.024
    Case "Real Estate Investment Trusts"
    Sector = "Real Estate Investment Trusts"
    Index = 0.132
    End Select
    Still lost in code, just at a little higher level.

  • Iphoto Error Message- Necessary Data Reference is Missing

    How can I play my videos if there is an error message that says, "Unable to play. Necessary Data Reference is Missing"?

    By restoring them from your back up. That message means that iPhoto can't find them.

  • ASP Error message: Invalid class string

    Server object, ASP 0177 (0x800401F3)
    Invalid class string
    /asap/admin/insert.asp
    I have seen that the installation of MSXML 2.0 may be the solution to this error message I am getting. How do I go about installing this? I have downloaded and thought I installed, but still get this message. Anybody else seen this and know of possible solution?
    Please help...

    I just noticed the customer is on PL39 and the version I am on here is PL43.  Could that be presenting a problem?
    Thanks,
    EJD

  • IPhoto: Error message when creating/buying card

    How do I figure out which photo in an iPhoto card layout has a "null file name"? Error message says that I cannot purchase card due to a photo having a null filename.

    Does the error occur when you preview?
    Before ordering your book (or other project)  preview it using this method - http://support.apple.com/kb/HT1040 - and save the resulting PDF for reference - the delivered project will match it.
    If it does then remove them one by one and preview until you find the ofending photos
    LN

  • IPhoto Error Message - access to library?

    My hard drive recently crashed and I did not have any back up (yes, yes, I know). I was lucky enough to find someone who could recover everything for me, replace my hard drive and get me running again. The only thing they didn't reinstall was iLife. So, I've reinstalled the iLife software and now iPhoto gives me an Error message that reads:
    *"Some recent changes may be lost. Make sure your hard disk has enough space and that iPhoto is able to access the iPhoto Library."*
    This means, anything I upload to iPhoto is completely lost and unsaved when I quit iPhoto. My hard drive absolutely has enough space. How do I check/change to make sure that iPhoto has access to my library?

    Welcome to Apple Discussions,
    - Make sure your software is entirely up to date
    - Make sure your iPhoto Library is in the standard location: Home > Pictures > iPhoto Library
    - Make sure you have enough available space on your internal HD to accommodate whatever you are importing (I'm assuming that you get this message when you import). To Check available space, click on the Finder icon (blue on blue smiley face) in the dock and look at the bottom of the window that appears.
    - You may have a broken iPhoto Library (not surprising if the hard drive failed and you had data recovered). Try creating a new iPhoto Library and adding in the pictures to see if the same error occurs:
    1.) Hold down option
    2.) Launch iPhoto
    3.) Create new library and save
    4.) Import pictures
    - If the new library works then the issue is with your old library.
    Switch back to your old library by holding down option and re-opening iPhoto and choosing the original library. Then follow this article to rebuild your library: http://support.apple.com/kb/HT2638. I would use the options for Repair permissions and Rebuild database.
    If that does not resolve the issue, make a brand new folder on your desktop, and drag the iPhoto Library into that folder.
    Click on the folder and go to File > Get Info.
    Go down to the bottom of the Get Info window and make sure that your user name is listed with Read/Write access.
    Click on the pad lock to unlock it.
    Click on the cog and choose "Apply to enclosed"
    Once that process completes try opening the Library again.
    If that does not resolve the issue you can follow the bottom of this article to perform a manual rebuild http://support.apple.com/kb/HT2638. Keep in mind this will not preserve keepsakes like Albums, slideshows, books, etc.
    Hope that helps.

  • Iphoto error message & poss virus?

    My iphoto keeps displaying the error message "The volume for “***.JPG” cannot be found. It displays the thumbnail but can't/won't display the photo itself. This doesn't affect all photos in iphoto but affects groups taken at the same time. If I plug in the original memory card I can access the full photo but unplug it & I'm back to just the thumbnail with error message.
    My operating system is Mac OS X Version 10.7.5 and iphoto '11 Version 9.2 (626).
    Can anyone help please?

    You have one or more links to a disused volume in the iPhoto library. Since the volume is no longer accessible, those links are now invalid. You should be able to find them by a tedious process of elimination. First, back up all data.
    Select about half of your photos and start to drag them. Don't actually move them anywhere; just drag them a little and release. If you get the warning, then some of the photos you selected are invalid links. Narrow down the selection. If you don't get the warning, select the other half of the library.
    When you've isolated the invalid items, delete them and then select
              iPhoto ▹ Empty iPhoto Trash
    from the menu bar. Finally, rebuild the iPhoto library.
    (Credit for this idea to Winston Moy of winstonmoy.com.)
    In some cases, the above procedure may not work. Then you'll have to create a new library with the contents of the existing one. The easiest way to do that is with a third-party application called "iPhoto Library Manager," which you can find in a web search. From the application's menu bar (not the iPhoto menu bar), select
              Library ▹ Rebuild
    Books, calendars, and slideshows won't be preserved.

  • IPhoto error message keeps coming up iPhoto quit unexpectedly can't load anything, anyone got any ideas.

    Not sure what has happened but Iphoto keeps crashing this is part of the error message...Help
    Process:         iPhoto [553]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.2 (9.2)
    Build Info:      iPhotoProject-626000000000000~2
    Code Type:       X86 (Native)
    Parent Process:  launchd [136]
    Date/Time:       2011-10-26 20:47:27.909 +1000
    OS Version:      Mac OS X 10.7.2 (11C74)
    Report Version:  9
    Interval Since Last Report:          2579 sec
    Crashes Since Last Report:           15
    Per-App Interval Since Last Report:  977 sec
    Per-App Crashes Since Last Report:   15

    Exactly how are you trying to restore form TM?
    Have you tried rebuilding your iPhoto library?
    And your comments indicate that you may not understand iPhoto at all - you should not be inside the iPhoto library - there are no user servicable parts in it - and iPhoto does not duplicate photos  - more details of yoru work flow would help sort this out
    LN

  • IPhoto error message, " iPhoto is full"

    I am getting an error message saying "iPhoto is full". Seems impossible as we are talking about some 1000 images total.
    Can anybody help?

    Is that the complete exact error message?
    How much free space do you have on your hard drive?
    LN

Maybe you are looking for