Can't set up Lightroom Publish Services, internal error occurs

I'm trying to use LR 3's publish service for SmugMug.  I'm a little scared since 
I have a large number of photos to sync up.
When I click on "setup" on the SmugMug export services, I get a popup 
error with this message:
"An internal error has occurred: ?:0: attempt to index field 'exportSettings' (a 
nil value)"
Any idea how to fix this?
The same message appears for any of the publish services (Flickr, Facebook).
If I go the Publish manager, I can authorize the SmugMug account.  It then says it syncs the hierarchy, but afterwards nothing seems to have happened and the account is not longer authorized.
Thanks.

Thanks Mark, but that's not it.
I'm not using Jeff's plugin, but the new built-in one for LR 3.2 and LR3.3.  I did try to install Jeff's plugin just before LR3.2 came out.  I uninstalled Jeff's version (or at least tried to - it doesn't appear anymore) before I ever used it.
I'm not even to the point of exporting to SmugMug, I just click 'setup' and get the error.

Similar Messages

  • Upgraded to 10.3.1.55, now can't set iT as default player,"An error occurred when updating the default player for audio files types.  You do not have enough access privileges for this operation." How to fix?

    After I upgraded iTunes, iTunes doesn't recognize CD in the drive, apparently isn't the default player.  It won't let me set iTunes as the default player, I get the error message "An error occurred when updating the default player for audio files types."  I tried Whitesides' remedy (changing Read Only status in folder in Windows) but it didn't solve the problem.  Any suggestions?  Thanks.
    J

    Oddly enough. I think I just solved it. It looks like, for some reason, my computer has about 8 different "iTunes music" folders, and I've been saving my music to the wrong one. Neat. Music now imports and plays as it should. Copying things over is going to be so fun tonight!

  • Using Lightroom publish service for either Flickr or SmugMug. I have many images with a keyword Madd

    Using Lightroom publish service for either Flickr or SmugMug. I have many images with a keyword Maddy. This frequently doesn't show up in SmugMug or Flickr. All my other keywords seem to work fine. Anybody experience anything like this?

    You only get one opportunity to set up the hard drive under publish and the folder cannot be changed unless you get a plug-in to provide a work around.
    However you could just create a generic publish folder - something like Photo Lab, or Print Job.
    But you could then right click on your publish folder and select “make target collection” - you will see the plus sign added.
    Simply highlight the photos you want to print and press B (the same as adding to a quick collection) and your Publish Services folder on your hard drive will be populated with the exports.
    The real problem is that you would need to edit the publish settings every time you required different dimensions etc (not sure possible). I use a similar system, which works well and I like how I can see what has already been published and what is still to be published but my prints are always the same size and resolution.
     

  • Lightroom Publish Services to Creative cloud

    Why can´t I publish pictures from Lightroom to Creative Cloud with LR Publish Services???? The only reason I bought a Creative Cloud membership was because I assumed it would work seamlessly with Lightroom publish Services.....Anyone with a soloution here?

    DavidSalahi wrote:
    Now that Lightroom 4 is officially part of the Creative Cloud I'm wondering the same thing that sergiodenils was wondering—is there any ability now, or planned for the future, for integration with Files in the CC? I don't see any menu options or any info in the docs. This would seem to be a natural feature.
    There is no current integration with the CC Files, and they don't usually announce their roadmap in advance.  I do agree it could be useful though.

  • Flash Builder 4.5 Data Services Wizard, setting up REST service call returns Internal Error Occurred

    Dear all -
    I am writing with the confidence that someone will be able to assist me.
    I am using the Flash Builder Data Services Wizard to access a Server that utilizes REST type calls and returns JSON objects. The server is a JETTY server and it apparantly already works and is returning JSON objects (see below for example). It is both HTTP and HTTPS enabled, and right now it has a cross-domain policy file that is wide open (insecure but its not a production server, it's internal).
    The crossdomain file looks like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE cross-domain-policy SYSTEM "http://www.macromedia.com/xml/dtds/cross-domain-policy.dtd">
    <cross-domain-policy>
       <allow-http-request-headers-from domain="*" headers="*" secure="false"   />
       <allow-access-from domain="*" to-ports="*" secure="false"/>
       <site-control permitted-cross-domain-policies="master-only" />
    </cross-domain-policy>
    The crossdomain file is in the jetty server's root directory and is browseable via HTTP and HTTPS (i.e. browsing to it returns the xml)
    Now before all of you say that using wizards sucks (generally) I thought I would utilize the FB Data Services Wizard as at least it would provide a template for which I could build additional code against, or replace and improve the code it produces.
    With that in mind, I browse to the URL of the Jetty Server with any web browser (for example, Google Chrome, Firefox or IE) with a URL like this (the URL is a little confidential at the moment, but the structure is the same)
    https://localhost:somePort/someKey/someUser/somePassword/someTask
    *somePort is the SSL port like 8443
    *someKey is a key to access the URL's set of services
    returns a JSON object as a string in the web browser and it appears like the following:
    {"result":success,"value":"whatEverTheValueShould"}
    Looks like the JSON string/object is valid.
    I went through the Flash Builder Data Services Wizard to set up HTTP access to this server. The information that I filled in is described below:
    Do you want to use a Base URL as a prefix for all operation URLs?
    YES
    Base URL:
    https://localhost:8443/someKey/
    Name                    : someTask
    Method                    : POST
    Content-Type: application/x-www-form-urlencoded
    URL                              : {someUser}/{somePassword}/someTask
    Service Name: SampleRestapi
    Services Package: services.SampleRestapi
    datatype objects: valueObjects:
    Completing the wizard, I run the Test Operation command. Remember, no authentication is needed to get a JSON string.
    It returns:
    InvocationTargetException: Unable to connect to the URL specified
    I am thinking - okay, but the URL IS browseable (as I originally was able to browse to it, as noted above).
    I continue to test the service by creating a Flex application that accepts a username and password in a form. when the form is submitted, the call to the service is invoked and an event handler returns the result. The code is below (with some minor changes to mask the actual source).
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                                     xmlns:s="library://ns.adobe.com/flex/spark"
                                     xmlns:mx="library://ns.adobe.com/flex/mx"
                                     xmlns:SampleRestapi="services.SampleRestapi.*"
                                     minWidth="955" minHeight="600">
              <fx:Script>
                        <![CDATA[
                                  import mx.controls.Alert;
                                  import mx.rpc.events.ResultEvent;
                                  protected function button_clickHandler(event:MouseEvent):void
                                            isUserValidResult.token = SampleRestAPI.isUserValid(userNameTextInput.text,passwordTextInput.text);
                                  protected function SampleRestAPI_resultHandler(event:ResultEvent):void
                                            // TODO Auto-generated method stub
                                            // print out the results
                                            txtAreaResults.text = event.result.message as String;
                                            // txtAreaResults.appendText( "headers \n" + event.headers.toString() );
                        ]]>
              </fx:Script>
              <fx:Declarations>
                        <SampleRestapi:SampleRestAPI id="SampleRestAPI"
                                                                                                 fault="Alert.show(event.fault.faultString + '\n' + event.fault.faultDetail)"
                                                                                                 result="SampleRestAPI_resultHandler(event)"
                                                                                                 showBusyCursor="true"/>
                        <s:CallResponder id="isUserValidResult"/>
                        <!-- Place non-visual elements (e.g., services, value objects) here -->
              </fx:Declarations>
              <s:Form defaultButton="{button}">
                        <s:FormItem label="UserName">
                                  <s:TextInput id="userNameTextInput" text="q"/>
                        </s:FormItem>
                        <s:FormItem label="Password">
                                  <s:TextInput id="passwordTextInput" text="q"/>
                        </s:FormItem>
                        <s:Button id="button" label="IsUserValid" click="button_clickHandler(event)"/>
                        <s:FormItem  label="results:">
                                  <s:TextArea id="txtAreaResults"/>
                        </s:FormItem>
              </s:Form>
    </s:Application>
    It's a simple application to be sure. When I run it , I get the following returned in the text area field txtAreaResults:
    An Internal Error Occured.
    Which is equivalent to the following JSON string being returned:
    {"success":false,"value":"An Internal Error Occured"}
    It appears that the call is being made, and that a JSON object is being returned... however it does not return the expected results?
    Again the URL constructed is the same:
    https://www.somedomain.com:somePort/someKey/someUser/somePassword/someTask
    So I am wondering what the issue could be:
    1) is it the fact that I am browsing the test application from an insecure (http://) web page containing the Flex application and it is accessing a service through https:// ?
    2) is the JSON string structurally correct? (it appears so).
    3) There is a certificate enabled for HTTPs. it does not match the test site I am using ( the cert is for www.somedomain.com but I am using localhost for testing). Would that be an issue? Google Chrome and IE just asks me to proceed anyway, which I say "yes".
    Any help or assistance on this would be appreciated.
    thanks
    Edward

    Hello everyone -
    Since I last posted an interesting update happened. I tested my  Flex application again, it is calling a Jetty Server that returns a JSON object, in different BROWSERS.  I disabled HTTPS for now, and the crossdomain.xml policy file is wide open for testing (ie. allowing every request to return data). So the app accessing the data using HTTP only. Browsers  -  IE, Opera, Firefox and Chrome. Each browser contained the SAME application, revision of the Flash Player (10.3.183.10 debugger for firefox, chrome, opera, safari PC; 11.0.1.129 consumer version in IE9,) take a look at the screen shot (safari not shown although the result was the same as IE and chrome)
    Note that Opera and Firefox returned successful values (i.e. successful JSON objects) using the same code generated from the Data Services Wizard. Chrome, IE and, Safari failed with an Internal error. So I am left wondering - WHY? Is it something with the Flash Player? the Browsers?  the Flex SDK? Any thoughts are appreciated. Again, the code is found in the original thread above.

  • How can I set up lightroom 5 in my macbook, so that it becomes my default editing program, so that it starts up when I insert my sd card into the mac

    How can I set up lightroom 5, so that it becomes my main / default editing program & that when I insert my sd card into the mac lightroom starts instead of iPhoto .

    Thanks.  Im new to apple, which preference?
    Sent from my iPhone

  • How can I set up Lightroom 5 to be my default editing program instead of iPhoto in my macbook? [was: Lightroom]

    How can I set up lightroom 5,to be my defualt editing program instead if iPhoto in my macbook.

    Try 2 Ways to Change the Default Application to Open Files With in Mac OS X

  • Lightroom publish service Revel making albums

    In Lightroom publish services for Adobe Revel, there are no options for creating indivisual albums in a Library. The only option is to create a new Library. This not helpful.
    Is there a way?

    It does publish jpeg copies. Does not create any derivatives in the catalog.

  • Can't export to for publishing or upload -- error (-50)

    Trying to finish a movie project which is about 60 minutes in length (finished product).
    Using my older 2007 MacBook Pro which has limited memory but have emptied out almost all over non-movie files.
    When I click on "export movie" it seems to start the process, but then I get 4- 5 pop-ups with messages like:
    "clip x cannot be found and the movie cannot play properly."
    Then the whole process shuts down and I get this error:
    "the project could not be prepared for publishing because an error occurred (-50)"
    I am able to preview the entire movie just fine on iMovie.
    This would work for the purpose I intend but unfortunately I don't have a cord converter to project on a standard projector
    (and I'm out of the country with no Mac store in sight).
    Suggestions?

    Hi
    Error -50 paramErr  Error in user parameter list
    Can there be any external hard disks - if so How is/are it/they formatted ? Must be Mac OS Extended (hfs) if used for Video.
    UNIX/DOS/FAT32/Mac OS Exchange - works for most but not for VIDEO.
    What this means in Your situation is above me.
    • free space on internal boot hard disk? How much ?
    Video codec
    • streamingDV, AIC etc. (not .avi, .mp4, .m4v, .wmv etc as they are containers not codecs)
    Pictures
    • in what format ? .jpg, .bmp, .tif, else ?
    Audio
    • from where/what format ? iTunes, .avi, .mp3, .aiff, else ?
    The "com.apple.iMovie.plist" file
    Many users has not observed that there are TWO libraries.
    • Library - at root level
    • Library - in user/account folder - THIS IS THE ONE to look into
    from Luke Burns
    I fixed the problem.. but it was very, very strange. I had a very long section for credits and set the line spacing to 1.0.. for some reason this caused it. I removed it, and it worked fine. I put it back, and I couldn't preview or play the video.
    I don't know why that could cause that big of a problem, but it did..
    Klaus1
    You need more free space on your hard drive.
    jonorparkerjon
    After phone support from apple I ended up creating a new project and adding all 117 clips back in individually till I found out what clips flagged and would not allow me to export. I had 3 I deleted and replaced and everything works now 1hr after tedious work....
    Where do Your material come from
    • Camera
    • External hard disk
    • USB-memory
    And all are connected so that iMovie can find it ?
    Yours Bengt W

  • Can't launch Adobe Reader 11.0.06: 'An internal error occurred'

    Today I purchased a highly recommended e-book ('Rally All Around') which is available by download. Double clicking on its file brought up a message that I needed a newer version of Adobe Reader, and linked me directly to 11.0.06 (Mac) on the Adobe site, which I downloaded and installed. Unfortunately, this application refuses to launch: irrespective of whether I try to launch it directly, from the Applications Folder, or by double clicking the new book, I receive the 'An internal error occurred' error message and the program shuts down. I have followed the advice provided in this forum for a previous version of Reader: I deleted all existing versions of the program, as well as the Adobe Folder in my Library, then attempted to reinstall. I've also used 'Get Info' to ensure I have the required read/write permissions on the application, and the Adobe Library Folder. Unfortunately now I have lost the ability to open any PDF file at all!  I'm very unimpressed (to say the least!) that I have lost hours trying to troubleshoot this problem, as well as my money for the book and functionality on my machine! I am running Mac OS X 10.9.1 on an Intel Core i5. I'd be grateful for help, and advice, if you care to share. I'd like to count to 10 and try and fix this, before succumbing to the temptation to send a howler to the publisher.

    I did eventually solve it, and I think it was using this advice I received on the Adobe Forums:
    The error that you are facing might be due the reason that the user logged in doesn't have permissions to access the following directory: "~/Library/Application Support/Adobe". Can you please try the following steps with the user account in which you are facing the error:
    1. Remove the Adobe Reader from Applications directory by moving it to Trash.
    2. Now delete the following directory: "~/Library/Application Support/Adobe". Please note that this path is for the Library folder present inside the user directory that you are currently logged in.
    3. Restart the machine.
    4. Now re-install Adobe Reader XI.

  • Very urgent Hrrcf_start_int service --internal error

    Hi all,
    I am having a problem in hrrcf_start_int service. If i test the service its showing an internal error occured. Please suggest me to overcome from this.
    Regards
    Vijay

    Hi Vijay,
    I think HRRCF_START is not executable alone, because somehow called internally from other services.
    The default.htm seams to be SAP standard, if there is not other start page defined as "inital BSP" in the BSP application properties.
    So, if you start HRRCF_START_INT, it should normally work.
    When I open HRRCF_START_INT via http://SERVER:PORT/sap/bc/bsp/sap/hrrcf_start_int/, the system requests a user and password.
    Another idea is to check your customizing for SAP eRecruiting.
    Open SPRO and navigate to SAP E-Recruiting.
    Under Technical Settings -> User Interface you can customize your start pages, which is necessary for HRRCF_START_*.
    In the SPRO you may also find some guideline for eRecruitment implementation. Or just have a look [service.sap.com|http://service.sap.com] and search for eRecruitment HRRCF_START or something like this. There may be some hints for all steps you have to do, before SAP eRecruiting runs properly.
    Regards
    Tobias

  • It says,The project could not be prepared for publishing because an error occurred. (Error in user parameter list)" What do i do so i can publish it?

    it says,The project could not be prepared for publishing because an error occurred. (Error in user parameter list)" What do i do so i can publish it?

    I'm having the same problem. 
    When I export (and I want HD quality) I get the error message that
    Unable to prepare project for publishing The project could not be prepared for publishing because an error occurred. (Error in user parameter list)
    How do I free up more space on my startup disk?  My hard drive has 158.61 GB free.  Do I need to free up more space?

  • How can i fix this problem?? "The project could not be prepared for publishing because an error occurred. (Not enough room in heap zone / )"

    The project could not be prepared for publishing because an error occurred. (Not enough room in heap zone / )
    how can i fix this problem?

    how can i fix this problem?
    Go to the right forum.
    This forum is for mobile iMovie.
    you may need the iMovie Mac forum:
    https://discussions.apple.com/community/ilife/imovie

  • I get errors trying to set my IPAD back to the factory setting.  error:  backup session failed.  If I try to sync I get 3 more errors - 1) the IPAD cannot be synced, an internal error occurred. 2) required file not found. 3) folder specified instead of fi

    Any help with errors setting IPAD back to factory setting?  I received this error when trying to back up - backup session failed.  Has any one had the following errors when trying to sync to computer?
    1) the IPAD cannot be synced, an internal error occurred. 2) required file not found. 3) a folder specified instead of file.
    Any help appreciated

    Type "13019" into the search bar at the top of this page by "Support" and read the resulting help articles.

  • I just downloaded the Adobe Acrobat DC update on my Mac (Yosemite). Now, I can't open any of my PDFs. I'm getting the message "Internal Error Occurred." What does that mean, and can someone help me?

    HELP!

    Hi Sukrit,
    Am also facing the same issue.
    I get below error messages when i open a PDF.
    "An internal error occured"
    I have installed new windows 7 and i was not having pdf viewer. I just downloaded the latest adobe acrobat reader DC for the adobe site and installed in my PC. Thing is, am able to open some of the PDF files (word document that is converted into PDF). But scanned images for example photo or mark sheets that are converted into PDF, am getting this error message.
    I tired almost everything.
    1) un-installed and installed again.
    2) installed previous version of adobe
    3) unchecked the "Enable, protection mode during startup"
    4) tried setting zero for "bproectmode" in the regedit (key_host_local_machine->adobe->dc> Dword with value 0)
    5) created new administrator account, and even there, i got the same error message.
    6) tried repair installation said by Sukrit...
    But nothing fixed my issue
    Please someone help me in fixing this issue.

Maybe you are looking for

  • Error when I sign in to the Convert PDF to Word feature

    When I sign in to the Convert PDF to Word feature, after I enter my password I get a message "An error occurred while signing in" and the feature locks up, giving the same message if I use the "convert" button, can anyone help with this.  Adobe Suppo

  • Why are the adjustment layer controls grayed out?

    I have used an adjustment layer in CS5 and when it was first used I could adjust everything.  Now most of the controls have grayed out and whilst I can slide the sliders I can not type figures in nor use the radio buttons!  Why has it locked me out? 

  • Substitution Variable in Cross Referencing dimensions

    Hi All, Can we use substitution variable for cross referencing dimensions. Example: "Region" = &currmth->&curryear->"New York"; Thanks in Advance Bal.

  • Problem in server installation

    I am new to OMA-DM and I am trying to install dm-server on my windows 7 system. I have downloaded Funambol 3.5.2 version of dm-server. JBOSS 5.1.0.GA and postgresql are already installed on my system and J2EE_HOME and JAVA_HOME path variables are cor

  • How was this created

    I have a hard time believing that someone manually adjusted all 1200 gradient mesh nodes to cook this up just to sell it on a stock site...  Is there another way to generate meshes?  I need to do another version of this style...