Lightroom 6 stop running

When I double click Lightroom 6. It is prompt that Light room 6 stop running.
Here is details of the prompt.
问题签名:
  问题事件名称: APPCRASH
  应用程序名: lightroom.exe
  应用程序版本: 6.0.0.10
  应用程序时间戳: 5523190c
  故障模块名称: libcef.dll
  故障模块版本: 3.1750.1805.0
  故障模块时间戳: 53eb9d68
  异常代码: c000001d
  异常偏移: 00000000020f5fa3
  OS 版本: 6.1.7600.2.0.0.256.1
  区域设置 ID: 2052
  其他信息 1: 1849
  其他信息 2: 1849c65267ce2967d89f315e1c3c4b82
  其他信息 3: 95b7
  其他信息 4: 95b7e9ed49fb3657956fc9b27015606a
It seems libcef.dll has something wrong. I do not know how to solve it. Please give me a hint to solve the problem.

Hi Naushad,
you probably have missed a setting to migrate the tomcat to port 8180. The behaviour you describe fits to the one I'd expect for a port conflict - either service runs perfectly when he's "alone", but doesn't work if the other one started before.
You can fix this on both sides. Reconfiguration of the port your EPG hosts your APEX may be a little easier. You just have to login as sys and execute the following block:
begin
  dbms_xdb.sethttpport(8081);
end;
commit;Change the port to whatever value you want.
To change your Tomcat port configuration, you probably edited the following piece in your server.xml
<Connector port="8080" protocol="HTTP/1.1"
...You'll find other ports used by the Tomcat in that file as well. Make sure you don't have a conflict with some other service.
I'm running a Tomcat next to XE on Ubuntu 8.04. Since I had to reconfigure the Tomcats default SSL Port (8443 was already used by another web server on that machine), I moved all Tomcat ports from 80XX to 100XX, keeping the EPG on port 8080, and it works fine for me.
-Udo

Similar Messages

  • Lightroom has stopped running windows is searching for a solution to the problem"

    Lightroom stopped running on Vista 32 windows error message says "Lightroom has stopped running windows is searching for a solution to the problem"...Also some RAW images opened in CS2, Bridge or Lightroom have bands of different colors depending on the image and are unusable. At the same time Lightroom works fine on my laptop running Vista 32.

    Are you looking at the images at 100% resolution? Banding can appear in other enlargements due to rounding errors.

  • I have a private Adobe ID and I have a Lightroom Testversion running there! Now my university gave me access to Creative Cloud for Teams and I want to use my Lightroom catalogues with this ID! How can I do this?

    I have a private Adobe ID and I have a Lightroom Testversion running there! Now my university gave me access to Creative Cloud for Teams and I want to use my Lightroom catalogues with this ID! How can I do this?

    Hi,
    thank you, it’s done! The Chat helped me! Now I cannot go into this forum anymore with my old password, but that’s not a big problem.
    Best wishes,
    Christian
    Von: JimHess <[email protected]<mailto:[email protected]>>
    Antworten an: "[email protected]<mailto:[email protected]>" <[email protected]<mailto:[email protected]>>
    Datum: Montag, 20. April 2015 18:38
    An: Christian Kogler <[email protected]<mailto:[email protected]>>
    Betreff:  I have a private Adobe ID and I have a Lightroom Testversion running there! Now my university gave me access to Creative Cloud for Teams and I want to use my Lightroom catalogues with this ID! How can I do this?
    I have a private Adobe ID and I have a Lightroom Testversion running there! Now my university gave me access to Creative Cloud for Teams and I want to use my Lightroom catalogues with this ID! How can I do this?
    created by JimHess<https://forums.adobe.com/people/JimHess> in Photoshop Lightroom - View the full discussion<https://forums.adobe.com/message/7454915#7454915>

  • How do I get an actor to wait for its nested actors to stop running before stopping itself?

    I'm developing a series of projects that are based on the Actor Framework and my actor dependency hierarchy is starting to get some depth. One of the issues I'm facing now is making sure that each actor will only stop running (and signal this via a Last Ack to a higher-level actor or via a notification to non-AF code that launches it) once all of its nested actors have stopped running.
    For instance, say I have a type of actor that handles communication with a microcontroller over USB - a USB Controller Actor. I might want to have an application-specific actor that launches USB Controller Actor to issue commands to the microcontroller. When shutting down, I want this top-level actor to send a Stop Msg to USB Controller Actor and then wait to receive a Last Ack back before sending a notification within a provided notifier to the non-AF application code, which can then finish shutting down completely.
    I'm sure that having actors wait for all nested actors to shutdown before shutting down themselves is an extremely common requirement and I'm confident National Instruments have made it possible to handle that in a simple, elegant manner. I'm just struggling to figure out what that is.
    The approaches I've experimented with are:
    Creating a pseudo "Stop" message for an actor that won't actually stop it running straight away, but instruct it to stop all nested actors, wait for their Last Acks and then shut itself down by sending Stop Msg to itself. This isn't elegant because it means the client will be forced to fire off these pseudo stop messages instead of Stop Msg to certain actors.
    Instantiating an internally-used notifier and overriding Stop Core.vi and Handle Last Ack Core.vi. The idea is that within Stop Core.vi, I send Stop Msg to each of the nested actors and then make it wait indefinitely on the internal notifier. Within Handle Last Ack Core.vi, I make it send a notification using this notifier which allows Stop Core.vi to continue and perform deinitialisation for the top-level actor itself. Figures 1 & 2 below show this approach. I wasn't confident that this would work since it assumed that it was possible for Stop Core.vi to execute and then Handle Last Ack Core.vi to concurrently execute some time after. These assumptions didn't hold and it didn't work. It would have been messy even if it had.
    Overriding Stop Core.vi, making it send Stop Msg to each nested actor and then waiting for an arbitrarily long period of time (100ms, 200ms, etc.). What if a nested actor takes only 10ms to shut down? What if takes 400ms?
    The figures below show how I implemented the second approach. Ignore the broken object wires - they only appear that way in the snippets.
    Figure 1 - Stop Core.vi from the second approach
    Figure 2 - Handle Last Ack Core.vi from the second approach

    tst wrote:
    It wasn't that hard to find - https://decibel.ni.com/content/thread/27138?tstart=0
    But with dozens of posts, I have no intention of rereading it now.
    Also, when crossposting, it's considered polite to add a link, so that people can see if the other thread has relevant replies.
    Thanks. I've only read the first page for now but I find this interesting (I'm not sure how to format non-reply quotes, sorry):
     "AristosQueue wrote:
    CaseyLamers1 wrote:
    I think that this would be a nice addition. I think how a program stops is just as important as how it starts.
    I think everyone who has worked on AF design agrees with this. Indeed, managing "Stop" was *the* thing that lead to the creation of the Actor Framework in the first place. The other issues (deadlock/hang avoidance and resource management) were secondary to just trying to get a clean shutdown.
    CaseyLamers1 wrote:
    I find the current code a bit lacking.
    My concern would be that the mixing of a verified stop and a regular stop could create confusion and lead to people having trouble during editting and testing with the project ending up locked (due to VIs left running which did not shutting down).
    Your concern is to some degree why no verified Stop exists in the AF already. We looked at each actor as an independent entity, and left it open to the programmer to add an additional managment layer for those applications that needed it. But over time, I have seen that particular management layer come up more often, which is why I am exploring the option."
    So that gives one of the reasons why this hasn't already been implemented but also points out that it's something quite a lot of people want.
    > Also, when crossposting, it's considered polite to add a link, so that people can see if the other thread has relevant replies.
    Noted. Here's the discussion: https://decibel.ni.com/content/message/104983#104983
    Edit: since there doesn't seem to be any NI-provided way of doing this yet, I suppose I'll try rolling my own at some point. The ideas posted in the discussion you linked seem pretty useful.

  • My Lightroom stopped working at all. I unistalled the app and installled back a few times and it still won't open.

    My Lightroom stopped working at all. I unistalled the app and installled back a few times and it still won't open.

    Are there any error messages? Mac or PC?

  • Lightroom 4 runs too slowly

    I have spent weeks trawling forums now and implementing as much as I can from people's suggestions as to how to try and get Lightroom to run better.
    As an example, alway leave the Details section til last, as it makes a significant impact on slowing Lightroom down.
    I flush the cache before starting any work, I bought a  new 1tb drive, and downloaded a brand new, up to date nVidia driver for my card.
    I've spent some considerable time ensuring that all meta data has been written to xmp and none is outstanding, and all 1:1 previews have been rendered for every image in the catalog. Standard previews are set at their lowest level, and I have set all LR locations including the cache, catalog and preview locations as 'excluded" from MSE, which is the only anti-virus type program I run.
    I have tried using process 2010, then changing to process 2012 when the work is complete and implementing the changes, the same problems occur. Using process 2010 in LR 4.3 does not seem to be any qucker than using process 2012.
    I've been through all Windows services to see which ones I can turn off and which I can't. All those not necessary for the operation of the computer are turned off.
    The cache has been set at everything from 10gig to 150 gig, that doesn't seem to have any effect but it is at present on 100 gig. I flush it regularly when working. I also have tried deleting history from each file I work on, although this doesn't seem to have any positive impact either.
    Now, the issues.
    When using Lightroom, there is a 'hang' or 'lag' of a fraction of a second before any command is carried out. So, if I zoom into full size, grab the small selection box from the view on the left to move it around my image, it is a half a second before it responds.  Often on any task, the cursor doesn't change, as if there is still something going on.
    If I click using the healing brush to get rid of dust bunnies, it is 1-3 seconds before it appears and is editable, then I can move onto another. When using the spot healing tool, after 2 -3 photos have been completed, each time I click on the image the 'target' for the tool appears, but it is in the top corner of a very large black square, which does not disappear for 3-5 seconds.
    I can do an image with maybe 20 of those then it begins to get real slow. If I then use the sliders, it can be up to 4-6 seconds before they respond. During this period, at random times on the top bar of Lightroom I see the message "Lightroom not responding" flash on and off, sometimes for minutes before it clears. If I then go to export the file as a jpg, it can take as much as 3 minutes to export one full size image from a RAW file. During that whole period the processor is toiling away at 100% and LR is using the max amount of memory, which for some reason is only just over 700mb. (I will paste the system info from LR at the end of this.) Once this begins, LR pretty much thrashes away at 100% of processor power for many minutes even when doing nothing, and trying the slghtest thing starts it off again.
    Once I've exported 3-4 images, everything slows down to the point it's really unusable. If I try to export an image at that point, I get a 'not enough memory' message. I can try 5-6 times to export and I always get the same message. My only option then is to shut LR down, and start it up again after a minute or so, flush the cache and start again. Obviously this is an unacceptable workflow.
    So,  I know that LR works fine for some people, so please don't say "It works for me", I know it does. It doesn't work for me though, and I am trying to establish why. If your car breaks down I don't point and say "It must be you cos I have the same car and mine is fine." What I would like is for anyone who has useful suggestions to help. Perhaps someone who it didn't work for and they solved the problem?
    Lightroom version: 4.3 [865747]
    Operating system: Windows 7 Home Premium Edition
    Version: 6.1 [7600]
    Application architecture: x86
    System architecture: x86
    Logical processor count: 2
    Processor speed: 1.9 GHz
    Built-in memory: 3068.9 MB
    Real memory available to Lightroom: 716.8 MB
    Real memory used by Lightroom: 504.9 MB (70.4%)
    Virtual memory used by Lightroom: 506.6 MB
    Memory cache size: 3.8 MB
    Maximum thread count used by Camera Raw: 2
    System DPI setting: 96 DPI
    Desktop composition enabled: Yes
    Displays: 1) 1920x1080
    Application folder: C:\Program Files\Adobe\Adobe Photoshop Lightroom 4.3
    Library Path: J:\Lightroom 4\Master\Master.lrcat
    Settings Folder: C:\Users\G\AppData\Roaming\Adobe\Lightroom
    Adapter #1: Vendor : 10de
    Device : 649
    Subsystem : 1451025
    Revision : a1
    Video Memory : 1007
    AudioDeviceIOBlockSize: 1024
    AudioDeviceName: Speakers (Realtek High Definition Audio)
    AudioDeviceNumberOfChannels: 2
    AudioDeviceSampleRate: 44100
    Build: Uninitialized
    Direct2DEnabled: false
    GL_ALPHA_BITS: 0
    GL_BLUE_BITS: 8
    GL_GREEN_BITS: 8
    GL_MAX_3D_TEXTURE_SIZE: 2048
    GL_MAX_TEXTURE_SIZE: 8192
    GL_MAX_TEXTURE_UNITS: 4
    GL_MAX_VIEWPORT_DIMS: 8192,8192
    GL_RED_BITS: 8
    GL_RENDERER: GeForce 9600M GT/PCIe/SSE2
    GL_SHADING_LANGUAGE_VERSION: 3.30 NVIDIA via Cg compiler
    GL_VENDOR: NVIDIA Corporation
    GL_VERSION: 3.3.0
    OGLEnabled: true
    OGLPresent: true
    GL_EXTENSIONS: GL_ARB_arrays_of_arrays GL_ARB_base_instance GL_ARB_blend_func_extended GL_ARB_clear_buffer_object GL_ARB_color_buffer_float GL_ARB_compatibility GL_ARB_compressed_texture_pixel_storage GL_ARB_conservative_depth GL_ARB_copy_buffer GL_ARB_copy_image GL_ARB_debug_output GL_ARB_depth_buffer_float GL_ARB_depth_clamp GL_ARB_depth_texture GL_ARB_draw_buffers GL_ARB_draw_elements_base_vertex GL_ARB_draw_instanced GL_ARB_ES2_compatibility GL_ARB_ES3_compatibility GL_ARB_explicit_attrib_location GL_ARB_explicit_uniform_location GL_ARB_fragment_coord_conventions GL_ARB_fragment_layer_viewport GL_ARB_fragment_program GL_ARB_fragment_program_shadow GL_ARB_fragment_shader GL_ARB_framebuffer_no_attachments GL_ARB_framebuffer_object GL_ARB_framebuffer_sRGB GL_ARB_geometry_shader4 GL_ARB_get_program_binary GL_ARB_half_float_pixel GL_ARB_half_float_vertex GL_ARB_imaging GL_ARB_instanced_arrays GL_ARB_internalformat_query GL_ARB_internalformat_query2 GL_ARB_invalidate_subdata GL_ARB_map_buffer_alignment GL_ARB_map_buffer_range GL_ARB_multisample GL_ARB_multitexture GL_ARB_occlusion_query GL_ARB_occlusion_query2 GL_ARB_pixel_buffer_object GL_ARB_point_parameters GL_ARB_point_sprite GL_ARB_program_interface_query GL_ARB_provoking_vertex GL_ARB_robust_buffer_access_behavior GL_ARB_robustness GL_ARB_sampler_objects GL_ARB_seamless_cube_map GL_ARB_separate_shader_objects GL_ARB_shader_bit_encoding GL_ARB_shader_objects GL_ARB_shader_texture_lod GL_ARB_shading_language_100 GL_ARB_shading_language_420pack GL_ARB_shading_language_include GL_ARB_shading_language_packing GL_ARB_shadow GL_ARB_stencil_texturing GL_ARB_sync GL_ARB_texture_border_clamp GL_ARB_texture_buffer_object GL_ARB_texture_buffer_range GL_ARB_texture_compression GL_ARB_texture_compression_rgtc GL_ARB_texture_cube_map GL_ARB_texture_env_add GL_ARB_texture_env_combine GL_ARB_texture_env_crossbar GL_ARB_texture_env_dot3 GL_ARB_texture_float GL_ARB_texture_mirrored_repeat GL_ARB_texture_multisample GL_ARB_texture_non_power_of_two GL_ARB_texture_query_levels GL_ARB_texture_rectangle GL_ARB_texture_rg GL_ARB_texture_rgb10_a2ui GL_ARB_texture_storage GL_ARB_texture_storage_multisample GL_ARB_texture_swizzle GL_ARB_texture_view GL_ARB_timer_query GL_ARB_transpose_matrix GL_ARB_uniform_buffer_object GL_ARB_vertex_array_bgra GL_ARB_vertex_array_object GL_ARB_vertex_attrib_binding GL_ARB_vertex_buffer_object GL_ARB_vertex_program GL_ARB_vertex_shader GL_ARB_vertex_type_2_10_10_10_rev GL_ARB_viewport_array GL_ARB_window_pos GL_ATI_draw_buffers GL_ATI_texture_float GL_ATI_texture_mirror_once GL_S3_s3tc GL_EXT_texture_env_add GL_EXT_abgr GL_EXT_bgra GL_EXT_bindable_uniform GL_EXT_blend_color GL_EXT_blend_equation_separate GL_EXT_blend_func_separate GL_EXT_blend_minmax GL_EXT_blend_subtract GL_EXT_compiled_vertex_array GL_EXT_Cg_shader GL_EXT_depth_bounds_test GL_EXT_direct_state_access GL_EXT_draw_buffers2 GL_EXT_draw_instanced GL_EXT_draw_range_elements GL_EXT_fog_coord GL_EXT_framebuffer_blit GL_EXT_framebuffer_multisample GL_EXTX_framebuffer_mixed_formats GL_EXT_framebuffer_multisample_blit_scaled GL_EXT_framebuffer_object GL_EXT_framebuffer_sRGB GL_EXT_geometry_shader4 GL_EXT_gpu_program_parameters GL_EXT_gpu_shader4 GL_EXT_multi_draw_arrays GL_EXT_packed_depth_stencil GL_EXT_packed_float GL_EXT_packed_pixels GL_EXT_pixel_buffer_object GL_EXT_point_parameters GL_EXT_provoking_vertex GL_EXT_rescale_normal GL_EXT_secondary_color GL_EXT_separate_shader_objects GL_EXT_separate_specular_color GL_EXT_shadow_funcs GL_EXT_stencil_two_side GL_EXT_stencil_wrap GL_EXT_texture3D GL_EXT_texture_array GL_EXT_texture_buffer_object GL_EXT_texture_compression_dxt1 GL_EXT_texture_compression_latc GL_EXT_texture_compression_rgtc GL_EXT_texture_compression_s3tc GL_EXT_texture_cube_map GL_EXT_texture_edge_clamp GL_EXT_texture_env_combine GL_EXT_texture_env_dot3 GL_EXT_texture_filter_anisotropic GL_EXT_texture_integer GL_EXT_texture_lod GL_EXT_texture_lod_bias GL_EXT_texture_mirror_clamp GL_EXT_texture_object GL_EXT_texture_shared_exponent GL_EXT_texture_sRGB GL_EXT_texture_sRGB_decode GL_EXT_texture_storage GL_EXT_texture_swizzle GL_EXT_timer_query GL_EXT_vertex_array GL_EXT_vertex_array_bgra GL_EXT_import_sync_object GL_IBM_rasterpos_clip GL_IBM_texture_mirrored_repeat GL_KHR_debug GL_KTX_buffer_region GL_NV_blend_square GL_NV_conditional_render GL_NV_copy_depth_to_color GL_NV_copy_image GL_NV_depth_buffer_float GL_NV_depth_clamp GL_NV_ES1_1_compatibility GL_NV_explicit_multisample GL_NV_fence GL_NV_float_buffer GL_NV_fog_distance GL_NV_fragment_program GL_NV_fragment_program_option GL_NV_fragment_program2 GL_NV_framebuffer_multisample_coverage GL_NV_geometry_shader4 GL_NV_gpu_program4 GL_NV_half_float GL_NV_light_max_exponent GL_NV_multisample_coverage GL_NV_multisample_filter_hint GL_NV_occlusion_query GL_NV_packed_depth_stencil GL_NV_parameter_buffer_object GL_NV_parameter_buffer_object2 GL_NV_path_rendering GL_NV_pixel_data_range GL_NV_point_sprite GL_NV_primitive_restart GL_NV_register_combiners GL_NV_register_combiners2 GL_NV_shader_buffer_load GL_NV_texgen_reflection GL_NV_texture_barrier GL_NV_texture_compression_vtc GL_NV_texture_env_combine4 GL_NV_texture_expand_normal GL_NV_texture_multisample GL_NV_texture_rectangle GL_NV_texture_shader GL_NV_texture_shader2 GL_NV_texture_shader3 GL_NV_transform_feedback GL_NV_vertex_array_range GL_NV_vertex_array_range2 GL_NV_vertex_buffer_unified_memory GL_NV_vertex_program GL_NV_vertex_program1_1 GL_NV_vertex_program2 GL_NV_vertex_program2_option GL_NV_vertex_program3 GL_NVX_conditional_render GL_NVX_gpu_memory_info GL_SGIS_generate_mipmap GL_SGIS_texture_lod GL_SGIX_depth_texture GL_SGIX_shadow GL_SUN_slice_accum GL_WIN_swap_hint WGL_EXT_swap_control

    I think the "Available Memory" figure is pretty standard for a 32bit system, which is what I think the OP is running.
    @howmanyetc: A couple of observations: the systems specs would seem to be not much higher than the minimum requirements for LR4, so blazing fast it ain't ever going to be. Also is the J drive the new external drive that you bought? If so I'm guessing that it may be USB2 connected? If so having the catalog on a "relatively slow" external drive is probably not the best idea from a performance perspective. The "red lining" of the CPU during exports is entirely likely, the processor is simply not sufficiently powerful to do the work quickly. As a comparison, exports which take maybe 3-4 seconds on my desktop would take upwards of 30 seconds on my old Thinkpad laptop (similar specs to yours) with both cores at 100% with no deviation (and that was back in LR3, so I can't imagine how slow it would be using LR4). The "getting real slow" after a while is more than likely due to your RAM limitations, especially on a 32 bit system.
    I'm not saying that you should rush out and buy a brand new powerful system, though I do think you might struggle to make significant improvements given your specs. It sounds as though you are doing everything you can to improve things, however as I said, if the catalog is on a USB2 external drive, trying it back on an internal drive would be the first place that I would start. Having the images on the external is probably OK, your bottleneck for things such as Exports is CPU, not I/O.
    Do you need to be writing XMP for all your files? Do you have the "Auto write XMP" setting enabled? If so, turning that off and using Ctrl+S to manually write the XMP at the end of a session may help a little.
    Sorry I can't be of more help.

  • I have the lastest (10.7) I tunes software running on a 64 bit windows 7 system. Today it stopped running all of the tv shows I have downloaded. The error message says that a "problem has stopped i tunes from working and windows is shutting it down" ?

    i have the latest (10.7) itunes installed on a 64 bit Windows 7 based system. Up unitil today I had NO  problem running the TV shows that I have downloaded from I Tunes.
    Today it stopped running all videos. It loads the information in the top box about length & name. An error message pops saying "an error has caused I tunes to stop working". "Windows will check for a solution and notify if therer is a solution."
    Music plays fine so i know that something works on itunes.
    Any ideas?

    Try the following user tip:
    iTunes for Windows 10.7.0.21: "iTunes has stopped working" error messages when playing videos, video podcasts, movies and TV shows

  • TS5376 I have a laptop that i am running with Windows Vista. A while ago, it stopped running iTunes and comes up with the error : Runtime Error: R6034 - An application has made an attempt to load the C runtime library incorrectly.

    I have an iMac as my home computer, upgraded to this about a year ago from a windows pc and love it.
    However...
    I have a HP Compaq laptop that i am running with Windows Vista, which I use when travelling. A while ago, I believe on an update, to either windows or itunes, it stopped running iTunes and comes up with the error : Runtime Error: R6034 - An application has made an attempt to load the C runtime library incorrectly.
    I have a reasonable amount of tunes stored on my laptop, and am unable to ascertain as to whether this fix for allowing itunes to work again will delete my music folder and lose all the tunes i have on my laptop already?
    The contents of my music folders on my laptop and iMac are not the same, as they are not synced!
    Any help please on this would be appreciated!
    Pete

    See Troubleshooting issues with iTunes for Windows updates. The second box covers the basic removal and repair steps. The rest is links to other useful resouces.
    tt2

  • Is there any way to stop running apps from showing in dock

    Is there any way to stop running applications from showing in the dock

    MacUpdate.com for OnyX or TinkerTool, one of those has the ability to lock the Dock so no changes occur, basically giving you what you want.

  • Need step by step instructions on how to get Lightroom to run in Windows

    First I downloaded Lightroom successfully using newest version of Creative Cloud. It would not run. Literally, nothing happens.
    Then I found some info online that says when Lightroom CC doesn't run, you must uninstall it and download it from the Adobe website instead of using Creative Cloud.
    When I try to download it in either Firefox or Chrome, I get this error message "Firefox/Chrome doesn't know how to open this address, because one of the following protocols (aam) isn't associated with any program or is not allowed in this context."
    After a lot of searching around, I discovered that I needed to download the Adobe Application Manger. I did so but it calls itself the Adobe Update Management Tool. Very confusing.
    Then I went back to the Adobe website and tried to download Lightroom again and got the same error message.
    Next, I ran the Adobe Update Management Tool and clicked on Get and Install Online Updates which seemed to be the only relevant choice. In the dropdown box under Select Product Type, there are many Adobe programs listed but Lightroom isn't one of them. I gave up on trying to download Lightroom directly from the Adobe website.
    I then re-downloaded Lightroom successfully using Creative Cloud. It still would not run.
    Next I found some info online that says you have to go into Appdata > Adobe > Local and rename the OOBE file to OOBE.old, so I did that. Lightroom still would not run. I rebooted. This time when I tried to run Lightroom, I got the screen where you have to accept Adobe's terms and conditions. I did so. Lightroom but still would not run.
    Is there anyone who has been through this and knows exactly what steps in what order I need to take to get Lightroom to run? I have Photoshop CC and it runs without any problems.

    You might reboot and try the other Solution #1/2 items, again.  Since you did so much hacking which may not have been related to the issue, there may be something else not right because of it. 
    You also might try uninstalling and reinstalling LR 5.5 from the cloud, again, or installing the LR 5.5 standalone update from the Adobe updates page:  http://www.adobe.com/downloads/updates/
    You also might try uninstalling your all Adobe software, running the CS Cleaner and installing, again:
    http://helpx.adobe.com/creative-suite/kb/cs5-cleaner-tool-installation-problems.html
    You haven't said what other Adobe software you're running.
    Is this the very first time you've tried to run LR on this computer or have you upgraded from previous versions that worked ok?

  • I tunes won't open. No warning message, just the first terms agreement opens and when i agree itunes stopes running. I just wiped and reinstalled everything including windows. I updated everything fully. Deleted spybot unintalled and reintalled new

    I tunes won't open. No warning message, just the first terms agreement opens and when i agree itunes stopes running. I just wiped and reinstalled everything including windows. I updated everything fully. Deleted spybot unintalled and reintalled the newest and one older version of itunes. still nothing. I tried to delete some files that is hidden as directed by apple. I have been trading emails with customer support but it has been no help at all. I am running Windows XP. Before i wiped my computer I ran itunes with no problem, on this computer, this week.

    WOOOOOOOOOOOO!!!! JUST WANTED TO UPDATE Y'ALL THAT BY SOME STROKE OF HEAVENLY GLORY, ITUNES DECIDED TO WORK AGAIN!!!
    WOOOOOOOOOOOOOO!!!
    How did I do it you ask??
    after all the stuff I updated you about, I tried one last time to install....still didn't work...so once again I wiped my system of everything itunes and apple related
    well today I was trying to watch a video that required me to get the quicktime plug in, and it too me to a page that was a quicktime install + itunes 7.blah blah blah instead of the other way around
    well, don't ask me why, but low and behold
    IT WORKS!!!!
    I HAVE MY ITUNES BACK!!! (JUMPS FOR JOY)
    Just wanted to share my shear elation

  • I get a window pop up after every click into a new site that reads : Safari is no longer responding because of a script on the webpage "    ". Do you want to stop running the script, or let it continue? If I  click on continue it just continues,

    I get a window pop up after every click into a new site that reads : Safari is no longer responding because of a script on the webpage "    ". Do you want to stop running the script, or let it continue? If I  click on continue it just continues, stop, it stops.  How to correct this annoying message?

    Disable Javascript for those webpages.  Note, your Javascript is probably antiquated by now.  Try a different web browser, or contact the website and let them know they aren't as accessible as they could be*:
    http://www.macmaps.com/browser.html

  • In the middle of my vacation and the sync of my photos stopped running, what happened?

    In the middle of my vacation and the sync of my photos stopped running, what happened?  I have looked for online answers and cannot find anything.

    For transfers to occur, you must be using wifi and the photo app must be shut down.  It may also take some time for photos to sync across, and many users claim thier photos don't sync via photo stream.  My impression is that photo stream is still beta, given the problems with it.

  • XLreporter scheduled tasks stopped running

    Hi Experts,
    We are experiencing problems on XLreporter scheduled tasks.
    They worked properly with sending emails as daily routine. However for some reason they stopped running in windows Task Scheduler. We can still run the jobs thru manually in XLreporter Organizer with correct result and sucessful logs. In the mean time the service of Task Scheduler is ok for other tasks than XLreporter.
    What we can see in Event Viewer is the error message with two other information message below for each run:
    Error:
    The VB Application identified by the event source logged this Application IXExecutor: Thread ID: 5904 ,Logged: An error occured while Initializing Job
    Object variable or With block variable not set
    Info:
    The VB Application identified by the event source logged this Application IXExecutor: Thread ID: 5904 ,Logged: Before deleting mclsIFDSApp
    Info:
    The VB Application identified by the event source logged this Application IXExecutor: Thread ID: 5904 ,Logged: IXExecutorProxy - ExecuteJob: Before Exit Sub
    The SBO version 8.8 PL14 on windows server 2003 R2 SP2 ,SQL Server 2005
    Can you please advise? Many thanks Ryan
    Edited by: Ryan Fu on Jun 22, 2011 3:55 AM

    Just found this one too:
    Note 855021
    If you want scheduled report jobs in XL Reporter to be executed independently of the logon status of the user who defined the job, you must allow Microsoft Excel to be started by the scheduled job.
    1. Choose Run from the Windows Start menu and type dcomcnfg.exe. A window called Component Services appears. Choose Component Services->Computers->My Computer->DCOM Config->Microsoft Excel Application from the list.
    2. Right-click on Microsoft Excel and choose Properties. Choose the Security tab.
    3. Choose Customize under Access Permissions and choose Edit...
    4. Choose Add... and choose Users and/or User Groups that require access to Excel. Then choose OK.
    5. Repeat the procedure for Customize under Launch Permissions.
    6. Choose the Identity tab.
    Choose This User.
    Choose a user that is a member of the administrator group from the browse button and enter password.
                  This user will be the one that is given access to Microsoft Excel when executing scheduled jobs. Normally this would be the Administrator user.

  • Tomcat 6 stop running while Oracle XE runs

    Hi All,
    =========
    My Env:
    Ubuntu 10
    =========
    After a full day's research & work I managed to install Tomcat 6, Cocoon & Java files successfully. The following is my problem.
    I have an existing Oracle XE running with Apex 3.2.
    When I start Tomcat 6 it gets started fine, but in few seconds it stops running and gives the message " Tomcat servlet engine is not running, but pid file exists.". I can stop & start this, or restart this but the same problem happens again after few seconds with the same message ( I know this by checking the status). During this few seconds running I am able to access it via the browser by http://localhost:8180 ( I modified the port from 8080 to 8180). Apex uses port 8080. During this time I don't have any problem with Apex (set to run at start up).
    When I stop the Oracle Database and start Tomcat 6 it works fine, it continues to run perfectly. Again when I start the database, I am unable to access Apex via port 8080 & get the message "can't establish a connection to the server at 127.0.0.1:8080."
    Can anyone please help me?
    Thanks ever so much
    Naushad

    Hi Naushad,
    you probably have missed a setting to migrate the tomcat to port 8180. The behaviour you describe fits to the one I'd expect for a port conflict - either service runs perfectly when he's "alone", but doesn't work if the other one started before.
    You can fix this on both sides. Reconfiguration of the port your EPG hosts your APEX may be a little easier. You just have to login as sys and execute the following block:
    begin
      dbms_xdb.sethttpport(8081);
    end;
    commit;Change the port to whatever value you want.
    To change your Tomcat port configuration, you probably edited the following piece in your server.xml
    <Connector port="8080" protocol="HTTP/1.1"
    ...You'll find other ports used by the Tomcat in that file as well. Make sure you don't have a conflict with some other service.
    I'm running a Tomcat next to XE on Ubuntu 8.04. Since I had to reconfigure the Tomcats default SSL Port (8443 was already used by another web server on that machine), I moved all Tomcat ports from 80XX to 100XX, keeping the EPG on port 8080, and it works fine for me.
    -Udo

Maybe you are looking for

  • Question about ASE 15.7 kernel mode – process vs threaded

    Hi there, This question is related to upgrading Sybase ASE Server from version 15.5 to version 15.7 on Sun Solaris SPARC Operating System (Solaris 10). For the upgrade, I need to choose between threaded kernel and process kernel mode. 1> Is the proce

  • G4 Mirror Door Wont Power back on

    Hi, I was using my Mirror Door G4 when all of a sudden it just shut down, as if someone had pulled out the power cable. Everything else was on and working. When I pushed the power button it would light for a brief second and then nothing. No start up

  • 2.1 released

    I'm downloading it now!

  • Remove unnecessary field in Web UI - not applied

    Hello, dear Experts! I'm trying to remove unnecessary fields from contact view page in Web UI. I performed the following steps: 1. created new config role key ZTMP 2. created new business role and binded it with my config role key 3. bound business r

  • Structure Of Stored Procedure DT

    Hi Guys, Can you pls give me the basic structure of the DT that I need to create for Stored Procedure Call? XIer Message was edited by:         XIer