Import.io Crashes on OS X El Capitan - crash

I have updated my OS X to the El Capitan Public Beta (10.11 Beta (15A215h)) and Import.io now does not open anymore. Already tried to erase and reinstalled without success. Does anybody know if there's something I can do to get it to work in this new version?

We currently have not tested our app with the beta release of Apple's newest OS.
In the meantime, can you try our beta version of our upcoming app.
The newest app has a bunch of bug fixes and performance improvements. The browser engine has been updated, so less prompts about updating the browser. The app is now 2x faster than the previous update. 
Here is to link to install the latest version:
https://gist.github.com/ianAndrewClark/3f4d2842eb6735a92f0f
Thanks,
Meg

Related

Which mac os version is working pretty good with Valgrind?

I'm asking that because I was using Bigsur 2 days ago and no available version is currently working with Bigsur, so I downgraded my os to El capitan and I tested all options but no one is working. Today I am using Mojave 10.14.6 and still no version available.. Do you know a mac os version is working fine with valgrind please ? Thank's !
MacOS 10.13 is the last supported in the official git repo.
You should be able to get 10.14 to work with an unofficial clone (look for Louis Brunner on GitHub, there should be a brew recipe as well).
The poor state of affairs is all down to lack of resources. The Valgrind dev team has a fairly high bar to become a submitter. No-one is actively working on macOS. If people want Valgrind on macOS then we (the Valgrind dev team) need someone to step up and make a long term commitment to working on it.
Finally, there is also a significant possibility that macOS will be removed entirely from the official Valgrind repo. This was discussed as a possibility for 3.19. The subject hasn’t been raised for the next release (3.20 due out next month, October 2022).

MFP-Cli (MobileFirst Platform 7.1) on MacOS El Capitan

I just updated my MacOS to El Capitan and I tried to install the newest MFP-Cli, version 7.1, on it but no success.
When I double click on install_mac.app the password screen shows up, but after that it closes without message.
I also tried to run the install file inside of install_mac.app/ and I got the following:
2015-10-06 11:06:54.828 install[991:10602] Exe: /Users/jairrillo/Downloads/mobilefirst-cli-installer-7.1.0/install_mac.app/Contents/Resources/install.app
logout
Saving session...
...copying shared history...
...saving history...truncating history files...
...completed.
Does anyone had the same issue?
This is not related to OS X El Capitan.
The installation fails due to a bug in the product that has been resolved.
Look out for a newer build to be released, soon. Its build number should be 7.1.0.0 ... IF201510051721.
This can also be caused by a missing or misconfigured JDK. I seemed to run into this issue despite not recalling a JDK uninstall since last using MFP-CLI 7.1, so it is possible an El Capitan update may have done something to your JDK 7 install. Run a quick "java" command in your Terminal and it should alert you to JDK issues if that is the case.

Why does brew doctor say XCode 6.0.1 isn't the latest version?

Just installed Yosemite and when I run brew doctor I get:
Warning: Your Xcode (6.0.1) is outdated
Please update to Xcode 6.1.
Xcode can be updated from the App Store.
But in the AppStore it looks like XCode 6.0.1 is the latest version. What's the best way to correct this?
Tis that slight lag between 10.10 being Avail and xcode getting updated. If you read the top of brew doctor output it says
Please note that these warnings are just used to help the Homebrew maintainers
with debugging if you file an issue. If everything you use Homebrew for is
working fine: please don't worry and just ignore them. Thanks!
So if everything is working, then you should do what it suggests and ignore it. The command line tools / compilers where updated for 10.10 (software update should have picked them up for you). Are you running into any issues with compiling? or just that warning.
pulling up from the comments. Your ruby and postgresql issues are from the upgrade, but it isn't really brews fault, or that compiler error warning.
with rvm just reinstall your ruby. My main dev is done with ruby-2.1.3 so
rvm reinstall ruby-2.1.3
rebuilt ruby and all my gems. The problem is that the ssl libs (maybe others) that ruby was linked to were removed / replaced in the upgrade to 10.10. The reinstall will rebuild and relink to the newer correct libs.
postgresql is slightly different. Apparently during the upgrade a couple of empty directories in /usr/local/var/postgres get removed. No idea why.
see this SO answer for how to fix that.
`pg_tblspc` missing after installation of latest version of OS X (Yosemite or El Capitan)
also if you are use pow (http://pow.cx) you will need to upgrade it to the latest version as 10.10 removed ipfw completely and only leaves pf as the firewall. so you will need to the new version which uses pf anchors.
The above steps where all I needed to do it in order to get my dev back to working.
Looks like developer.apple.com does show an XCode 6.1 as "Available Shortly" as of Fri, Oct 17, at 10pm central time. Not yet available from the AppStore. I guess I'm just too eager for an update.

The Flash Builder debugger failed to connect to the running application

I know this has been posted a few times like here:
Flash player debugger not working
but I have uninstalled flash player and tried to reinstall an older version of flash player 10.1 which I believe worked with my 4.5 version of Flash Builder. But I go to
http://flashplayerversion.com/
and it still says I have mac 12.0.0.44 debugger version installed in Firefox. How can I get the older version of the flash player to install? Is there something I should uninstall to make sure my system installs FP 10.1?
This solved my problem of launching the debug version of firefox:
http://www.bryandragon.com/articles/flash-builder-debugging-with-firefox/

Xcode app version not compatible with Mac OS X version

am using Os X 10.6.4 and X code Version 3.2.3 for developing some simple app files and using PackageMaker to distribute these app files. But when trying to run the package on some other mac I am getting error that the package is not compatible with the Os X its running and file would not be installed. Is this a problem with X code or package maker. sorry for reposting it but although I tried changing base SDK to 10.5, it was getting compiled and ran well on mac I am using for development (Mac OS X 10.6.4) but when installed on mac running OS X 10.5 the .app files were grayed out and message poped up saying 'you cannot use this version of application with this version of Mac'. Any idea why is this happening? Also as mentioned earlier I am using IBOutlet for accepting user date from form and then writing that into a text file. Any idea or solution about it?
Do you have anything set in your Info.plist for the LSMinimumSystemVersion key? This is one place the system looks.
When I was brand new I had trouble figuring this out...
Make sure that your Base SDK and deployment target are 10.5 and that you have the right compiler on(GCG4.0/4.2), also make sure that when you change these settings you change it for both Release and Debug, I once made this mistake of changing it only on debug, and when I built for release it only worked on 10.6 because I didn't change those settings.