I can't download files over 200 mb. What's wrong?

Every time I try to download a file over 200mb it looks like it's downloading but when it has loaded 100% it doesn't finish so it doesn't get saved. It's not a space problem and it has always worked before. (It's not the browser either, I have tried it in firefox too).
This is how it looks..
If anybody knows what could be wrong and how to fix it, please help. Much appreciated.

A .rar extension requires a utility to open.
RAR Expander for Mac - Free software downloads and software reviews - CNET Download.com
And check Safari > Preferences - General
Make sure:  Open "safe" files after downloading is selected.
If it still won't open, go to ~/Library/Safari
Move the Downloads.plist file from the Safari folder to the Trash.
Quit then relaunch Safari ...  try again.

Similar Messages

  • I can't DL the Update "Sony Album 5.4.A.0.20" to my phone all it say is can't download file?

    i can't DL the Update "Sony Album 5.4.A.0.20" to my phone all it say is can't download file?

    Try this here install Sony Album 5.4.A.0.20.apk taken from my Z1
    For a successful technology, reality must take precedence over public relations, for Nature cannot be fooled.   Richard P. Feynman

  • How to set iPad Mini to download files over 50MB?

    I am downloading GarageBand to the iPad Mini and it says I need to connect using Wi-Fi to download files over 50MB, the question is why do I need to connect to a Wi-Fi Station? I have an unlimited LTE connection, what am I paying it for if I need to connect to a Wi-Fi to download files?

    You can try using a MiFi.
    http://en.wikipedia.org/wiki/MiFi

  • Cannot download file over https behind firewall ?

    I have a program to download files :
    public class TestServlet
         public static void main(String args[]){
        Authenticator.setDefault(new AuthImpl());
         if (args.length!=2){
          System.out.println("Proper Usage: java -Dhttp.proxyHost=172.21.32.166 -Dhttp.proxyPort=80 TestServlet RemoteFileURL LocalFileName");
           System.out.println("Usage Example:java -Dhttp.proxyHost=199.67.138.83 -Dhttp.proxyPort=8080 TestServlet https://url.com/csv/file.zip file.zip");
          System.exit(0);
         DataOutputStream out=null;
         FileOutputStream fOut=null;
         try
          trustAllHttpsCertificates();
          String urlStr = args[0];
              HostnameVerifier hv = new HostnameVerifier() {
                   public boolean verify(String urlHostName, SSLSession session) {
                        System.out.println("Warning: URL Host: "+urlHostName+" vs. "+session.getPeerHost());
                        return true;
             HttpsURLConnection.setDefaultHostnameVerifier(hv);
              System.out.println("\nConnecting to Website . . . "+urlStr);
              URL url = new URL(urlStr == null ? "https://url/Downloads/WC.csv" : urlStr);
              System.out.println("\nConnecting . . . . ");
              BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
              System.out.println(". . . Connected");
              System.out.print("\nDownloading the file . . . ");
              int buff;
              fOut=new FileOutputStream(args[1]);
              System.out.print(" . .");
              out=new DataOutputStream(fOut);
              System.out.print(" . .");
              while ((buff = in.read()) != -1) {
                fOut.write(buff);
              in.close();
            System.out.println(" . . . Done \n");
          catch (Exception e) {
                e.printStackTrace();
           finally {
              try{
                   fOut.flush();
                   fOut.close();
                   System.exit(0);
               catch(Exception e){
                   e.printStackTrace();
        HostnameVerifier hv = new HostnameVerifier()
            public boolean verify(String urlHostName, SSLSession session) {
                //System.out.println("Warning: URL Host: " + urlHostName + " vs. " + session.getPeerHost());
                return true;
        private static void trustAllHttpsCertificates() throws Exception
             //  Create a trust manager that does not validate certificate chains:
            javax.net.ssl.TrustManager[] trustAllCerts =  new javax.net.ssl.TrustManager[1];
            javax.net.ssl.TrustManager tm = new miTM();
            trustAllCerts[0] = tm;
              javax.net.ssl.SSLContext sc = javax.net.ssl.SSLContext.getInstance("SSL");
            sc.init(null, trustAllCerts, null);
            javax.net.ssl.HttpsURLConnection.setDefaultSSLSocketFactory(sc.getSocketFactory());
        public static class miTM implements javax.net.ssl.TrustManager, javax.net.ssl.X509TrustManager {
            public java.security.cert.X509Certificate[] getAcceptedIssuers() {
                return null;
            public boolean isServerTrusted(java.security.cert.X509Certificate[] certs) {
                return true;
            public boolean isClientTrusted(java.security.cert.X509Certificate[] certs) {
                return true;
            public void checkServerTrusted(java.security.cert.X509Certificate[] certs, String authType)
                    throws java.security.cert.CertificateException {
                return;
            public void checkClientTrusted(java.security.cert.X509Certificate[] certs, String authType)
                    throws java.security.cert.CertificateException {
                return;
       public static class AuthImpl extends Authenticator {
       protected PasswordAuthentication getPasswordAuthentication() {
          String username = new String("guest");
    String password = new String ("guest");
           return new PasswordAuthentication(username, password.toCharArray());
    }This program works fine for downloading files, over both http and https from my home. When I run this on my desktop in the office it can download files over http, but cannot download https files.
    When I try to download files over https, I get the foll. exception:
    java.net.UnknownHostException: www.site.com
    at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:153)
    at java.net.Socket.connect(Socket.java:452)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.connect(DashoA12275)
    at com.sun.net.ssl.internal.ssl.SSLSocketImpl.<init>(DashoA12275)
    at com.sun.net.ssl.internal.ssl.SSLSocketFactoryImpl.createSocket(DashoA12275)
    at sun.net.www.protocol.https.HttpsClient.doConnect(DashoA12275)
    There are 2 differences here, one being that my office desktop sits behind a firewall and there is a proxy in between.
    In the office I run the program as :
    java -Dhttp.proxyHost -Dhttp.proxyPort TestServlet URL [filename]
    eg.:
    java -Dhttp.proxyHost=235.67.138.84 -Dhttp.proxyPort=8080 TestServlet https://site.com/portal/Downloads/file.csv file.csv
    This url requires authentication, the userid and pwd are hardcoded in the code.
    Now, my problem is I cannot understand why this error would come. Is it because of the firewall or because of the proxy ?
    Why is it that I can download over http successfully from my office desktop? If the problem is with the firewall or proxy, then even http protocol urls should give the same problem.
    Please help.
    Vinay
    Message was edited by:
    vinay_dsouza
    Message was edited by:
    vinay_dsouza

    If you are using HTTPS you should be setting
    https.proxyHost
    https.proxyPortnot the http.* ones.

  • I am trying to download a ringtone on my iphone, keep getting message "safari can't download file."

    How do I download a ringtone? I keep getting the message "safari can't download file".

    To add a ringtone, download it from your computer and make sure it is a .m4r file. Once this is done, add it to your iTunes library (it will go in the ringtones section). Then sync your phone making sure that it syncs ringtones as well (check it in the ringtones tab).
    Then in your sound preferences on your iPhone change the ringtone.

  • Getting error: Safari can't download file intermittently

    I purchased an Ipad (original) for my father in law and it will sometimes give an error ' Safari can not download file' and it will not go to any website. Weatherbug won't connect. Any app that connects to the internet does the same thing. Connecting to the internet thru airport express connected to a dsl modem. Other windows based machine connected to the internet fine. Ideas?

    To add a ringtone, download it from your computer and make sure it is a .m4r file. Once this is done, add it to your iTunes library (it will go in the ringtones section). Then sync your phone making sure that it syncs ringtones as well (check it in the ringtones tab).
    Then in your sound preferences on your iPhone change the ringtone.

  • Remote Desktop -  can't download file

    We have a server mac and we can access at server with remote desktop with a other mac, but we can't download file. Where is a problem? Is a port closed?

    I had access for download the files but not now, the configuration is not changing.

  • Safari can't download file when trying to download movies

    Safari responds with "safari can't download file' when I use download app to download movies . I don't have issues downloading apps or searching net.  Would be grateful for assistance.

    You can't download something from Safari to your iPad.  iPad is a closed system, and not subject to virus intrusion.  Now, if for example you have a Kindle app and you go directly to Kindle in Safari and using your ID you buy a book, the book will download to your Kindle account, which you could then open your kindle App on your iPad and read the book you downloaded in your App.  But you can't go into Safari and just download a book or a movie directly to your iPad from the net........

  • Can't download file from Gmail...

    I have the latest version of Safari and now I can't download files from my Gmail...

    Might be a cookies, cache, extensions, or plug-ins issue.
    From your Safari menu bar click Safari > Preferences then select the Privacy tab.
    Click:  Remove All Website Data
    Then delete the cache.
    Open a Finder window. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following
    ~/Library/Caches/com.apple.Safari/Cache.db
    Click Go then move the Cache.db file to the Trash.
    Quit and relaunch Safari to test.
    If that didn't help, from the Safari menu bar click Safari > Preferences then select the Extensions tab. Turn that OFF, quit and relaunch Safari to test.
    If that helped, turn one extension on then quit and relaunch Safari to test until you find the incompatible extension then click uninstall.
    If it's not an extensions issue, try troubleshooting third party plug-ins.
    Back to Safari > Preferences. This time select the Security tab. Deselect:  Allow plug-ins. Quit and relaunch Safari to test.
    If that made a difference, instructions for troubleshooting plugins here.

  • Can't download file from any browser and download manager

    i confused wit my MBP, becaus MBP can't download file from internet ( via USB modem & Wi-fi)..
    can you help me to fix it ??
    i use iGetter, and it not responding to download, safari too..

    I was able to download the trial from rarlab.com. What happens when you click on a download? You need to make sure you select to download the Mac version. The .exe files do not run on a Mac.
    BTW, you might want to check out GUI Tar  https://www.macupdate.com/app/mac/14503/gui-tar
    The other two sites also work for me. What exactly happens when you click on a link to download? Do you know how to find your downloads?
    How to download YouTube videos using Safari or Firefox
    6 Different Ways to Download Videos from YouTube to your Mac

  • Can't download file from Rapidshare host on Safari!!!???

    I've been tried many times to download a file from Rapidshare host but it doesn't work. after waiting for about a minute and click on the download, the download integrated startup and seem to be searching file, but suddenly it fails and Safari automatically shut down and a pop up appears ask me to relaunch Safari. Besides, i did install igetter and integrated which safari but i still can't download from igetter. i wonder what is the problem with my safari. is that because i installed igetter and they are conflict or something else is happening. i wonder can i just disable download function of safari and use the download manager only. or can anyone tell me how to fix the problem of download from the safari.? thank a lot. dummy Macer.

    Here it is:
    Process: Safari [107]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 3.2.1 (5525.27.1)
    Build Info: WebBrowser-55252701~1
    Code Type: X86 (Native)
    Parent Process: launchd [62]
    Date/Time: 2009-04-10 17:39:12.315 +1000
    OS Version: Mac OS X 10.5.6 (9G55)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000084
    Crashed Thread: 0
    Thread 0 Crashed:
    0 com.apple.CoreFoundation 0x908ae7f3 __removeHandler2 + 339
    1 com.apple.WebKit 0x947dcb88 -[_WebSafeForwarder forwardInvocation:] + 424
    2 com.apple.CoreFoundation 0x908b396a __forwarding__ + 986
    3 com.apple.CoreFoundation 0x908b39d2 CF_forwarding_prep0 + 50
    4 com.apple.WebKit 0x947e1c36 WebFrameLoaderClient::dispatchDecidePolicyForMIMEType(void (WebCore::FrameLoader::*)(WebCore::PolicyAction), WebCore::String const&, WebCore::ResourceRequest const&) + 182
    5 com.apple.WebCore 0x95d39a19 WebCore::FrameLoader::checkContentPolicy(WebCore::String const&, void ()(void, WebCore::PolicyAction), void*) + 217
    6 com.apple.WebCore 0x95d375e1 WebCore::MainResourceLoader::didReceiveResponse(WebCore::ResourceResponse const&) + 625
    7 com.apple.WebCore 0x95d37250 -[WebCoreResourceHandleAsDelegate connection:didReceiveResponse:] + 224
    8 com.apple.Foundation 0x901a30fa -[NSURLConnection(NSURLConnectionReallyInternal) sendDidReceiveResponse:] + 122
    9 com.apple.Foundation 0x901a304a _NSURLConnectionDidReceiveResponse + 154
    10 com.apple.CFNetwork 0x90ce9a57 URLConnectionClient::clientDidReceiveData(__CFData const*) + 293
    11 com.apple.CFNetwork 0x90ce8d05 URLConnectionClient::ClientConnectionEventQueue::processAllEventsAndConsumePayl oad(XConnectionEventInfo<XClientEvent, XClientEventParams>*, long) + 237
    12 com.apple.CFNetwork 0x90ce9d70 URLConnectionClient::processEvents() + 114
    13 com.apple.CFNetwork 0x90c99b6b MultiplexerSource::perform() + 189
    14 com.apple.CoreFoundation 0x908345f5 CFRunLoopRunSpecific + 3141
    15 com.apple.CoreFoundation 0x90834cd8 CFRunLoopRunInMode + 88
    16 com.apple.HIToolbox 0x94bc62c0 RunCurrentEventLoopInMode + 283
    17 com.apple.HIToolbox 0x94bc60d9 ReceiveNextEventCommon + 374
    18 com.apple.HIToolbox 0x94bc5f4d BlockUntilNextEventMatchingListInMode + 106
    19 com.apple.AppKit 0x9699fd7d _DPSNextEvent + 657
    20 com.apple.AppKit 0x9699f630 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    21 com.apple.Safari 0x0000808e 0x1000 + 28814
    22 com.apple.AppKit 0x9699866b -[NSApplication run] + 795
    23 com.apple.AppKit 0x969658a4 NSApplicationMain + 574
    24 com.apple.Safari 0x000b9b16 0x1000 + 756502
    Thread 1:
    0 libSystem.B.dylib 0x94f033ae _semwaitsignal + 10
    1 libSystem.B.dylib 0x94f2dd0d pthreadcondwait$UNIX2003 + 73
    2 com.apple.WebCore 0x95cc98ff WebCore::IconDatabase::syncThreadMainLoop() + 239
    3 com.apple.WebCore 0x95c82065 WebCore::IconDatabase::iconDatabaseSyncThread() + 181
    4 libSystem.B.dylib 0x94f2d095 pthreadstart + 321
    5 libSystem.B.dylib 0x94f2cf52 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x94efc1c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x94f039bc mach_msg + 72
    2 com.apple.CoreFoundation 0x908340ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x90834cd8 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x90c6debe CFURLCacheWorkerThread(void*) + 396
    5 libSystem.B.dylib 0x94f2d095 pthreadstart + 321
    6 libSystem.B.dylib 0x94f2cf52 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x94efc1c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x94f039bc mach_msg + 72
    2 com.apple.CoreFoundation 0x908340ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x90834cd8 CFRunLoopRunInMode + 88
    4 com.apple.Safari 0x00118d4d 0x1000 + 1146189
    5 com.apple.Safari 0x00117fd3 0x1000 + 1142739
    6 com.apple.Safari 0x00118081 0x1000 + 1142913
    7 libSystem.B.dylib 0x94f2d095 pthreadstart + 321
    8 libSystem.B.dylib 0x94f2cf52 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x94efc1c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x94f039bc mach_msg + 72
    2 com.apple.CoreFoundation 0x908340ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x90834cd8 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x901a1d40 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5 com.apple.Foundation 0x9013e7ed -[NSThread main] + 45
    6 com.apple.Foundation 0x9013e394 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x94f2d095 pthreadstart + 321
    8 libSystem.B.dylib 0x94f2cf52 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x94f4b6f2 select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x94f2d095 pthreadstart + 321
    2 libSystem.B.dylib 0x94f2cf52 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x94efc1c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x94f039bc mach_msg + 72
    2 com.apple.CoreFoundation 0x908340ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x90834cd8 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x90172d75 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    5 com.apple.Foundation 0x9017ee94 -[NSRunLoop(NSRunLoop) run] + 84
    6 com.apple.Safari 0x0005b9b0 0x1000 + 371120
    7 com.apple.Foundation 0x9013e7ed -[NSThread main] + 45
    8 com.apple.Foundation 0x9013e394 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x94f2d095 pthreadstart + 321
    10 libSystem.B.dylib 0x94f2cf52 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x94efc1c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x94f039bc mach_msg + 72
    2 com.apple.CoreGraphics 0x93b8e98f _CGSSynchronizeWindowBackingStore + 139
    3 com.apple.CoreGraphics 0x93b8196b _CGSLockWindow + 4600
    4 com.apple.CoreGraphics 0x93b8e4bb CGSDeviceLock + 450
    5 libRIP.A.dylib 0x92910d60 ripd_Lock + 61
    6 libRIP.A.dylib 0x9290a5a5 ripl_BltImage + 329
    7 libRIP.A.dylib 0x928f4549 ripc_RenderImage + 273
    8 libRIP.A.dylib 0x928fe10c ripc_EndLayer + 934
    9 com.apple.CoreGraphics 0x93bff820 CGContextEndTransparencyLayer + 96
    10 com.apple.AppKit 0x96b27f83 _NSTileImageWithOperation + 2633
    11 com.apple.AppKit 0x96b2866d _NSTileImage + 98
    12 com.apple.AppKit 0x96b28519 -[NSProgressIndicator _drawThemeProgressArea:] + 1058
    13 com.apple.AppKit 0x96a06c88 -[NSProgressIndicator heartBeat:] + 2334
    14 com.apple.AppKit 0x96a060dc -[NSUIHeartBeat _heartBeatThread:] + 1597
    15 com.apple.Foundation 0x9013e7ed -[NSThread main] + 45
    16 com.apple.Foundation 0x9013e394 _NSThread__main_ + 308
    17 libSystem.B.dylib 0x94f2d095 pthreadstart + 321
    18 libSystem.B.dylib 0x94f2cf52 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0xbfffe5d0 ebx: 0x908ae6ab ecx: 0x0031a978 edx: 0x00000003
    edi: 0x00000080 esi: 0x0031a960 ebp: 0xbfffe808 esp: 0xbfffe7a0
    ss: 0x0000001f efl: 0x00010202 eip: 0x908ae7f3 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00000084
    Binary Images:
    0x1000 - 0x1d7fe2 com.apple.Safari 3.2.1 (5525.27.1) <66278f41bc085c64e0f06ff487af4adc> /Applications/Safari.app/Contents/MacOS/Safari
    0x223000 - 0x232ff8 SyndicationUI ??? (???) <9272a16db977c7a8efb814b6a8897bda> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x119c5000 - 0x11bbdfff com.apple.RawCamera.bundle 2.0.13 (435) <083354ccec68bf7c9fc99523a5838f92> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x16051000 - 0x16056ff3 libCGXCoreImage.A.dylib ??? (???) <375e0cdb64b043378dbf637992bbfeb0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x16574000 - 0x16574ffe com.apple.JavaPluginCocoa 12.2.0 (12.2.0) <b08d1285182ffcbaedd747d17fdaeefd> /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x1711a000 - 0x1711efdf +com.presenta.iGetterSafariBundle 2.7.5 (2.7.5) /Users/Langtanminh/Library/Internet Plug-Ins/iGetterBundle.plugin/Contents/Resources/iGetterSafariBundle.bundle/Con tents/MacOS/iGetterSafariBundle
    0x17124000 - 0x1712affd com.apple.JavaVM 12.2.2 (12.2.2) <9ad39149cc7ecc91da3e93df7f61d315> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x181ad000 - 0x181ccfed com.apple.audio.CoreAudioKit 1.5 (1.5) <585f5ec95dc8f1efe51d820be84d53a6> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x1832a000 - 0x18933fdf +com.macromedia.Flash Player.plugin 9.0.151 (1.0.4f60) <f43004ffc4944f26af228334f2cda80b> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x19c28000 - 0x19c29ffd com.apple.BluetoothMenu 2.1.3 (2.1.3f8) /System/Library/Contextual Menu Items/BluetoothContextualMenu.plugin/Contents/MacOS/BluetoothContextualMenu
    0x19eec000 - 0x19eeeffe com.apple.AutomatorCMM 1.1 (160) <a34090044a8b83b1089d62ca85c51b1d> /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x19fd9000 - 0x1a046fff +com.DivXInc.DivXDecoder 6.6.0 (6.6.0) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x1a5c5000 - 0x1a5d3feb libSimplifiedChineseConverter.dylib ??? (???) <b82e1c32a535201760656f061414e171> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x1a5d8000 - 0x1a5eafff libTraditionalChineseConverter.dylib ??? (???) <dcbe4876cea7b3007e491d61a9b16993> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x1c869000 - 0x1c86bfff com.apple.BezelServicesFW 1.4.925 (1.4.925) /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x1cc80000 - 0x1cc86fe7 +com.presenta.iGetterCMPlugIn iGetterCMPlugin version 2.7.5 (2.7.5) /Users/Langtanminh/Library/Contextual Menu Items/iGetterCMPlugIn.plugin/Contents/MacOS/iGetterCMPlugIn
    0x1cc8c000 - 0x1cc91fff +com.roxio.ToastItPlugin ToastIt 1.1.2 (build 18) (1.1.2) <00748b16ddae1edcd0a3f2dfa876f929> /Users/Langtanminh/Library/Contextual Menu Items/ToastIt.plugin/Contents/MacOS/ToastIt
    0x1d0e8000 - 0x1d0edfff com.apple.FolderActionsMenu 1.3.2 (1.3.2) <9305ccde37dcf5329fd9faea1db1f153> /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x1d39c000 - 0x1d40fff7 com.apple.Bluetooth 2.1.3 (2.1.3f8) <1e2732edbd0f2c1db1ce5ecf06aa8192> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <100d362e03410f181a34e04e94189ae5> /usr/lib/dyld
    0x90003000 - 0x90004ffc libffi.dylib ??? (???) <eaf10b99a3fbc4920b175809407466c0> /usr/lib/libffi.dylib
    0x90005000 - 0x90007fff com.apple.securityhi 3.0 (30817) <40562b85d99118354c974e76c32fa6fb> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x90008000 - 0x9002cfeb libssl.0.9.7.dylib ??? (???) <d04156c610530ca44979c899834fc24d> /usr/lib/libssl.0.9.7.dylib
    0x9002d000 - 0x900c0fff com.apple.ink.framework 101.3 (86) <d4c85b5cafa8027fff042b84a8be71dc> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x900f4000 - 0x900f4ff8 com.apple.Cocoa 6.5 (???) <a1bc9247cf65c20f1a44d0973cbe649c> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x900f5000 - 0x90133ff7 libGLImage.dylib ??? (???) <1123b8a48bcbe9cc7aa8dd8e1a214a66> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x90134000 - 0x903affe7 com.apple.Foundation 6.5.7 (677.22) <8fe77b5d15ecdae1240b4cb604fc6d0b> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90512000 - 0x9052afff com.apple.openscripting 1.2.8 (???) <0129d2f750f5ddcb92f4acf8a3541952> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9052b000 - 0x90537ffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x90538000 - 0x90538ff8 com.apple.ApplicationServices 34 (34) <ee7bdf593da050bb30c7a1fc446eb8a6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x90539000 - 0x90557fff libresolv.9.dylib ??? (???) <9ed809256ce8913cddc3269c2e364654> /usr/lib/libresolv.9.dylib
    0x90558000 - 0x9058afff com.apple.LDAPFramework 1.4.5 (110) <e9e44dec1fd4b049276257c7cc97b423> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9058b000 - 0x90645fe3 com.apple.CoreServices.OSServices 226.5 (226.5) <ef9945b1304495f3e8085c935f1b81e3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90650000 - 0x906a1ff7 com.apple.HIServices 1.7.0 (???) <01b690d1f376e400ac873105533e39eb> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x906a2000 - 0x906cafff libcups.2.dylib ??? (???) <16bec7c6a004f744804e2281a1b1c094> /usr/lib/libcups.2.dylib
    0x906cb000 - 0x907b0ff3 com.apple.CoreData 100.1 (186) <50219bcb005cb15ea999a19391a8d523> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x907b1000 - 0x907c0ffe com.apple.DSObjCWrappers.Framework 1.3 (1.3) <182986b74247b459b2a67a47071bdc6b> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x907c1000 - 0x908f4fff com.apple.CoreFoundation 6.5.5 (476.17) <4a70c8dbb582118e31412c53dc1f407f> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908f5000 - 0x908fcfe9 libgcc_s.1.dylib ??? (???) <e280ddf3f5fb3049e674edcb109f389a> /usr/lib/libgcc_s.1.dylib
    0x908fd000 - 0x90bd7ff3 com.apple.CoreServices.CarbonCore 786.11 (786.11) <f06fe5d92d56ac5aa52d1ba182745924> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90bd8000 - 0x90bedffb com.apple.ImageCapture 5.0.1 (5.0.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x90bee000 - 0x90c38fe1 com.apple.securityinterface 3.0.1 (35183) <f855cb06d2541ce544d9bcdf998b991c> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x90c6b000 - 0x90d08fe4 com.apple.CFNetwork 422.15.2 (422.15.2) <80851410a5592b7c3b149b2ff849bcc1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90d09000 - 0x90e0afe7 com.apple.PubSub 1.0.3 (65.1.2) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x90e0b000 - 0x90e88feb com.apple.audio.CoreAudio 3.1.1 (3.1.1) <f35477a5e23db0fa43233c37da01ae1c> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x90e89000 - 0x90fdbff3 com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90fdc000 - 0x910a3ff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x910a4000 - 0x910abffe libbsm.dylib ??? (???) <fa7ae5f1a621d9b69e7e18747c9405fb> /usr/lib/libbsm.dylib
    0x911e5000 - 0x9120dff7 com.apple.shortcut 1 (1.0) <35cd17d0179ca839c5fb08694f3dc5ef> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x9120e000 - 0x9121bfe7 com.apple.opengl 1.5.9 (1.5.9) <7e5048a2677b41098c84045305f42f7f> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9126b000 - 0x92246ff6 com.apple.QuickTimeComponents.component 7.6 (1290) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x92247000 - 0x9224dfff com.apple.print.framework.Print 218.0.2 (220.1) <6c2ddea45d9cdff9a9be0666a13e2dd4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9224e000 - 0x9224efff com.apple.Carbon 136 (136) <4177916bbf70e0ddc446f94001d54c95> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9224f000 - 0x922ceff5 com.apple.SearchKit 1.2.1 (1.2.1) <f28f8dd0f155a6453411a0c9b5702764> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x922d4000 - 0x92303fe3 com.apple.AE 402.3 (402.3) <4cb9ef65cf116d6dd424f0ce98c2d015> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x92423000 - 0x92462fef libTIFF.dylib ??? (???) <d4bcc9b9c508e53849d2d46bb6900922> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x92463000 - 0x92463ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x92464000 - 0x92874fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x92875000 - 0x928efff8 com.apple.print.framework.PrintCore 5.5.3 (245.3) <98633ef67d419c1b02f56556cb4d843d> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x928f0000 - 0x92931fe7 libRIP.A.dylib ??? (???) <5d0b5af7992e14de017f9a9c7cb05960> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x92932000 - 0x9293eff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x92974000 - 0x9297bfff com.apple.agl 3.0.9 (AGL-3.0.9) <2f39c480cfcee9358a23d61b20a6aa56> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9297c000 - 0x92afcfef com.apple.CoreAUC 3.02.0 (3.02.0) <e9c0220542fac5c62ef3b79aa791252f> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x92b6c000 - 0x92c1effb libcrypto.0.9.7.dylib ??? (???) <75b80bff0d5cfaf10b6b6fe982da3578> /usr/lib/libcrypto.0.9.7.dylib
    0x92ce9000 - 0x92d04ffb libPng.dylib ??? (???) <0d6b991afc831ea06f2958e5933d33dd> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x92d05000 - 0x92d24ffa libJPEG.dylib ??? (???) <b822342bcc764c83d4557a8b67fa0c1c> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x92d2b000 - 0x92eaafff com.apple.AddressBook.framework 4.1.1 (699) <60ddae72a1df8ddbc5c53df92f372b76> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x92ebf000 - 0x9325cfef com.apple.QuartzCore 1.5.7 (1.5.7) <2fed2dd7565c84a0f0c608d41d4d172c> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9325d000 - 0x932e7fef com.apple.DesktopServices 1.4.7 (1.4.7) <c64f04641052fdaa0f0cdee3564a0fd3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x932f4000 - 0x93336fef com.apple.NavigationServices 3.5.2 (163) <72cdc9d21f6690837870923e7b8ca358> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93337000 - 0x933e7fff edu.mit.Kerberos 6.0.12 (6.0.12) <685cc018c133668d0d3ac6a1cb63cff9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x9342d000 - 0x9342dffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x938e9000 - 0x9398cff3 com.apple.QuickTimeImporters.component 7.6 (1290) /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x9398d000 - 0x9398dffa com.apple.CoreServices 32 (32) <373d6a888f9204641f313bc6070ae065> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x93a96000 - 0x93a9dff7 libCGATS.A.dylib ??? (???) <386dce4b28448fb86e33e06ac466f4d8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x93a9e000 - 0x93aa0fff com.apple.CrashReporterSupport 10.5.5 (159) <4ca9b6643fcbafd76424a46d162363eb> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x93aa1000 - 0x93b6fff3 com.apple.JavaScriptCore 5525.26 (5525.26.2) <69e219e81bc886a94c4d4b310d393ab9> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x93b70000 - 0x94210fff com.apple.CoreGraphics 1.407.2 (???) <3a91d1037afde01d1d8acdf9cd1caa14> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x94211000 - 0x9429cfff com.apple.framework.IOKit 1.5.1 (???) <f9f5f0d070e197a832d86751e1d44545> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9429d000 - 0x9476ef3e libGLProgrammability.dylib ??? (???) <5d283543ac844e7c6fa3440ac56cd265> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x9476f000 - 0x947ccffb libstdc++.6.dylib ??? (???) <f75e5133d72769de5ce6c06153fc65f6> /usr/lib/libstdc++.6.dylib
    0x947cd000 - 0x947cdffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x947ce000 - 0x9488cfff com.apple.WebKit 5525.27 (5525.27.1) <a15e548666c9a463d61be1f114b2fa27> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9488d000 - 0x94898fe7 libCSync.A.dylib ??? (???) <e6aceed359bd228f42bc1246af5919c9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94899000 - 0x948d3ffe com.apple.securityfoundation 3.0.1 (35844) <2fbb6a1177ef98350b8aefc60737ba0e> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x948d4000 - 0x9490bfff com.apple.SystemConfiguration 1.9.2 (1.9.2) <eab546255ac099b9616df999c9359d0e> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x94936000 - 0x94939fff com.apple.help 1.1 (36) <1a25a8fbb49a830efb31d5c0a52939cd> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9493a000 - 0x949c6ff7 com.apple.LaunchServices 290.3 (290.3) <6f9629f4ed1ba3bb313548e6838b2888> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x949c7000 - 0x94b95ff3 com.apple.security 5.0.4 (34102) <55dda7486df4e8e1d61505be16f83a1c> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x94b96000 - 0x94e9efff com.apple.HIToolbox 1.5.4 (???) <3747086ba21ee419708a5cab946c8ba6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x94e9f000 - 0x94ec3fff libxslt.1.dylib ??? (???) <0a9778d6368ae668826f446878deb99b> /usr/lib/libxslt.1.dylib
    0x94ec4000 - 0x94efafef libtidy.A.dylib ??? (???) <5351215b54226cc47eb1cd4b011cc2f3> /usr/lib/libtidy.A.dylib
    0x94efb000 - 0x95062ff3 libSystem.B.dylib ??? (???) <d68880dfb1f8becdbdac6928db1510fb> /usr/lib/libSystem.B.dylib
    0x95063000 - 0x9519bff7 libicucore.A.dylib ??? (???) <18098dcf431603fe47ee027a60006c85> /usr/lib/libicucore.A.dylib
    0x9519c000 - 0x954c1fe2 com.apple.QuickTime 7.6.0 (1290) <bc0920abbbaad03f5513ac7ffbd30633> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x955c4000 - 0x955c6ff5 libRadiance.dylib ??? (???) <82d606c49f5dc77231f9d0e2be9ed6ab> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x955c7000 - 0x955d0fff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <da2d8411921a3fd8bc898dc753b7f3ee> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x955e3000 - 0x95601ff3 com.apple.DirectoryService.Framework 3.5.5 (3.5.5) <f8931f64103c8a86b82e9714352f4323> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9564f000 - 0x95795ff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <b407f06ff9b6893899e2e399cb65c953> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x95796000 - 0x9579bfff com.apple.CommonPanels 1.2.4 (85) <c135f02edd6b2e2864311e0b9d08a98d> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9579d000 - 0x95830ff3 com.apple.ApplicationServices.ATS 3.4 (???) <8c51de0ec3deaef416578cd59df38754> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x95831000 - 0x95847fff com.apple.DictionaryServices 1.0.0 (1.0.0) <7d20b8d1fb238c3e71d0fa6fda18c4f7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x95848000 - 0x958a4ff7 com.apple.htmlrendering 68 (1.1.3) <1c5c0c417891b920dfe139385fc6c155> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x958a5000 - 0x958dffe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x958e0000 - 0x95946ffb com.apple.ISSupport 1.7 (38.2) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x95947000 - 0x9595fff7 com.apple.CoreVideo 1.6.0 (20.0) <c0d869876af51283a160cd2224a23abf> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x959b2000 - 0x959b7fff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x959b8000 - 0x959e5feb libvDSP.dylib ??? (???) <4daafed78a471133ec30b3ae634b6d3e> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x95a59000 - 0x95b39fff libobjc.A.dylib ??? (???) <400e943f9e8a678eea22a1d1205490ee> /usr/lib/libobjc.A.dylib
    0x95b3a000 - 0x95b3affd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x95b3b000 - 0x95bc2ff7 libsqlite3.0.dylib ??? (???) <eeedc8bf6881ac9f2c1954b1c8037720> /usr/lib/libsqlite3.0.dylib
    0x95bc3000 - 0x95bd1ffd libz.1.dylib ??? (???) <a98b3b221a72b54faf73ded3dd7000e5> /usr/lib/libz.1.dylib
    0x95bd2000 - 0x95bd6fff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x95bd7000 - 0x95c7efeb com.apple.QD 3.11.54 (???) <c31150b40fcc27c195de40f0ae138666> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x95c7f000 - 0x962d0fff com.apple.WebCore 5525.26 (5525.26.6) <8676962ab93f003cf9b10748725c1bc2> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x962d1000 - 0x9668ffea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x96690000 - 0x966e9ff7 libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x966ea000 - 0x967b5fff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x967b6000 - 0x967befff com.apple.DiskArbitration 2.2.1 (2.2.1) <2664eeb3a4d0c95a21c089892a0ae8d0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x967bf000 - 0x968a0ff7 libxml2.2.dylib ??? (???) <d69560099d9eb32ba7f8a17baa65a28d> /usr/lib/libxml2.2.dylib
    0x968a1000 - 0x968abfeb com.apple.audio.SoundManager 3.9.2 (3.9.2) <df077a8048afc3075c6f2d9e7780e78e> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x968ac000 - 0x968bcfff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <273d96ff861dc68be659c07ef56f599a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x968bd000 - 0x968c1fff libGIF.dylib ??? (???) <7714ae24eb64b48fa719fb99bcbe34f3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x968c2000 - 0x968d1fff libsasl2.2.dylib ??? (???) <bb7971ca2f609c070f87786a93d1041e> /usr/lib/libsasl2.2.dylib
    0x968d7000 - 0x96931ff7 com.apple.CoreText 2.0.4 (???) <f9a90116ae34a2b0d84e87734766fb3a> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x96932000 - 0x96932ffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x96933000 - 0x9695efe7 libauto.dylib ??? (???) <2e44c523b851e8e25f05d13a48070a58> /usr/lib/libauto.dylib
    0x9695f000 - 0x9715dfef com.apple.AppKit 6.5.6 (949.43) <a3a300499bbe4f1dfebf71d752d01916> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x971bc000 - 0x971ccffc com.apple.LangAnalysis 1.6.4 (1.6.4) <bc7eb703ddc37bf85adf93e35efd3947> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x971cd000 - 0x97216fef com.apple.Metadata 10.5.2 (398.25) <e0572f20350523116f23000676122a8d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x97217000 - 0x97294fef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0xba900000 - 0xba916fff libJapaneseConverter.dylib ??? (???) <3b66e5bcd253a69d0f932d6690f83c0a> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe2 libKoreanConverter.dylib ??? (???) <c3837699acc5b3c6c993ea5ade9bd247> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib
    I just copy and paste whatever in the report. it is a bit long. But I wonder my SD is 5.1.12 version. It is compatible with safari 4. how come is it not compatible with 10.5.6??

  • I can't download files or videos, I get the response "The object is blocked" As far as I know I have removed or disabled all security programs

    I am unable to play streaming video, and can't download anything. I have removed or disabled all of my security programs.
    == This happened ==
    Every time Firefox opened
    == About 2 weeks ago, downloaded most recent Windows service pack

    HI Phillip,
    On the other I am wholly unable to download the file from either Safari or Firefox
    Let's try one browser at a time. Open a Finder window. Select your Home folder in the Sidebar on the left. Then open the Library folder then the Safari folder. Move the Downloads.plist file from the Safari folder to the Trash. Relaunch Safari.
    If that didn't help, from your Safari menu bar click Safari / Reset Safari. Select the top 7 buttons, click Reset.
    Now launch Firefox. From the Firefox menu bar click Firefox / Preferences then select the
    Advanced tab then the Network tab. Click: Clear Now.
    Relaunch Firefox.
    If nothing above has helped either browser, login to your Mac to another user account. Try Safari there. If you can't download files from Safari there, then it's a system wide problem. Boot from your install disc. Run Disk Utility to verify and if necessary, repair any errors on the startup disk.
    Help here for Disk Utility: The Repair functions of Disk Utility: what's it all about?
    Carolyn

  • How do I can I install MS Office 2008 on a MacBook Air w/ a valid product key? Can I download files somewhere?

    How do I can I install MS Office 2008 on a MacBook Air w/ a valid product key? Can I download files somewhere?
    Here's the scenario....
    I've got a brand new gift MacBook Air 11" and I want to install Microsoft Office 2008 since I have a valid key license that's given by my nephew. Do I have any other options here?  Can I download all the necessary files from somewhere officially and just enter the Product Key to install what I need?  Are there other possible options? 
    Your help would be much appreciated.
    Thank you very much.

    You can use a remote disc to download Office as shown here:
    http://support.apple.com/kb/HT5287
    But please note several cautions:
    1.  The product key is intended for one machine only.  You would have to be the sole user.
    2.  Office 2008 is now very close to being obsolete.  Office 2011 has been out for years, and Office 365 is available for your Mac as well.

  • How can i download file from a pageflow portlet in Webloigc Portal?

    How can i download file from a portlet in Webloigc Portal?
    My Question is, when i download files used codes in a pageflow listed below,
    it didn't work. but in non-portal environments, it worked well.
    How can I download a file from a portlets in portal??
    Thx in advanced.
    this.getResponse().setContentType ( "application/ms-excel" ) ;
    this.getResponse().setHeader ( "Content-Disposition" ,"attachment;filename="
    +new String("Excel.xls".getBytes(),"iso-8859-1")) ;
    sth.write(this.getResponse().getOutputStream());

    i always use an old fashioned method when i have to do this, i create a new jsp that contains a scriptlet that writes to the ServletOutputStream.
    <i>outputWriter.jsp</i>
    // define your own class to get file here, otherwiser use netui-data:callControl tag
    <code><pre>
    File file = FileControl.getFile(fileName);
    String fileName = (String) request.getParameter("fileName");
    response.setContentType(file.getContentType());
    ServletOutputStream sos = response.getOutputStream();
    InputStream is = file.getInputStream();
    for(int i = 0; (i = is.read()) != -1;)
    sos.write(i);
    sos.close();
    </pre>
    </code>
    i then call this jsp from the jsp to which i forward in my action using a simple url rewrite with file name on the url.
    <a href=outputWriter.jsp?fileName=nameOfFileToDownload                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • CS6 can not save files over 2GB???????

    I need to make a giant poster at 6ft wide x 5 ft tall. I created a blank document in CS6 at 200ppi. I created some text, and imported a couple of 25MB images. I am unable to save the file as a .PSD because it indicates that PS can not save files over 2GB.
    1. How did this file grow to become over 2GB?
    2. Why can PS not save a .PSD over 2GB?
    3. What do you do if you need to create a large format print such as this?
    Thanks in advance.

    Very true.
    However, Jeff knows exactly what he's doing and he's very, very good at it.  If your image were fortunate enough to end up being printed by Jeff Schewe, he'd be able to tell you exactly what kind of an image file he wants from you. 
    Always check with the printer.

Maybe you are looking for

  • Error while using PayloadZipBean module

    hi, For sending the data in zipped format in JDBC Adapter i used "PayloadZipBean" module. While Communication channel Monitoring at Receiver end I am getting this Error:-- "Message processing failed. Cause: com.sap.engine.services.jndi.persistent.exc

  • ABAP query vs ABAP report

    Hi Experts,    I have a question regarding ABAP query  and report.   what is the difference between ABAP query and ABAP report  ?   will the query be more efficient than abap report ?   Is there a standard SAP report that could replace a query? Thank

  • EARLY DELTA INITIALIZATION IN LO COCKPIT

    HI EVERYBODY, SORRY FOR ASKING A SILLY QUESTION --BUT I REALLY NEED AN EXPLANAITION <b>WHAT IS EARLY DELTA INITIALIZATION</b>????(can we select this method the same way we do for Delta init) I KNOW THAT BEFORE DOING DELTA WE WILL DO DELTA INITIALIZAT

  • VMS Problem

    Hi Dear, I have my Nokia N72. I installed the VMS software in my mobile. But this is not woring well and is not uninstalling the software in the mobile. My mobile # is not working. Please tell me about this software and trick the uninstalling. Thanks

  • I'm afraid I have lost the contents of my former iWeb

    I purchased iLife 08 today and loaded iWeb and without thinking I clicked "yes" to changing the cookies/ keychain thingie. However I don't want to lose my previous iWeb which i've had for over a year. I just want to add the additional site. Before I