Adobe Edge Inspect won't open

Hi,
I'm trying to launch Adobe Edge Inspect but it won't do it.
I have another user in this same computer and it works flawlessly. The strangest thing is that I installed the software from this user (where the app won't launch).
Console gives me this report:
Process:         EdgeInspect [4507]
Path:            /Applications/Adobe Edge Inspect CC.app/Contents/MacOS/EdgeInspect
Identifier:      com.adobe.EdgeInspect.application
Version:         1.0.407 (1.0.407.0)
Code Type:       X86 (Native)
Parent Process:  launchd [176]
Responsible:     EdgeInspect [4507]
User ID:         502
Date/Time:       2014-02-06 11:38:19.101 +0100
OS Version:      Mac OS X 10.9.1 (13B42)
Report Version:  11
Anonymous UUID:  BE07DE49-C882-75EA-4EBF-AD729FE8C0C4
Crashed Thread:  0  Dispatch queue: com.apple.main-thread
Exception Type:  EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Application Specific Information:
terminating with uncaught exception of type dvacore::filesupport::dir_create_exception: $$$/dvacore/filesupport/DirCreate=The directory '@0' could not be created. Please check the parent directory protection or permission rights.
abort() called
Thanks :-)

Okay, I solved it by deleting the Folder under /user/library
Thanks to...
adliecxkamnadnra, 27-mar-2013 14:09   in reply to Mark Rausch Report
No dice.
I sent the folder:
Users/[username]/Library/Preferences/Adobe/Edge Inspect
into the trash. Relaunched the app and same thing. Edge Inspect appears to launch, makes a new pref folder, then crashes in a matter of 3 seconds.

Similar Messages

  • Adobe Edge Inspect Open Issue

    I installed Adobe Edge Inspect on a MacBook Pro, running OSX 10.8.2. Edge Inspect would not open. Following advice from an earlier discussion, I discarded the preferences folder and rebooted. Edge Inspect opened after the reboot and sent me to a web page to sign in. I signed in and nothing... No error. No open icon in the doc. No report or status indication of any kind. Now, Edge Inspect won't open again. It does open on my iPhone 4S and the iPhone app sees my MacBook Pro. The iPhone even gives me a passcode to connect, but there is absolutely no field nor application nor anything on the MacBook where I can enter the code. Nuttin' Any help would be greatly appreciated. If it's not going to work, hopefully, there would at least be some indication of why, or some notice telling me I need to do something else, if that is the case.

    Hi Mark,
    I also have this issue running 10.8.2. Edge Inspect fails to load, Console entries claim it crashed as per below
    21/02/13 11:45:28.254 AM EdgeInspect[6364]: objc[6364]: Class WebCoreTextFieldCell is implemented in both /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore and /Applications/Adobe Edge Inspect.app/Contents/Frameworks/dvawebview.framework/Versions/A/cef//libcef.dylib. One of the two will be used. Which one is undefined.
    21/02/13 11:45:28.367 AM EdgeInspect[6364]: *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSArrayM objectAtIndex:]: index 1 beyond bounds [0 .. 0]' *** Call stack at first throw: (      0   CoreFoundation                      0x972f612b __raiseError + 219      1   libobjc.A.dylib                     0x973bf52e objc_exception_throw + 230      2   CoreFoundation                      0x971ecc3b -[__NSArrayM objectAtIndex:] + 251      3   CoreFoundation                      0x971cc6d8 CFArrayGetValueAtIndex + 88      4   EdgeInspect                         0x0000e808 _ZN3App16GetDefaultLocaleERSbIhSt11char_traitsIhEN7dvacore7utility19SmallBlockAllocator12STLAllocatorIhEEE + 816      5   EdgeInspect                         0x0000ebb5 _ZN3App14GetLocaleToRunERSbIhSt11char_traitsIhEN7dvacore7utility19SmallBlockAllocator12STLAllocatorIhEEE + 147      6   EdgeInspect                         0x0000f741 _ZN3App13PreInitializeEv + 773      7   EdgeInspect                         0x00015d81 main + 113      8   EdgeInspect                         0x00002735 start + 53 )
    21/02/13 11:45:29.598 AM com.apple.launchd.peruser.501[198]: ([0x0-0x30d30d].com.adobe.EdgeInspect.application[6364]) Job appears to have crashed: Trace/BPT trap: 5
    21/02/13 11:45:30.035 AM ReportCrash[6365]: Saved crash report for EdgeInspect[6364] version 1.0.327 (1.0.327.385782) to /Users/allanbanks/Library/Logs/DiagnosticReports/EdgeInspect_2013-02-21-114530_Banksy-MBP.crash

  • I cant open up adobe edge inspect from my applications menu

    i cant open up adobe edge inspect from my applications menu

    A chat session where an agent may remotely look inside your computer may help
    Creative Cloud chat support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html

  • How To: Use Visual Studio, IIS Express, and Adobe Edge Inspect to view local projects

    You CAN view a Visual Studio project with Adobe Inspect. The work around takes a little bit of time.
    This involves using IIS Express to run your Visual Studio project, which is mainly a setting in Visual Studio, a Firewall change, a few command line and IIS Express config change.  It isn't actually all that bad, but will make your life A LOT easier.
    Here are the steps. (Note these are steps I used for Visual Studio 2012 and your project is part of a solution project.  Windows 7 or Windows 8)
    1. If IIS in not turned on, turn it on.How to: Enable Internet Information Services (IIS) - this should install IIS Express as well.
    2. In Visual Studio, find the port that Visual Studio will be using for your project by Running your web project (Debug), and note/write down/save the port number that shows up in the browser when the project launches. (ex.  http://localhost:12345)
    3. Add a NetShare Reservation (process for this will be different for Windows XP)
    Go to your Command Line (CMD) in Windows and in c:\Windows\system32> type in
    netsh http add urlacl url=http://yourIPaddress:yourPortNumber user=everyone
    (ex. netsh add urlacl url=http://12.34.56.78:12345 user=everyone)
    Hit Enter key. You should be a successful add reservation message
    3. Go to your Windows Explorer (File system) and go to c:/Users/YourName/MyDocuments (or Documents)/IISExpress/config/ and open 'applicationhost.config'
    In the 'applicationhost.config' file find your site in the <sites> section.
    Example:
    <sites>
    <site name="WebSite1" id="1" serverAutoStart="true">
                    <application path="/">
                        <virtualDirectory path="/" physicalPath="C:\MyProjects\TestSite" />
                    </application>
                    <bindings>
                        <binding protocol="http" bindingInformation=":12345:localhost" />
                    </bindings>
                </site>
    </sites>
    In this section ADD 2 new lines to the <bindings> section. Note add your own IP address and your own Computer Name
    <binding protocol="http" bindingInformation="*:12345:12.34.56.78" />
    <binding protocol="http" bindingInformation=":12345:MyComputerName" />
    Save the config file.
    4. Open up your Windows Firewall and go to 'Advanced Settings'. Here you want to create an Inbound Rule.
    Right click on Inbound Rule and select New Rule
    - Rule Type select 'Custom'
    - Program leave this
    - Protocol and Ports > Protocol Type select 'TCP' then Local Port select 'Specific Port' and fill in the port number you got from VS.  Leave Remote Port alone.
    - Scope
    There are a few ways of doing this. Typically you would go the the Remote IP address and select 'These IP addresses: and select ADD > select 'Predefined set of computers' and choose Local Subnet.  IF this does not work leave Remote IP addresses > Any IP address option selected instead.
    - Action leave this
    - Profile select Domain and Private
    - Name put IISExpressWeb for the name
    Select 'Finish'
    5. Go to Visual Studio. (Note if you have multiple projects in your solution, choose your start up project. Right click on your project in Solution Explorer in VS and select 'Set as Start Up Project' )
    Right click on your start up project again and you should see an option to 'Use IISExpress'
    In the DEBUG dropdown (from the main menu bar at the top) select 'YourProjectName Properties'. Mine was the last one in the list with a wrench icon next to it.
    This should open an new tab in your project, You should see a left hand list of option and a right hand column of options.
    In the left column select 'Web' and in this tab select Use Local IIS Web server and select 'Use IIS Express' and type in your IP Address and port number (same as before) in the Project Url text box.
    Save.
    NOW, you should be able to run your project in Visual Studio and use Adobe Edge Inspect on your device and view new results in Chrome. You can develop from there.
    If you still can not see it working, please be sure your device is on the same SubNet or Wireless network as your computer.  If you are in a large network but the domains can still see each other, the Firewall Setting detailed above to allow Any IP Address in your Scope section.

    Hi CMosqueda,
    Thank you for taking time to share this information with other users.
    Thanks,
    Preran

  • Adobe Edge Inspect says I'm offline. I'm not offline.

    I have Adobe Shadow installed. It works. 
    I just installed Adobe Edge Inspect, but it says I'm "offline". The problem is that I am not actually offline. Any help for this dead-end?

    When does this error pop up for you?
    Are you getting this after you sign in with your e-mail address?
    Or does it appear as soon as you open the app, or when?
    Also, what version of Mac OS are you running?
    Are you running any security software, like firewalls or proxies?

  • Adobe Edge Inspect - Bootstrap.min.css (bootstrap 3)

    Hello,
    When trying to use Adobe Edge inspect on my website. For some reason I can not view the css in the remote inspection for the iPad. So I started removing style sheets to see which ones were creating the problem. It turns out to be Bootstrap 3 css file called bootstrap.min.css. Once I removed that I was able to inspect and see my other CSS styles. Thinking it was maybe just my site, I also tried to remote inspect for Bootstraps actual site (www.getbootstrap.com) and their CSS was not loading in the inspector for me also. Is there a work around for this? I could have sworn I didn't have any issues before but just now seems to be happening. Any help would be greatly appreciated. I could be doing something wrong.

    I agree seems like Adobe is behind the poor curve with support for Bootstrap and Foundation frameworks both of these are very popular for development platforms for mock ups I have been looking for a really good WYSIWYG editor for either of these frameworks Dreamweaver has some plugins but the developer is asking crazy amount of money which from what I can tell just points to the namespace or css, js files.  If Adobe could create a application like Edge Reflow using these powerful frame works they would open themselves up to a huge market as people could create functional cross platforms applications I  and believe this is a growing market as more and more people are taking to social media and creating more content for social interactions.  An application like Edge Reflow that provided Responsive web development support for Bootstrap and Foundation would be a huge success I could imagine tools Edge Flow really taking center stage for beginners and intermediate developers.

  • Adobe Edge Inspect - Snapshot Viewer

    I love Adobe Edge Inspect.  The only thing that is missing, is a better way to view the snapshots ( other than sorting through a directory of files - I test on 40 devices and the directory fills up fast ).
    I ended up making this open source project to make it easier to view the Adobe Edge Inspect Snapshots, hope others find it helpful:
    https://github.com/manifestinteractive/edge-inspect-viewer

    I love Adobe Edge Inspect.  The only thing that is missing, is a better way to view the snapshots ( other than sorting through a directory of files - I test on 40 devices and the directory fills up fast ).
    I ended up making this open source project to make it easier to view the Adobe Edge Inspect Snapshots, hope others find it helpful:
    https://github.com/manifestinteractive/edge-inspect-viewer

  • My adobe illustrator cc won't open files

    Hey every one
    When i open Ai file my adobe illustrator cc won't open the but for other file is good like JPG can you tell me how to fix it ??
    and thanks

    ConK,
    Did you use the full three step way?
    Uninstall, run the Cleaner Tool, and reinstall?
    http://www.adobe.com/support/contact/cscleanertool.html

  • My adobe photoshop CS6 won't open it says: 'the preferences file is invalid'. HELP!

    My adobe photoshop CS6 won't open it says: 'the preferences file is invalid'. HELP!

    Please read this and proceed accordingly:
    http://blogs.adobe.com/crawlspace/2012/07/photoshop-basic-troubleshooting-steps-to-fix-mos t-issues.html

  • Adobe Application Manager Won't Open and CC Desktop failed to install

    I am running Win 7 Ultimate. Adobe Application Manager Won't Open and CC Desktop failed to install on my computer after I signed up for Adobe CC tonight. I am currently using the CS5 suite (perpetual license) and do not want to uninstall any of the programs until I am successfully running the Adobe CC versions. The AAM gives me an error message saying that it failed to open when I select it, and the creative cloud installer fails to install. I have tried restarting my computer. Help? This is very frustrating. I am a student and use this software on a daily basis, and can't afford to not have these programs available when I need them.

    Link for Download & Install & Setup & Activation problems may help
    -Online Chat http://www.adobe.com/support/download-install/supportinfo/
    OR
    Some download & install troubleshooting links
    -Comodo Security kills download http://forums.adobe.com/thread/1460361?tstart=0
    -http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html
    -http://forums.adobe.com/community/download_install_setup
    -http://helpx.adobe.com/creative-cloud/kb/troubleshoot-cc-installation-download.html
    -http://helpx.adobe.com/x-productkb/global/errors-or-unexpected-behavior-websites.html
    -http://helpx.adobe.com/creative-cloud/kb/unknown-server-error-launching-cc.html
    -Server won't connect https://forums.adobe.com/thread/1233088

  • Adobe Illustrator CS6 won't open in Mac 10.10 without Java SE 6 Runtime. Where do I get it.

    Adobe Illustrator CS6 won't open in Mac 10.10 without Java SE 6 Runtime. Where do I get it.
    I went to Jave and downloaded the latest version of Java 8 Update 31 for Mac, but it still won't open.

    dchasin,
    You may be able to get round the legacy JAVA requirement as follows:
    Create empty folders at “/System/Library/Java/JavaVirtualMachines/1.6.0.jdk” and “/System/Library/Java/Support/Deploy.bundle”, to make Illustrator use Jave SE 8 as it should.
    The solution was presented by Kals in post #7 here:
    https://forums.adobe.com/thread/1637908
    Here are download sites:
    Win:
    http://www.oracle.com/technetwork/java/javase/downloads/java-archive-downloads-javase6-419 409.html
    Mac:
    http://support.apple.com/kb/DL1572
    Some have found that the page may turn up blank to start with, so it may be necessary to reload the page.
    Others have found that it may depend on browser. Specifically, a switch from Safari has solved it in one case.

  • How to download Adobe Edge Inspect?

    It maybe weekend woes, but I find it impossible to download Adobe Edge Inspect. For starters, I would like to test the free version.
    This is what I'm doing
    1 )install the Edge Inspect Extension on Chrome
    2) sign up for Adobe Create Cloud
    3) go to apps
    x) edge tools & services does not include an icon for Edge Inspect
    Following this blog post:
    http://blogs.adobe.com/edgeinspect/2012/10/23/how-to-purchase-edge-inspect/
    5) Go to plans page to select "getting started"
    x) the button is disabled
    Trying on the main edge inspect website
    http://html.adobe.com/edge/inspect/
    6) click on edge inspect
    7) click on getting started
    x) I'm back in the cloud apps section, without the edge inspect icon
    I then downloaded the Adobe Application Manager
    x) When running there is also no option to download edge inspector
    Can anyone tell me if I'm doing something wrong?

    The Learn More link for Adobe Edge Inspect directs you to different pages depending on if you are signed in or not with your Adobe ID.
    If you are not signed in you will go to here http://www.adobe.com/go/edgeinspect which redirects you to here http://html.adobe.com/edge/inspect/. This is information on Inspect.
    If you are signed in you will go here https://creative.adobe.com/inspect and be able to download Inspect. If you are not signed in and try to go to https://creative.adobe.com/inspect you will be redirected to https://creative.adobe.com from where you can sign in or create a new Adobe ID.

  • Adobe CS 5 won't open or work.

    My Adobe CS 5 won't open or work.

    Evil little program...! Anyway, without any more info nobody can do anything for you. We need at least some system information....
    Mylenium

  • License Question - Adobe Edge Inspect

    Ok, here is the problem. We have 3 Creative Suite Cloud licenses for 3 members of our team to use at work. Awesome.
    We have now built a mobile testing station which is one computer connected to numerous mobile devices for testing purposes. We want to Use Adobe Edge Inspect on this computer in order to do this. But when I install Creative Cloud and try and set Edge Inspect up it tells me I need a paid version in order to connect multiple devices. Do I need to buy a whole new Creative Suite License for this computer in order to use this one 'lite' application? Or can I use one of our existing licenses so that I can run this application on the testing station?
    Thanks
    Mike

    If the installation would be getting used at the same time that the other license owners would be using their CC installations then you likely need to have a separate license for the test station.  The CC licensing allows for installation on two machines with the exception that the subscription is only in use for one machine at any given time.

  • When I click on the icon for Adobe Illustrator it won't open what is wrong

    When I click on the icon for Adobe Illustrator it won't open what is wrong

    Need some more information. What OS and version,what version of AI? Has it ever worked? What has changed since the last time it worked?

Maybe you are looking for