Created by default error on Opensuse 13.2 and JDK 7U76

Hello

I have install JDeveloper 12.1.3 the generic Setup program and then I try to run my app, but while DefualtDomain creation, I got an error (attached to the message).

I installed the JDK 7U76 on Opensuse 13.2 and set my DEFAULT Java with this command (by this guid: https://en.opensuse.org/SDB:Installing_Java):

# update - alternatives - install 'java' "/ usr/bin/java" "/ usr/java/more late/bin/java".

# update - alternatives - java game/usr/java/latest/bin/java

I do not understand what is the problem?

See if this work around will help you

Creation of the field of IntegratedWebLogicServer is broken on Mac

He talks about Mac, but this has happened on other Linux systems too.

Timo

Tags: Java

Similar Questions

  • Problem creating ANE, ArgumentError: Error #3500: the context of the extension doesn't have a method with the name

    I'm bit confused about ANE generation, I'm already all direction, but the error always #3500 when I try to call the DONKEY.

    I create NSAS using java android.

    The tools I use: Flash Builder running on Win-64 win.7. I think I have to, right to the point, here, what I did first step by step;

    1. I create the JAVA application first, with the senigo.extension.android package then I create 3 files, Sample.java, SampleContext.java, PassTextFunction.java

    2.pngsdf.png

    Code Source Sample.Java

    package senigo.extension.android;
    
    
    import android.util.Log;
    import com.adobe.fre.FREContext;
    import com.adobe.fre.FREExtension;
    
    
    public class Sample implements FREExtension {
      @Override
      public FREContext createContext(String arg0) {
      // TODO Auto-generated method stub
      Log.i("Sample", "createContext");
    
    
      return new SampleContext();
      }
      @Override
      public void dispose() {
      // TODO Auto-generated method stub
      Log.i("Sample", "Dispose");
      }
      @Override
      public void initialize() {
      // TODO Auto-generated method stub
      Log.i("Sample", "Initialize");
      }
    
    
    }
    

    Source code for SampleContext.Java

    package senigo.extension.android;
    
    
    import java.util.HashMap;
    import java.util.Map;
    import android.util.Log;
    import com.adobe.fre.FREContext;
    import com.adobe.fre.FREFunction;
    
    
    public class SampleContext extends FREContext {
      public SampleContext()
      {
      Log.i("SampleContext", "constructor");
    
    
      }
      @Override
      public void dispose() {
      // TODO Auto-generated method stub
      Log.i("SampleContext", "dispose");
      }
      @Override
      public Map<String, FREFunction> getFunctions() {
      // TODO Auto-generated method stub
      Log.i("SampleContext", "getFunctions");
      Map<String, FREFunction> functionMap = new HashMap<String, FREFunction>();
      functionMap.put("passText", new PassTextFunction());
    
      return functionMap;
      }
    
    
    }
    

    Source code for PassTextFunction.Java

    package senigo.extension.android;
    
    
    import com.adobe.fre.FREContext;
    import com.adobe.fre.FREExtension;
    import com.adobe.fre.FREFunction;
    import com.adobe.fre.FREObject;
    
    
    public class PassTextFunction implements FREFunction {
    
    
      @Override
      public FREObject call(FREContext arg0, FREObject[] arg1) {
      // TODO Auto-generated method stub
    
      FREObject result = null;
      try{
      result =  FREObject.newObject("Hello World");
    
      }catch(Exception e)
      {
    
      }
      return result;
      }
    
    
    }
    

    After all the files, I create the jar file using the right click on the tree > > export > > Jar file > > Sample.Jar (I already create jar file that contains just the src folder and after I got frustrated, I create the .jar file contains all the project folder as a whole but still did not work).

    Okay, after that, I create project Flex Library Project, which is to contain the actionscript code to call the native and extension.xml, here the code.

    3.png

    Test Source code. As, FYI: I have already create the public function and the static function the error always the same #3500.

    package senigo.extension.android
    {
      import flash.external.ExtensionContext;
    
      public class test
      {
      private static var extContext:ExtensionContext = null;
    
      public function test()
      {
      trace ("Test Constructor");
    
      if (!extContext)
      {
      initExtension();
      }
      }
      public static function get passText():String
      {
      trace ("Test Pass Text");
      if (!extContext)
      {
      initExtension();
      }
      return extContext.call("passText") as String;
      }
    
    
      private static function initExtension():void
      {
      trace ("Vibration Constructor: Create an extension context");
      extContext = ExtensionContext.createExtensionContext("senigo.extension.android", null);
      }
    
    
      }
    }
    

    extension source code. XML

    FYI: Flex when I put the Native Extension, they said have Windows - x 86 so I already create 3 DONKEY, that contain Android-ARM, ARM Android contain by default, Android contain ARM, Default, and Windows - x 86, but still the same error. I don't have it where is the error.

    <extension xmlns="http://ns.adobe.com/air/extension/3.1">
      <id>senigo.extension.android</id>
      <versionNumber>1.0.0</versionNumber>
      <platforms>
      <platform name="Android-ARM">
      <applicationDeployment>
      <nativeLibrary>Sample.jar</nativeLibrary>
      <initializer>senigo.extension.android.Sample</initializer>
      <finalizer>senigo.extension.android.Sample</finalizer>
      </applicationDeployment>
      </platform>
      <!-- <platform name="Windows-x86">
      <applicationDeployment>
      <nativeLibrary>sample.jar</nativeLibrary>
      <initializer>senigo.extension.android.Sample</initializer>
      <finalizer>senigo.extension.android.Sample</finalizer>
      </applicationDeployment>
      </platform>
      -->
       <platform name="default"> 
    <applicationDeployment/> 
    </platform> 
      </platforms>
    </extension>
    

    After that I created, I copy the sample file of file and extension with the file Sample.jar .swc.

    I have extracted the .swc file, copy the library.swf file Android-ARM, by default, Windows-86 and I create build.bat containing the command like this

    adt -package  -storetype PKCS12 -keystore senigo.p12 -storepass l10nk1ng -target ane senigo.extension.android.ane extension.xml -swc AndroidLib.swc -platform Android-ARM -C ./Android-ARM/ . -platform default -C ./default/ .
    

    the I put the donkey for bending mobile project I created:

    4.png5.png

    6.png

    7.png

    I run, but received the error #3500, I get really confused? What is wrong with my code? is there something that I have wrong or I just missed?

    Please someone help me... and what is already donkey file I can debug in Flex Mobile project? I want to log.i code I wrote, but I confuse air how to the Levant in flash builder.

    in the end, I want to said sorry if my English is not very goods and thank you, because want to see my problem and I appreciate it a lot if you can give me a solution

    So you're saying that test.as I created belongs to android?

    Exactly.

    Okay, so then why when I put just ANE build contain Android-ARM, the error still appear?

    Because that when you launch it engine running Windows AIR request use default implementation in this case. But looks like the default implementation, you use the same Android and default value.

    is that what I have to put Windows-86 to run it on windows?

    If you are creating applications / DONKEY for mobile platforms you don't need it.

    I have to use another actionscript that does not ExtensionContext content?

    Exactly!

    For example, look at this: mesmotronic/air-full screen-ane · GitHub

    record full screen-ane-android - Android app

    full screen-ane-default - default implementation (for all other platforms exclude Android)

    It is an excellent example. It's pretty simple, you understand how it works.

  • Create the default template?

    I created a 'master' application, I want to use as a source for various devices for other applications to subscribe to. of course, one of the features that I want to set in the master is the theme.

    Then, when I go to create a secondary application, in the section components shared, I select all copy from the main application (themes of User Interface, lists of values, Navigation bar entries, authorisation schemes) and authentication schemes. On the next screen, it asks that the default theme; choose my custom theme and then hit leads to a block of fairly large error:
    19 errors have occurred
    
        * The selected theme does not have default breadcrumb template.
        * The selected theme does not have default breadcrumb region template.
        * The selected theme does not have default button template.
        * The selected theme does not have default region template.
        * The selected theme does not have default chart template.
        * The selected theme does not have default form template.
        * The selected theme does not have default report region template.
        * The selected theme does not have default tabular form template.
        * The selected theme does not have default wizard template.
        * The selected theme does not have default list region template.
        * The selected theme does not have default report template.
        * The selected theme does not have default label template.
        * The selected theme does not have default calendar template.
        * The selected theme does not have default list template.
        * The selected theme does not have optional label template.
        * The selected theme does not have required label template.
        * The selected theme does not have error page template.
        * The selected theme does not have printer friendly page template.
        * The selected theme does not have login page template.
    My theme there are models of most of these types (some I've not defined yet, as I wasn't planning on using them). But when I'm defining models, I do not see an option for a brand as default - what Miss me?

    Or should I just stick with the APEX theme default and switch to the shared their after creating application?

    Thank you
    -David

    Hi David,

    On the page of "Thèmes" under the shared components, you'll find a link titled "Edit the Theme" in the right sidebar. Click here, then choose the theme you want to change, this leads to page 267, and on this page, you can set all of the default templates,.

    Kind regards
    Marc

  • How to create a default profile for all users of Firefox 9.

    I run a computer lab and am looking for a way to create a default profile in Firefox 9 that allows new users. I want them to be able to launch Firefox for the first time and see my home page. I want to disable any control for default browsers, firstrun pages or all the other guests.

    The former for group policy .adm files did not work longer.

    See http://www.frontmotion.com/Firefox/howtodeploy.htm

    You can create a defaults\profile file in the Firefox program folder and place the files that it be used to create and initialize a new profile.

  • How to create a default profile for all users of a computer under Windows 7/Vista for Firefox versions greater than 8? I would that all new users on a computer to get the same values by default, homepage, bookmarks, etc...

    I found some help on older versions of Firefox, but I can't seem to find anything for the latest versions greater than 8. There must be a way to do this for imaging large scale.

    Have you created a defaults\profile in the folder of the program Firefox (C:\Program Files\Mozilla Firefox\)?

    All files in this folder will be moved into each newly created profile folder.

    To give the prefs a default, it is best to do this via a mozilla.cfg file.

    Use a mozilla.cfg file in the Firefox program folder to lock the prefs or specify default values.

    Place a local file - settings.js in the defaults\pref folder where you will also find the channel - prefs.js to specify using mozilla.cfg file.

    pref("general.config.filename", "mozilla.cfg");
    pref("general.config.obscure_value", 0); // use this to disable the byte-shift
    

    See:

    You can use these functions in mozilla.cfg:

    defaultPref();  // set new default value
    pref();         // set pref, but allow changes in current session
    lockPref();     // lock pref, disallow changes
    
  • Problem installing Webroot for MSN (part of the Internet software of MSN Premium subscription) "error 5: access is denied" and "Setup could not create the directory"C:; Program Files/Webroot/security /...

    Original title: problem installing Webroot for MSN (part of the Internet software of MSN Premium subscription)

    Try installing Webroot to MSN but when I run the installer, I get "error 5: access is denied" and "Setup could not create the directory"C:; Program Files/Webroot/security/current/plugins/antimalware/Backup ". OS is XP with Service Pack 3. I tried to delete my existing Webroot program and turning to the bottom/off other security options... Any suggestions? Thank you.

    Thanks for the reply. I was able to finally get the new Webroot program to install after running a Microsoft Fix affecting the directory uninstall the old prgm Webroot and meets a new error code (1603), which led me to this site to permissions Grant full control to the SYSTEM account.

    http://support.Microsoft.com/kb/834484

  • How to create your default desktop for all / some users?

    Using Vista business I want to create a desktop computer by default for all users. How can I do this?

    I have a machine that has a dozen accounts. Can I retroactively apply this desktop computer to some existing accounts?

    Thanks for thehlp

    Joe

    Discussions on the topic "Change the profile by default in Vista"
    http://social.technet.Microsoft.com/forums/en-us/itprovistasetup/thread/62ed66ad-71cd-43C3-83c0-5303d77176b8/
    by Heather

    "How to make a standard profile w / user by default.
    http://forums.techarena.in/Vista-Help/1065679.htm
    by Darrell Gorter [MSFT]

    How to create the default profile for Vista
    http://help.Lockergnome.com/Vista/create-Vista-default-profile--ftopict15825.html
    Darell Gorter mentioned here only taken methods supported to change the default user profile:
    "How to customize the local default user profile when you prepare a
    image of Windows Vista, Windows Server 2008, Windows XP, or Windows Server 2003"
    http://support.Microsoft.com/default.aspx?scid=KB; EN-US; 959753
    but when you go on the link says the Tip system is not for Vista, on Windows Vista title is missing.

    I hope I could help

  • Difference between are created by default and 0.0.0.0 network in BGP

    Hello

    Please I need someone to clarify what is the difference between the command "come from default" and "network 0.0.0.0 - ip route 0.0.0.0 0.0.0.0 null0" commands. I see both serve the same purpose by a default route to a counterpart of the advertising, but at the same time, I feel a difference on them.

    THX

    Kind regards

    B....

    Dear friends,

    Lingam summarizes the options to inject the default route in BGP very well. Thank you!

    In addition, let me point out a few differences between these approaches.

    The default information is created, redistribution from a different source and the network 0.0.0.0 are all similar in the resulting effect: they will inject the default route in BGP RIBS and it will be announced to all the BGP neighbors. The difference is originally from the default route that is injected into BGP:

    • default information is created causes the default route generated artificially and injected in the BGP RIB, launch to know if it is present in the routing table.
    • Redistribution and 0.0.0.0 network will inject the default route in BGP only if the default route is currently present in the routing table, and in addition in the case of redistribution, if learned by a specific protocol source we're redistribution of.

    The nearby X.X.X.X are created by default is different in that the default route is announced only this specific BGP neighbor and not to all the existing BGP neighbors as with previous approaches. The default route will not present in the BGP RIBS of the router that is configured with the command nearby X.X.X.X are created by default and so it will not usually be announced to all the BGP neighbors. At the same time, this command is similar to the default information are created in that the default route is generated artificially and didn't need to be present in the routing table.

    Lingam, let me correct a small inaccuracy: you wrote:

    The "network 0.0.0.0" command enables the router to advertise the default route because the router thinks that 0.0.0.0 is directly connected via Null0.

    In regards to the PMO, the network command does not seek for networks connected directly (as opposed to IGP protocols) but for the networks present in the routing table. They do not need to be directly connected. Properly, the statement should say:

    The command 'network 0.0.0.0' active router advertise the default route because the router has the 0.0.0.0/0 road shows in its routing table.

    Best regards

    Peter

  • How to create the default user interface is newly added to the columns in the table

    I added the new columns to the database table existed who got the default values for the user interface to the columns existed.

    How to create the default UI for the new columns.

    I couldn't see the newly added columns change the default UI (object browser-> database-> default UI - Edit-> Table).

    Using APEX 5.0.3

    Can you please help.

    Thank you.

    Find the option "Synchronize with database" under tasks on the interface's default user - Edit

  • EPMHFM-66161: Application created, but an error occurred enabling features

    After completing all the pages of the wizard for creating application Hyperion Financial Management 11.1.2.4.100 (from the Administration of Consolidation in the EPM workspace), the demand creation process ends with the message

    "EPMHFM-66161: Application created, but an error occurred enabling features.

    The application is in fact created, but it seems to be unusable.  We meet some this same problem on an installation of Windows Server 2008 R2 and Oracle Linux installation (not officially supported by Oracle).  In addition, we work with a partner who reports the same issue on another client site.

    Has anyone out there experienced this same problem and come to the top with a solution or workaround?  Oracle recognized as a bug not published, but he did not provide no work around.

    Thank you.

    We have solved this problem.  It turns out that the installation and configuration process failed set TNS_ADMIN, which is referenced by HFM system environment variable.  Once the variable has been set and HFM has restarted the problem has been resolved.

  • Java, created with compilation errors

    Hi all

    I created below compiles and source of java, I get "Java created with compilation errors.

    I gave JAVAUSERPRIV to my user.

    Pls help to solve this problem. Thank you

    CREATE OR REPLACE AND COMPILE JAVA NAMED 'DirList' AS SOURCES

    import java. IO;

    import JAVA. SQL.*;

    public class DirList

    {

    public static getList (String directory) Sub throws SQLException

    {

    Path = new file (directory);

    String [] List = path. List();

    Element string;

    for (int i = 0; i < List.Length; i ++)

    {

    item = list [i];

    #sql {INSERT INTO dir_list (FILENAME) VALUES (: element)};

    }

    }

    }

    /

    ATTENTION: Java created with compilation errors.

    SQL > show errors
    Errors of JAVA SOURCE 'DirList ':

    LINE/COL ERROR
    -------- -----------------------------------------------------------------
    0/0 DirList:5: cannot find symbol
    4 0/0 errors
    0/0 location: DirList, class
    0/0 public static void GetList (String directory) throws SQLException
    0/0      ^
    0/0 DirList:7: cannot find symbol
    0/0 symbol: class file
    0/0 location: DirList, class
    The 0/0 file = new file (directory);
    0/0      ^
    0/0 DirList:7: cannot find symbol

    LINE/COL ERROR
    -------- -----------------------------------------------------------------
    0/0 symbol: class file
    0/0 location: DirList, class
    The 0/0 file = new file (directory);
    0/0      ^
    0/0 DirList:10: cannot find symbol
    0/0 symbol: variable length
    [0/0 location: class java.lang.String]
    0/0 for (int i = 0; i < List.Length; i ++)
    0/0      ^
    0/0 symbol: SQLException, class
    SQL > alter the compilation of java class 'DirList ';

    ATTENTION: Java modified with compilation errors.

    SQL > alter the compilation of java class 'DirList ';

    ATTENTION: Java modified with compilation errors.

    SQL > show errors
    Errors of JAVA 'DirList ': CLASS

    LINE/COL ERROR
    -------- -----------------------------------------------------------------
    0/0 ORA-29535: source requires recompilation
    SQL > alter the compilation of java class 'DirList ';

    ATTENTION: Java modified with compilation errors.

    SQL > show errors
    Errors of JAVA 'DirList ': CLASS

    LINE/COL ERROR
    -------- -----------------------------------------------------------------
    0/0 ORA-29535: source requires recompilation

    You really seem to have a problem with spelling and case sensitivity.

    Look at the definition of the function:

    create or replace procedure get_dir_list (p_dir in varchar2) as language java name 'DirList.getList (java.long.string);

    It should be:

    java.lang.String

  • CAUTION: Procedure created with compilation errors.

    HI, I created a table:

    CREATE TABLE:

    create table customer (name varchar2 (10), varchar (40) of the address, Contact number);

    CREATE THE PROCEDURE TO INSERT:

    CREATE OR REPLACE PROCEDURE SP_CUSTOMER)

    p_name customer. Name% TYPE,

    customer p_address. Address TYPE %,

    customer p_contact. Contact TYPE %)

    IS

    BEGIN

    INSERT INTO customer ('name', 'Address', 'Contact')

    VALUES (p_name, p_address, p_contact);

    COMMIT;

    END;

    /

    ERROR:

    IT SHOWS: WARNING: procedure created with compilation errors.

    CREATE THE PROCEDURE TO SELECT:


    CREATE OR REPLACE PROCEDURE SP_SELECT_CUSTOMER)

    p_name customer. Name% TYPE,

    customer p_address. Address TYPE %,

    customer p_contact. Contact TYPE %)

    IS

    BEGIN

    SELECT name, address, Contact WITH THE customer;

    END;

    /

    ERROR:

    IT SHOWS: WARNING: procedure created with compilation errors.

    What is the problem. ? How to solve it. ?

    CREATE OR REPLACE PROCEDURE SP_CUSTOMER (
    p_name customer.Name%TYPE,
    p_address customer.Address%TYPE,
    p_contact customer.Contact%TYPE)
    IS
    BEGIN
    INSERT INTO customer (Name, Address, Contact)
    VALUES (p_name, p_address, p_contact);
    COMMIT;
    END;
    /

    CREATE OR REPLACE PROCEDURE SP_SELECT_CUSTOMER (
    p_cust_details OUT SYS_REFCURSOR)
    IS
    BEGIN
    OPEN p_cust_details for SELECT Name, Address, Contact FROM customer;
    END;
    /

  • Default error message Action

    I deleted a default action in the Actions Panel, and I always get this error message when I open the files. How make sure that this action is totally deleted, so I do not get this message?

    default-action.PNG

    Go to the file-> Scripts-> event handler in Script... and make sure you don't have a script set to run when you open documents (and looks like you do, perhaps by accident).

    The box in the upper left corner of the dialog manager will allow you to disable all event scripts, if you wish.

    If the script event is not the cause, and you use plugins panels or extension of third party - one of them could also be action.

    [replaced by admin mistaken suggestion]

  • How to create a default domain and deploy the app in jdeveloper using a script or code (not manually)

    Hello

    I installed Jdev using silent installation.

    Now I have some apps already created I want to create a default domain, and then to deploy apps in it through any script or ants?

    Can someone help me on this?

    Thank you and best regards,

    Vivek Pemawat

    Hi This worked for me I checked the log of the jdev, how he creates the domain and then using that I created the field

    I used the python script for deploying applications:

    Connect ('weblogic', 'welcome1 ','slc01fnw:7103 ')

    deploy (appName = ' Application13 ', path='/home/rasubra/jdeveloper/mywork/Application13/deploy/Application13_Project1_Application13.ear' target = 'DefaultServer')

    Exit()

    called using wlst.sh TestAppsDeploy.py

    Thanks for all the help!

  • ORA 12 c install error on openSuse: reference to the "__tls_get_addr@@GLIBC_2.3" undefined symbol

    Hello world

    I know that Oracle does not support the OpenSuSE, but all previous versions of the database has worked.

    With Oracle 12 c, the installation fails. I get the error below.

    No doubt someone has a useful idea?

    Yours, user8632123.

    NEWS: make f /home/oracle/base/rdbms/12.101/precomp/lib/ins_precomp.mk to reissue EXENAME = proc

    INFO: make [1]: Entering directory ' / home/oracle/base/rdbms/12.101/precomp/lib'

    INFO: Link /home/oracle/base/rdbms/12.101/precomp/lib/proc

    INFO: usr/lib64/gcc/x86_64-suse-linux/4.7/... /... /.. /.. (/ x86_64-SUSE-Linux/bin/LD: home/oracle/base/rdbms/12.101/lib//libnls12.a(lxhlang.o): reference to the "__tls_get_addr@@GLIBC_2.3" undefined symbol
    usr/lib64/GCC/x86_64-SUSE-Linux/4.7/... /... /.. /.. / x86_64-SUSE-Linux/bin/LD: Note: '__tls_get_addr@@GLIBC_2.3' is defined in OSR /lib64/ld-linux-x86-64.so.2 try so add to the linker command line
    /lib64/ld-linux-x86-64.so.2: could not read symbols: invalid operation

    INFO: collect2: error: ld returned 1 exit status

    INFO: / bin/chmod: can't access to ' / home/oracle/base/rdbms/12.101/precomp/lib/proc'
    INFO: no such file or directory

    INFO: make [1]: leaving directory ' / home/oracle/base/rdbms/12.101/precomp/lib'

    INFO: make [1]: * [/ home/oracle/base/rdbms/12.101/precomp/lib/proc] error 1

    NEWS: make: * [proc] error 2

    I use opensuse 12.3 and I have this error too.

    My solution is

    (1) backup (ORACLE_HOME) / lib/stubs, and then delete.

    (2) change RMAN_LINKLINE in the {ORACLE_HOME}/rdbms/lib/env_rdbms.mk file

    TO

    RMAN_LINKLINE = $(LINK) $(OPT) $(S0MAIN) $(SSKRMED) $(SKRMPT).

    $(LLIBDBTOOLS) $(LLIBCLIENT) $(LLIBSQL) $(LLIBPLSQL).

    $(LLIBSNLSRTL) $(LLIBUNLSRTL) $(LLIBNLSRTL).

    $(LLIBSLAX) $(LLIBPLSQL) $(LIBPLCN) $(LINKTTLIBS) - lons

    (3) all reissue them.

Maybe you are looking for

  • Qosmio X 500-10T failed to retrieve HARD disk 64-bit with more than 4 GB

    Hi all, this problem is driving me crazy, please help someone. I tried to use HARD drive recovery using the F8 option, but the recovery kept in check and wouldn't start. On the audit of the bulitins for my laptop (Qosmio X 500 10 t), I found that the

  • zv6130 upgraded to windows 7 64 bit... no sound

    HP Pavilion zv6130 upgraded from vista to 7 64-bit.  No noise and apparently the drivers are hard to find. Any help would be appreciated.

  • How to connect laptop to HDTV

    HDMI output How do the parameters to display in Vista Home Premium 64 - bit. I want to connect my laptop to my HD TV to display my office, ect on it.

  • Cannot re - install the Intel HD Graphics driver

    We have a G72-B66US and started having a BSOD of igdkmd64.sys yesterday morning when running the Sims 3.  As part of troubleshooting, I wanted to reinstall the graphics driver since nothing else has changed since the previous day when it was working

  • Lightroom import my photos.

    After years and 100000 of of the images imported into Lightroom, he ceased to import my photos (for my macbook pro) yesterday. I insert my lexar SD card, lightroom responds by locating the map (Nikon D600) as usual, but no thumb does not appear, and