PHP Sendmail [SOLVED]

I am trying to use a PHP script to send mail with the PHP mail() function. Looking at phpinfo(), I see "/usr/sbin/sendmail -t -i" for the local and master values of sendmail_path. However, if I manually issue "/usr/sbin/sendmail -t -i" as root, I receive the error "-bash: /usr/sbin/sendmail: No such file or directory". Do I need to install sendmail? I cannot find a package for it on Arch... Does anyone know what I am doing wrong?
Last edited by tony5429 (2008-04-25 18:41:03)

Try postfix, courier-mta or ssmtp.  All of them have a sendmail binary.  If you don't need a full-blown mta, ssmtp may be the best bet, but any will do.

Similar Messages

  • Php sendmail issue

    Has anyone been able to get php sendmail to work on Yosemite? If so is there any complete documentation or hey how about a script to fix it. That should have been part of Server app.

    Hah, lol, my bad, didn't think about that. Worked when I did.

  • Php sendmail ローカル環境でのテスト

    サンエツと申します。
    webサイトの構築が目的です。
    1.DreamWeaberを購入検討をしておりますが、phpのsendmailでローカル環境からメール送信のテストはできるのでしょうか?
    2.ftpのログインなどもローカル環境でテストできますか?
    3.ftpのローカル環境でファイルのアップロードテストなどは出来ますか?
    上記は、Aptana Studio 3ではできましたが、Microsoft Expression Web 4ではできませんでした。
    当方の環境は
    win7
    xampp
    になっています。
    どうぞよろしくお願いします。

    On 20 Jan 2009 in macromedia.dreamweaver, Alan wrote:
    > as far as i know, you would have to send html email
    headers, then
    > use html or css to style the text to bold.
    That's correct.
    >
    http://www.google.com/search?hl=en&ie=ISO-8859-1&q=tutorial+send+html
    > +email+ php
    In general for all things PHP, your first stop should be
    http://www.php.net/ In this case,
    see Example 4 at:
    http://www.php.net/manual/en/function.mail.php
    Joe Makowiec
    http://makowiec.net/
    Email:
    http://makowiec.net/contact.php

  • PHP Sendmail BOLD Font

    Hi there,
    I'm using a PHP sendmail script, although I want some of the
    writing to be emailed in BOLD font, it isn't the field results,
    it's the bit after the 'sprint' in the script I'd ideally like to
    be bold.
    Would be fanastic if anyone could share their knowledge.
    Regards,
    Kristopher (UK).

    On 20 Jan 2009 in macromedia.dreamweaver, Alan wrote:
    > as far as i know, you would have to send html email
    headers, then
    > use html or css to style the text to bold.
    That's correct.
    >
    http://www.google.com/search?hl=en&ie=ISO-8859-1&q=tutorial+send+html
    > +email+ php
    In general for all things PHP, your first stop should be
    http://www.php.net/ In this case,
    see Example 4 at:
    http://www.php.net/manual/en/function.mail.php
    Joe Makowiec
    http://makowiec.net/
    Email:
    http://makowiec.net/contact.php

  • PHP sendmail in Dreamweaver

    Hi Experts,
    my site created in Dreamweaver's HTML looks ok, however the
    PHP script cannot capture the Enquiry data to send to the my target
    email addr. Is there some setting I had missed out, or myscrpt is
    wrong. I had enclosed my PHP scripts for your reference, pls kindly
    adv where could have gone wrong. Tks.....!
    <?php
    $fname = $_POST['FirstName'];
    $Job = $_POST['Designation'];
    $Comp = $_POST['Company'];
    $email = $_POST['Email'] ;
    $comments = $_POST['Comments'] ;
    $to = "[email protected]";
    $re = "Enquiry";
    $msg = $comments;
    mail( $to, $re, $msg);
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml">
    <head><title> Your Enquiry
    </title></head>
    <body>
    Thank you <?php echo($fname); ?> from <?php
    echo($Comp); ?>. We will follow-up with your enquiry soon.
    </body>
    </html>

    Your script is not using most of the data you have captured.
    For example,
    you are not using -
    > $fname = $_POST['FirstName'];
    > $Job = $_POST['Designation'];
    > $Comp = $_POST['Company'];
    > $email = $_POST['Email'] ;
    It is only sending $msg (which is copied from $comments).
    You would need to append each of these variables to the $msg
    string.
    Be aware that you are open to hacking by using this very
    simple sendmail
    script. At the least, you should remove HTML and carriage
    return characters
    from the comments field.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Puzzle Ice" <[email protected]> wrote in
    message
    news:fdq029$dat$[email protected]..
    > Hi Experts,
    >
    > my site created in Dreamweaver's HTML looks ok, however
    the PHP script
    > cannot
    > capture the Enquiry data to send to the my target email
    addr. Is there
    > some
    > setting I had missed out, or myscrpt is wrong. I had
    enclosed my PHP
    > scripts
    > for your reference, pls kindly adv where could have gone
    wrong.
    > Tks.....!
    >
    > <?php
    > $fname = $_POST['FirstName'];
    > $Job = $_POST['Designation'];
    > $Comp = $_POST['Company'];
    > $email = $_POST['Email'] ;
    > $comments = $_POST['Comments'] ;
    >
    > $to = "[email protected]";
    > $re = "Enquiry";
    > $msg = $comments;
    > mail( $to, $re, $msg);
    > ?>
    >
    > <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN"
    > "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    > <html xmlns="
    http://www.w3.org/1999/xhtml">
    > <head><title> Your Enquiry
    </title></head>
    > <body>
    > Thank you <?php echo($fname); ?> from <?php
    echo($Comp); ?>. We will
    > follow-up
    > with your enquiry soon.
    >
    > </body>
    > </html>
    >
    >

  • Slight PHP Sendmail Problem

    Hello there,
    I have managed to find a send-mail script in PHP in order for
    site users to be able to send me their comments, questions, etc.
    However, I receive the email but I only receive what the user has
    selected in the drop down menu, I can change this to any of the
    fields but my problem is, I'm wanting it to email me ALL the
    fields, not just one. I've attached the following PHP code below.
    I'd be very grateful if anyone could help.
    Regards,
    Kristopher (UK).

    <?
    $message = "An email sez: ";
    foreach($_POST as $key => $value) {
    $message .= $key . ": " . $value;
    mail( "[email protected]", "Feedback Form Results",
    $message, "From: $email" );
    header( "Location:
    http://www.google.co.uk" );
    ?>
    Be aware that your use of sendmail without any security
    measures makes you a
    juicy target for email injection techniques -
    http://www.nyphp.org/phundamentals/email_header_injection.php
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Coxdabd" <[email protected]> wrote in
    message
    news:gb967k$9qr$[email protected]..
    > Hello there,
    >
    > I have managed to find a send-mail script in PHP in
    order for site users
    > to be
    > able to send me their comments, questions, etc. However,
    I receive the
    > email
    > but I only receive what the user has selected in the
    drop down menu, I can
    > change this to any of the fields but my problem is, I'm
    wanting it to
    > email me
    > ALL the fields, not just one. I've attached the
    following PHP code below.
    >
    > I'd be very grateful if anyone could help.
    >
    > Regards,
    >
    > Kristopher (UK).
    >
    > <?
    > $name = $_REQUEST['name'] ;
    > $message = $_REQUEST['message'] ;
    > $select = $_REQUEST['select'] ;
    >
    > mail( "[email protected]", "Feedback Form
    Results",
    > $message, "From: $email" );
    > header( "Location:
    http://www.google.co.uk" );
    > ?>
    >

  • Apache / PHP / sendmail

    I moved my forums from a hosting provider to my home Arch install.  Currently emails are not being sent out.  I noticed that /usr/sbin/sendmail didn't exist so installed postfix which resolved that issue.  However emails are still not working. Any ideas what the issue might be or at least where the error logs would be?

    Hi.
    When you say your "home Arch install" do you mean a server at your home location? If yes then I guess the most likely culprit is either:
    a) Your IP is blacklisted (Quite possible with consumer grade ISPs)
    b) Your ISP is messing something up (Some ISPs disallow email traffic)
    c) Your DNS isn't configured correctly and foreign servers refuse to deliver our mail.

  • PHP Sendmail Small Problem

    Hi there,
    I'm using a PHP send mail script to email the form results
    over to me. For the message, I want several fields to be in the
    actual message. I've seen that you simply need to insert the '.'
    However this simply seems to put the additional fields on the end
    of the previous. I want it as a separate paragraph as it were. The
    code is below:

    On Sat, 10 Jan 2009 15:25:20 +0000 (UTC), "Coxdabd"
    <[email protected]> wrote:
    > <?php
    > $name = $_REQUEST['name'] ;
    > $message = $_REQUEST['telephone'] ;
    > $message .= $_REQUEST['required'] ;
    > $message .= $_REQUEST['date'] ;
    > $message .= $_REQUEST['time'] ;
    >
    > mail( "[email protected]", "Booking Request",
    > $message, "From: $email" );
    > header( "Location:
    http://www.me.com" );
    > ?>
    Try it this way:
    <?php
    $name = $_REQUEST['name'] ;
    $message = sprintf("Telephone: %s\n",$_REQUEST['telephone']);
    $message .= sprintf("Required: %s\n",$_REQUEST['required']);
    $message .= sprintf("Date: %s\n",$_REQUEST['date']);
    $message .= sprintf("Time: %s\n",$_REQUEST['time']);
    mail( "[email protected]", "Booking Request",
    $message, "From: $email" );
    header( "Location:
    http://www.me.com" );
    ?>
    Currenly your form is very insecure. You should see some of
    these:
    http://www.google.com/search?q=php+mail+header+injection
    Gary

  • Pear PHP Warnings [SOLVED]

    I recently built a web-server and followed the arch wiki docs to complete the LAMP installation and everything ran smoothly.
    However, now when I upgrade pear I get the following warnings:
    # pear upgrade
    PHP Warning:  Module 'mcrypt' already loaded in Unknown on line 0
    PHP Warning:  Module 'mysql' already loaded in Unknown on line 0
    anyone else run into this glitch?
    Last edited by monash (2011-11-11 03:17:42)

    Many thanks SidK!
    I checked /etc/php/conf.d and found i had left behind an old custom.ini containing:
    extension=mcrypt.so
    extension=mysql.so
    removed the /etc/php/conf.d/custom.ini and all is well with pear upgrade :-)

  • Big PHP problem (SOLVED)

    Hello. I have a big problem. I installed php. For an example, script <? print "hello"; ?> working good, but script like that:
    <? print "labas"; ?>
    <?php
    session_start();
    include("config.php");
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="content-type" content="text/html; charset=windows-1257" />
    <title>4Friends</title>
    <meta name="keywords" content="" />
    <meta name="description" content="" />
    <link href="default.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="header">
    <div id="logo">
    <h1><a href="#">Hello</a></h1>
    <h2><a href="?">Bla bla bla </a></h2>
    </div>
    </div>
    <div id="menu">
    <ul>
    <li class="first"><a href="#" title="">News</a></li>
    <li><a href="#" title="">Menu</a></li>
    <li><a href="#" title="">Skyrelis 1 </a></li>
    <li><a href="#" title="">Skyrelis 2 </a></li>
    <li><a href="#" title="">Skyrelis 3 </a></li>
    </ul>
    </div>
    <div id="content">
    <div id="sidebar">
    <div id="login" class="boxed">
    <h2 class="title">Wah</h2>
    <div class="content">
    <? include("nevermind :)"); ?>
    </div>
    </div>
    <div id="updates" class="boxed">
    <h2 class="title">Bla bla bla </h2>
    <div class="content">
    <ul>
    <li>
    <h3>Balandio 20, 2007</h3>
    <p><a href="#">Pew pew</a></p>
    </li>
    </ul>
    </div>
    </div>
    <div id="partners" class="boxed">
    <h2 class="title">Aaa</h2>
    <div class="content"></div>
    </div>
    </div>
    <?
    PHP CODE WITCH DOESNT MATTER HERE
    ?>
    </div>
    <div id="footer"><p>
    <a href="http://validator-test.w3.org/check?uri=referer"><img
    src="http://www.w3.org/Icons/valid-xhtml10-blue"
    alt="Valid XHTML 1.0 Strict" height="31" width="88" /></a>
    </p>
    <p>
    <a href="http://jigsaw.w3.org/css-validator/">
    <img style="border:0;width:88px;height:31px"
    src="http://jigsaw.w3.org/css-validator/images/vcss"
    alt="Valid CSS!" />
    </a>
    </p>
    </div>
    </body>
    </html>
    <?
    sql_disconn();
    ?>
    Displays only white screen. short_open_tag is on in php.ini. Can anyone say what is the problem? I tryed to run this script on windows WAMP, and this goes good.
    Last edited by neXTPeer (2007-07-28 08:09:09)

    neXTPeer wrote:
    ralvez wrote:
    It's got to be some misconfiguration on  your end. I just put the file in my server and works fine.
    R
    Am. I still don't get it what is the problem.
    The whole extent of your code is 5 php statements and the rest is HTML but you get a blank page ... take the php code out and see if the HTML shows. Make sure you set the permissions of that file to 744, and test. You should be able to see the html document. If you do not see anything then type on a console (as root) "tail -f /var/log/httpd/error_log" so  you can see the errors that the server returns.
    If HTML works, then begin to add the php code one block at a time  (you only have 5 so that should not be too hard) until it fails and then analyze the logs to see what upsets your server.
    Hope this helps.
    R

  • Roundcube not working after last php update [SOLVED]

    After the last php update my roundcubemail stopped working.  The log-in page loads and after attempting to log in I get the following error:
    IMAP Error in /usr/share/webapps/roundcubemail/program/lib/Roundcube/rcube_imap.php (184): Login failed for [email protected] from 192.168.1.1. Could not connect to ssl://localhost:993: Unknown reason (fsockopen() function disabled?)
    Last edited by whahn1983 (2014-09-19 18:46:11)

    I fixed it yesterday. I modified the PKGBUILD to get the upstream fix.
    # $Id$
    # Maintainer: Sergej Pupykin <[email protected]>
    pkgname=roundcubemail
    pkgver=1.0.2.3b55da
    pkgrel=1
    pkgdesc="A PHP web-based mail client"
    arch=('any')
    url="http://www.roundcube.net"
    license=('GPL')
    depends=('php')
    optdepends=('python2')
    backup=('etc/webapps/roundcubemail/.htaccess'
    'etc/webapps/roundcubemail/apache.conf')
    install=roundcubemail.install
    options=('!strip' 'emptydirs')
    source=("${pkgname}::git+https://github.com/roundcube/roundcubemail.git#commit=9a498212446f6c9a186df5652a7625526b590b78"
    apache.conf)
    md5sums=('SKIP'
    'f11b17e2a80b383cde4af963fb307541')
    prepare() {
    cd ${srcdir}/${pkgname}
    sed -i \
    -e "s|RCUBE_INSTALL_PATH . 'temp.*|'/var/cache/roundcubemail';|" \
    -e "s|RCUBE_INSTALL_PATH . 'logs.*|'/var/log/roundcubemail';|" \
    config/defaults.inc.php \
    program/lib/Roundcube/rcube_config.php
    package() {
    mkdir -p ${pkgdir}/etc/webapps/roundcubemail
    mkdir -p ${pkgdir}/usr/share/webapps
    mkdir -p ${pkgdir}/var/log
    cd ${pkgdir}/usr/share/webapps
    cp -ra ${srcdir}/${pkgname} roundcubemail
    cd roundcubemail
    mv .htaccess $pkgdir/etc/webapps/roundcubemail/
    ln -s /etc/webapps/roundcubemail/.htaccess .htaccess
    mv config $pkgdir/etc/webapps/roundcubemail/
    ln -s /etc/webapps/roundcubemail/config config
    install -dm0750 $pkgdir/var/{log,cache}/roundcubemail
    install -Dm0644 $srcdir/apache.conf $pkgdir/etc/webapps/roundcubemail/apache.conf
    # install -dm0755 $pkgdir/etc/php/conf.d/
    # cat <<EOF >$pkgdir/etc/php/conf.d/$pkgname.ini
    #open_basedir = ${open_basedir}:/etc/webapps/roundcubemail:/usr/share/webapps/roundcubemail:/var/log/roundcubemail:/var/cache/roundcubemail
    #EOF
    rm -rf temp logs
    Then I added these values to my roundcube config:
    // IMAP socket context options
    // See http://php.net/manual/en/context.ssl.php
    // The example below enables server certificate validation
    //$config['imap_conn_options'] = array(
    // 'ssl' => array(
    // 'verify_peer' => true,
    // 'verify_depth' => 3,
    // 'cafile' => '/etc/openssl/certs/ca.crt',
    $config['imap_conn_options'] = array(
    'ssl' => array(
    'verify_peer' => false,
    'verfify_peer_name' => false,
    // SMTP connection timeout, in seconds. Default: 0 (use default_socket_timeout)
    // Note: There's a known issue where using ssl connection with
    // timeout > 0 causes connection errors (https://bugs.php.net/bug.php?id=54511)
    $config['smtp_timeout'] = 5;
    // SMTP socket context options
    // See http://php.net/manual/en/context.ssl.php
    // The example below enables server certificate validation, and
    // requires 'smtp_timeout' to be non zero.
    // $config['smtp_conn_options'] = array(
    // 'ssl' => array(
    // 'verify_peer' => true,
    // 'verify_depth' => 3,
    // 'cafile' => '/etc/openssl/certs/ca.crt',
    $config['smtp_conn_options'] = array(
    'ssl' => array(
    'verify_peer' => false,
    'verify_peer_name' => false,
    It works like a charm.

  • I keep opening Youtube on Safari but also Kerbal Space Program and it quits

    Hi guys i have got Safari and recently it keeps quitting when i open youtube, but not only youtube. I have also downloaded the Kerbal Space Program demo and it keeps quitting that also. Here is the message error for the Kerbal Space Program error. I assume both problems are linked as they both started around the same time and continue with the same consistancy.
    Process:         Kerbal Space Program Demo [1890]
    Path:            /Applications/KSP_osx/KSP.app/Contents/MacOS/Kerbal Space Program Demo
    Identifier:      unity.Squad.Kerbal Space Program Demo
    Version:         Unity Player version 4.0.1f2 (4.0.1f2)
    Code Type:       X86 (Native)
    Parent Process:  launchd [177]
    Date/Time:       2013-05-05 18:29:59.233 +0100
    OS Version:      Mac OS X 10.7.5 (11G63)
    Report Version:  9
    Interval Since Last Report:          105507 sec
    Crashes Since Last Report:           51
    Per-App Interval Since Last Report:  87606 sec
    Per-App Crashes Since Last Report:   24
    Anonymous UUID:                      014EA53E-A5DC-4D20-A241-9CB2AE9BAFC9
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x000000000000008c
    VM Regions Near 0x8c:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/KSP_osx/KSP.app/Contents/MacOS/Kerbal Space Program Demo
        __TEXT                 0000000000001000-0000000000bb6000 [ 11.7M] r-x/rwx SM=COW  /Applications/KSP_osx/KSP.app/Contents/MacOS/Kerbal Space Program Demo
    Application Specific Information:
    objc[1890]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   unity.Squad.Kerbal Space Program Demo          0x009f2863 operator delete(void*, void*) + 8465519
    1   unity.Squad.Kerbal Space Program Demo          0x009f01a5 operator delete(void*, void*) + 8455601
    2   com.apple.AppKit                        0x9bf4f662 -[NSApplication _modalSession:sendEvent:] + 550
    3   com.apple.AppKit                        0x9bf4f22c -[NSApplication _realDoModalLoop:peek:] + 638
    4   com.apple.AppKit                        0x9bf4a481 -[NSApplication _doModalLoop:peek:] + 69
    5   com.apple.AppKit                        0x9bf4ef08 -[NSApplication runModalForWindow:] + 258
    6   com.apple.AppKit                        0x9bf3f317 -[NSAlert runModal] + 277
    7   com.apple.AppKit                        0x9bcb0964 __-[NSPersistentUIManager promptToIgnorePersistentState]_block_invoke_1 + 797
    8   com.apple.AppKit                        0x9bf4f9d8 -[NSApplication _suppressFinishLaunchingFromEventHandlersWhilePerformingBlock:] + 74
    9   com.apple.AppKit                        0x9bcb0624 -[NSPersistentUIManager promptToIgnorePersistentState] + 187
    10  com.apple.AppKit                        0x9bc81586 -[NSApplication _reopenWindowsAsNecessaryIncludingRestorableState:registeringAsReady:completion Handler:] + 178
    11  com.apple.AppKit                        0x9bc814cb -[NSApplication(NSAppleEventHandling) _reopenWindowsIfNecessaryWithAppleEvent:completionHandler:] + 260
    12  com.apple.AppKit                        0x9bc813ae -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 259
    13  com.apple.AppKit                        0x9bc810d6 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 377
    14  com.apple.CoreFoundation                0x9c9471c8 -[NSObject performSelector:withObject:withObject:] + 72
    15  com.apple.Foundation                    0x9b3560c2 __-[NSAppleEventManager setEventHandler:andSelector:forEventClass:andEventID:]_block_invoke_1 + 121
    16  com.apple.Foundation                    0x9b354e75 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 476
    17  com.apple.Foundation                    0x9b354c49 _NSAppleEventManagerGenericHandler + 234
    18  com.apple.AE                            0x9504a045 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 202
    19  com.apple.AE                            0x95033b67 _ZL25dispatchEventAndSendReplyPK6AEDescPS_ + 43
    20  com.apple.AE                            0x95033a54 aeProcessAppleEvent + 253
    21  com.apple.HIToolbox                     0x902eba86 AEProcessAppleEvent + 103
    22  com.apple.AppKit                        0x9bc7e157 _DPSNextEvent + 1301
    23  com.apple.AppKit                        0x9bc7d752 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113
    24  com.apple.AppKit                        0x9bc79ac1 -[NSApplication run] + 911
    25  com.apple.AppKit                        0x9bf0aac5 NSApplicationMain + 1054
    26  unity.Squad.Kerbal Space Program Demo          0x009f095f operator delete(void*, void*) + 8457579
    27  unity.Squad.Kerbal Space Program Demo          0x0001d29d 0x1000 + 115357
    28  unity.Squad.Kerbal Space Program Demo          0x0001d1cc 0x1000 + 115148
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x93c1c90a kevent + 10
    1   libdispatch.dylib                       0x90adce04 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                       0x90adb853 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x93c1c02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9b9d2ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x9b9d46fe start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x93c1c02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9b9d2ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x9b9d46fe start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x93c1c02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9b9d2ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x9b9d46fe start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib                  0x93c1c02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9b9d2ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x9b9d46fe start_wqthread + 30
    Thread 6:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x93c19c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x93c191f6 mach_msg + 70
    2   com.apple.CoreGraphics                  0x9a1d9df5 _CGSSynchronizeWindowBackingStore + 167
    3   com.apple.CoreGraphics                  0x9a19c226 _CGSLockWindow + 4158
    4   com.apple.CoreGraphics                  0x9a19aee3 CGSDeviceLock + 317
    5   libRIP.A.dylib                          0x9757a305 ripd_Lock + 62
    6   libRIP.A.dylib                          0x9757f8b5 ripl_BltImage + 422
    7   libRIP.A.dylib                          0x9757f497 ripc_RenderImage + 269
    8   libRIP.A.dylib                          0x9757f16a ripc_EndLayer + 899
    9   com.apple.CoreGraphics                  0x9a1b44a5 CGContextEndTransparencyLayer + 89
    10  com.apple.AppKit                        0x9bfb179e -[NSButtonCell(NSDefaultButtonIndicatorPrivate) heartBeat:] + 2378
    11  com.apple.AppKit                        0x9c019931 -[NSControl heartBeat:] + 43
    12  com.apple.AppKit                        0x9c3b3c23 -[NSWindow(NSWindow_Theme) heartBeat:] + 260
    13  com.apple.AppKit                        0x9bec21e2 -[NSUIHeartBeat _heartBeatThread:] + 1127
    14  com.apple.Foundation                    0x9b378e25 -[NSThread main] + 45
    15  com.apple.Foundation                    0x9b378dd5 __NSThread__main__ + 1582
    16  libsystem_c.dylib                       0x9b9d0ed9 _pthread_start + 335
    17  libsystem_c.dylib                       0x9b9d46de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x0111fe50  ecx: 0xbfffedf4  edx: 0x00000000
      edi: 0x0115da80  esi: 0x0115da80  ebp: 0xbfffee28  esp: 0xbfffee10
       ss: 0x00000023  efl: 0x00010246  eip: 0x009f2863   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x0000008c
    Logical CPU: 1
    Binary Images:
        0x1000 -   0xbb5fef +unity.Squad.Kerbal Space Program Demo (Unity Player version 4.0.1f2 - 4.0.1f2) <7F09FC0E-EB25-975D-8DB3-555020360A8C> /Applications/KSP_osx/KSP.app/Contents/MacOS/Kerbal Space Program Demo
      0xc99000 -   0xd46ff7  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <7B6DB792-C9E5-3772-8734-8D0052757B8C> /usr/lib/libcrypto.0.9.7.dylib
      0xd8b000 -   0xdaeffc  libssl.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <EAD01EC4-D8D7-3462-84E5-A74BEB52B456> /usr/lib/libssl.0.9.7.dylib
      0xdbc000 -  0x1052fe7 +libmono.0.dylib (??? - ???) <1CC4935E-5125-1EC1-ABCF-AAC36AAF6C26> /Applications/KSP_osx/KSP.app/Contents/Frameworks/MonoEmbedRuntime/osx/libmono. 0.dylib
    0x4041000 -  0x42b2ffb  com.apple.RawCamera.bundle (4.05 - 690) <1824B471-9CEB-3E45-BEF2-133DACDC2BAC> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x8fefe000 - 0x8ff30aa7  dyld (195.6 - ???) <3A866A34-4CDD-35A4-B26E-F145B05F3644> /usr/lib/dyld
    0x90005000 - 0x90025ff7  com.apple.RemoteViewServices (1.5 - 44.2) <11C87337-FF29-3976-A230-6387D96563C5> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x90040000 - 0x90043ff7  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <7F6C14CC-0169-3F1B-B89C-372F67F1F3B5> /usr/lib/system/libcompiler_rt.dylib
    0x90058000 - 0x9006effe  libxpc.dylib (77.19.0 - compatibility 1.0.0) <0585AA94-F4FD-32C1-B586-22E7184B781A> /usr/lib/system/libxpc.dylib
    0x90139000 - 0x90182ff7  libGLU.dylib (??? - ???) <9AF7AD51-16E3-3674-B60E-30EE499D7B46> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90183000 - 0x902d9fff  com.apple.audio.toolbox.AudioToolbox (1.7.3 - 1.7.3) <F09C7075-2C4E-3A4F-A372-95D700125513> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x902da000 - 0x90620ff3  com.apple.HIToolbox (1.9 - ???) <E5EA9EEF-3CCA-36A0-8688-DA2E64E2256C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x90621000 - 0x9062ffff  libz.1.dylib (1.2.5 - compatibility 1.0.0) <E73A4025-835C-3F73-9853-B08606E892DB> /usr/lib/libz.1.dylib
    0x908d1000 - 0x908d4ffc  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <6FFDBD60-5EC6-3EFA-996B-EE030443C16C> /usr/lib/libpam.2.dylib
    0x908d5000 - 0x908d5fff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <7EFAD88C-AFBC-3D48-BE14-60B8EACC68D7> /usr/lib/system/libdnsinfo.dylib
    0x908d6000 - 0x90913fef  libGLImage.dylib (??? - ???) <FC13D46F-69C4-3BA1-A5E8-52C2EC8B7D58> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x90914000 - 0x90914fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <4192CE7A-BCE0-3D3C-AAF7-6F1B3C607386> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x90915000 - 0x90a25fe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <34E1E3CC-7B6A-3B37-8D07-1258D11E16CB> /usr/lib/libsqlite3.dylib
    0x90ad4000 - 0x90ad9ff7  libmacho.dylib (800.0.0 - compatibility 1.0.0) <56A34E97-518E-307E-8218-C5D43A33EE34> /usr/lib/system/libmacho.dylib
    0x90ada000 - 0x90ae8fff  libdispatch.dylib (187.10.0 - compatibility 1.0.0) <1B857064-288D-3919-B81A-38E9F4D19B54> /usr/lib/system/libdispatch.dylib
    0x90aee000 - 0x90d62ff3  com.apple.CoreImage (7.99.1 - 1.0.1) <C4B2DD2A-8E45-31CD-9B25-2AC1CA252B14> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x90d63000 - 0x90d64fff  libDiagnosticMessagesClient.dylib (??? - ???) <DB3889C2-2FC2-3087-A2A2-4C319455E35C> /usr/lib/libDiagnosticMessagesClient.dylib
    0x90e07000 - 0x90e29ff8  com.apple.PerformanceAnalysis (1.11 - 11) <453463FF-7C42-3526-8C96-A9971EE07154> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x90e2a000 - 0x90e8efff  com.apple.framework.IOKit (2.0 - ???) <94827954-5906-36C4-819B-24CDAFD85C72> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90fd7000 - 0x91103ff9  com.apple.CFNetwork (520.5.1 - 520.5.1) <F3C606BF-6DCF-33CD-981B-7253C9E3113A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91115000 - 0x9119cfff  com.apple.print.framework.PrintCore (7.1 - 366.3) <EEC03CAB-7F79-3931-87FE-4DF0B767BF47> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9119d000 - 0x912aeff7  libJP2.dylib (??? - ???) <3B6A6D1C-5E4D-3814-892A-7C580E063268> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x912af000 - 0x913beff7  com.apple.DesktopServices (1.6.5 - 1.6.5) <CEC069D7-37A3-3D25-A3BB-39DE99FDA46E> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x914a9000 - 0x91533ffb  com.apple.SearchKit (1.4.0 - 1.4.0) <CF074082-64AB-3A1F-831E-582DF1667827> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x915b9000 - 0x91600ff5  com.apple.opencl (2.0.19 - 2.0.19) <7689E7B9-EE5A-3F74-8699-4CDED9162260> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x91601000 - 0x9162bff1  com.apple.CoreServicesInternal (113.19 - 113.19) <F7A309D1-DCB4-38DE-8248-E16D0182AA6C> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x91952000 - 0x919a2ffa  libTIFF.dylib (??? - ???) <9511A31E-070C-313E-8320-AAB683AD0653> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91a46000 - 0x91a56fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <6D6F0C9D-2EEA-3578-AF3D-E2A09BCECAF3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91a8c000 - 0x91a97ffc  com.apple.NetAuth (1.0 - 3.0) <C07853C0-AF32-3633-9CEF-2480860C12C5> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x91a98000 - 0x91c4cff3  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <4AFF6FC3-6283-3934-8EFC-CA227CA11164> /usr/lib/libicucore.A.dylib
    0x91c4d000 - 0x91c4dfff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <22997C20-BEB7-301D-86C5-5BFB3B06D212> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91cf2000 - 0x91d4fffb  com.apple.htmlrendering (76 - 1.1.4) <743C2943-40BC-36FB-A45C-3421A394F081> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x91d50000 - 0x91d52ff7  libdyld.dylib (195.5.0 - compatibility 1.0.0) <637660EA-8D12-3B79-B644-041FEADC9C33> /usr/lib/system/libdyld.dylib
    0x91d53000 - 0x91d67ff7  com.apple.CFOpenDirectory (10.7 - 144) <665CDF77-F0C9-3AFF-8CF8-64257268B7DD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x921a7000 - 0x921efff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <68B92FEA-F754-3E7E-B5E6-D512E26144E7> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x92230000 - 0x922a4fff  com.apple.CoreSymbolication (2.2 - 73.2) <FA9305CA-FB9B-3646-8C41-FF8DF15AB2C1> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x922cd000 - 0x926cfff6  libLAPACK.dylib (??? - ???) <00BE0221-8564-3F87-9F6B-8A910CF2F141> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x926d0000 - 0x926d1fff  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <B04592B1-0924-3422-82FF-976B339DF567> /usr/lib/system/libsystem_blocks.dylib
    0x926d3000 - 0x92735ffb  com.apple.datadetectorscore (3.0 - 179.4) <3A418498-C189-37A1-9B86-F0ECB33AD91C> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x92736000 - 0x9276dfef  com.apple.DebugSymbols (2.1 - 87) <EB951B78-31A5-379F-AFA1-B5C9A7BB3D23> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x929a8000 - 0x929afff9  libsystem_dnssd.dylib (??? - ???) <EBEAF723-84F8-3544-8FB2-31B7771B50D0> /usr/lib/system/libsystem_dnssd.dylib
    0x92b81000 - 0x92c69fff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <1841196F-68B5-309F-8ED1-6714B1DFEC83> /usr/lib/libxml2.2.dylib
    0x92d82000 - 0x92db0ff7  com.apple.DictionaryServices (1.2.1 - 158.3) <8D03D180-D834-39F3-A106-78E0B22A7893> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x92db1000 - 0x92dbaff3  com.apple.CommonAuth (2.2 - 2.0) <C3FD6EC2-8EB3-38FB-BBB7-05009CA49024> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x92dbb000 - 0x92deaff7  libsystem_info.dylib (??? - ???) <37640811-445B-3BB7-9934-A7C99848250D> /usr/lib/system/libsystem_info.dylib
    0x92deb000 - 0x92e19fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <30189C33-6ADD-3142-83F3-6114B1FC152E> /usr/lib/libSystem.B.dylib
    0x92e1a000 - 0x92e2bfff  libbsm.0.dylib (??? - ???) <54ACF696-87C6-3652-808A-17BE7275C230> /usr/lib/libbsm.0.dylib
    0x92e2c000 - 0x930fbffb  com.apple.security (7.0 - 55148.6) <8DF67BDD-C98F-3B7E-AC63-D468407FA82D> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x930fc000 - 0x9313cff7  com.apple.NavigationServices (3.7 - 193) <16A8BCC8-7343-3A90-88B3-AAA334DF615F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93162000 - 0x9316dffb  com.apple.speech.recognition.framework (4.0.21 - 4.0.21) <A1764D2F-EB84-33DC-9ED5-CDA3B468FF3E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x931b2000 - 0x931b8ffb  com.apple.print.framework.Print (7.4 - 247.3) <CB075EEE-FA1F-345C-A1B5-1AB266FC73A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x931b9000 - 0x93255fff  com.apple.ink.framework (10.7.5 - 113) <05CAFB64-D3B8-3973-87EA-CB8BBE580F6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x93280000 - 0x9329cff1  libPng.dylib (??? - ???) <F084226B-14F0-36C0-B5EC-22C78406D2B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9392a000 - 0x93931ff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <47DB9E1B-A7D1-3818-A747-382B2C5D9E1B> /usr/lib/system/libsystem_notify.dylib
    0x93932000 - 0x9394fff3  com.apple.openscripting (1.3.3 - ???) <0579A4CB-FD6F-3D7F-A17B-AC0F2CF11FC7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93950000 - 0x93954fff  com.apple.CommonPanels (1.2.5 - 94) <3A988595-DE53-34ED-9367-C9A737E2AF38> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93955000 - 0x9397dff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <AB530FB2-8BD1-3328-95E8-CF449F0429CA> /usr/lib/libxslt.1.dylib
    0x9397e000 - 0x939bbff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <007A1877-E981-3007-A8FA-9B179F4ED6D1> /usr/lib/libcups.2.dylib
    0x939bc000 - 0x939d9fff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <2870320A-28DA-3B44-9D82-D56E0036F6BB> /usr/lib/libresolv.9.dylib
    0x93be6000 - 0x93c02ff5  com.apple.GenerationalStorage (1.0 - 126.1) <E622F823-7D98-3D13-9C3D-7EA482567394> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x93c03000 - 0x93c21ff7  libsystem_kernel.dylib (1699.32.7 - compatibility 1.0.0) <79179F83-457A-3539-A76B-E960D2108109> /usr/lib/system/libsystem_kernel.dylib
    0x93cbf000 - 0x9419bff6  libBLAS.dylib (??? - ???) <134ABFC6-F29E-3DC5-8E57-E13CB6EF7B41> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x94212000 - 0x94288fff  com.apple.Metadata (10.7.0 - 627.37) <F54AED70-95C5-3561-8C87-D9E5539E98A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9428f000 - 0x9429dff7  libxar-nossl.dylib (??? - ???) <5BF4DA8E-C319-354A-967E-A0C725DC8BA3> /usr/lib/libxar-nossl.dylib
    0x9429e000 - 0x942a9fff  libkxld.dylib (??? - ???) <14E79D7A-B6C2-35C5-B56D-D343BEC2A106> /usr/lib/system/libkxld.dylib
    0x942aa000 - 0x942bffff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <92AADDB0-BADF-3B00-8941-B8390EDC931B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x942c0000 - 0x942c1fff  liblangid.dylib (??? - ???) <C8C204E9-1785-3785-BBD7-22D59493B98B> /usr/lib/liblangid.dylib
    0x942c2000 - 0x942c4ffb  libRadiance.dylib (??? - ???) <4721057E-5A1F-3083-911B-200ED1CE7678> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x942c5000 - 0x9473aff7  FaceCoreLight (1.4.7 - compatibility 1.0.0) <3E2BF587-5168-3FC5-9D8D-183A9C7C1DED> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x94ac8000 - 0x94b26ff7  com.apple.coreui (1.2.2 - 165.11) <340B0B83-1407-3AB4-BCAB-505C29303EE2> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x94b27000 - 0x94bbdff7  com.apple.LaunchServices (480.40 - 480.40) <D5C0DEF9-398C-3742-8C4E-875C3365EC8B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x94df7000 - 0x94e03ff4  com.apple.CrashReporterSupport (10.7.4 - 353) <96C5799C-5273-3B56-9273-CE38900EFE65> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x94e36000 - 0x9502eff7  com.apple.CoreData (104.1 - 358.14) <C1730963-F75D-3338-B65F-D50235538B28> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9502f000 - 0x9502fff2  com.apple.CoreServices (53 - 53) <7CB7AA95-D5A7-366A-BB8A-035AA9E582F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x95030000 - 0x95066ff7  com.apple.AE (527.7 - 527.7) <7BAFBF18-3997-3656-9823-FD3B455056A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x953f5000 - 0x95446ff9  com.apple.ScalableUserInterface (1.0 - 1) <C3FA7E40-0213-3ABC-A006-2CB00B6A7EAB> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x95447000 - 0x955a9ffb  com.apple.QuartzCore (1.7 - 270.5) <6D0EC7FC-11E5-35FB-A08A-3B438E89FBDB> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x95668000 - 0x9566cfff  libGIF.dylib (??? - ???) <2ADFED97-2228-343D-9A53-207CBFDE7984> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x95670000 - 0x956cbff3  com.apple.Symbolication (1.3 - 91) <4D12D2EC-5010-3958-A205-9A67E972C76A> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x956cc000 - 0x956d2ffd  com.apple.CommerceCore (1.0 - 17) <71641C17-1CA7-3AC9-974E-AAC9EB641035> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x95982000 - 0x95a65ff7  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <BD913D3B-388D-33AE-AA5E-4810C743C28F> /usr/lib/libcrypto.0.9.8.dylib
    0x95a74000 - 0x95a7bffd  com.apple.NetFS (4.0 - 4.0) <D0D59145-D211-3E7C-9062-35A2833FA99B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x95a7c000 - 0x95aceff7  libFontRegistry.dylib (??? - ???) <C2B84661-A62D-3FFF-8D8C-BC697E9BDF4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x95af8000 - 0x95b0bff8  com.apple.MultitouchSupport.framework (231.4 - 231.4) <083F7787-4C3B-31DA-B5BB-1993D9A9723D> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x95b0c000 - 0x95b10ff3  libsystem_network.dylib (??? - ???) <62EBADDA-FC72-3275-AAB3-5EDD949FEFAF> /usr/lib/system/libsystem_network.dylib
    0x95b11000 - 0x95b19ff3  liblaunch.dylib (392.39.0 - compatibility 1.0.0) <9E6135FF-C2B1-3BC9-A160-B32D71BFA77C> /usr/lib/system/liblaunch.dylib
    0x95b1a000 - 0x95beaffb  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <C3CB142F-BE91-3AFA-B052-409F776C0B9E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9693d000 - 0x96962ff9  libJPEG.dylib (??? - ???) <743578F6-8C0C-39CC-9F15-3A01E1616EAE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x96963000 - 0x96963fff  com.apple.vecLib (3.7 - vecLib 3.7) <8CCF99BF-A4B7-3C01-9219-B83D2AE5F82A> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x96964000 - 0x96a3aaab  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <2E272DCA-38A0-3530-BBF4-47AE678D20D4> /usr/lib/libobjc.A.dylib
    0x96a80000 - 0x96aeffff  com.apple.Heimdal (2.2 - 2.0) <2E1B8779-36D4-3C62-A67E-0034D77D7707> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x96bc8000 - 0x96c2aff3  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <266CE9B3-526A-3C41-BA58-7AE66A3B15FD> /usr/lib/libstdc++.6.dylib
    0x96c2b000 - 0x96c32fff  com.apple.agl (3.2.0 - AGL-3.2.0) <ED5A5B8A-0014-3897-951F-628391333256> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x96cce000 - 0x96ccffff  com.apple.TrustEvaluationAgent (2.0 - 1) <4BB39578-2F5E-3A50-AD59-9C0AB99472EB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x96cd0000 - 0x96f55fe3  com.apple.QuickTime (7.7.1 - 2340) <76E45D49-3D4F-32AB-A411-E52C22FA24C8> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x97572000 - 0x975b0fff  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <AF1174F9-4402-31EB-9C84-AB644E5865DF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x975b1000 - 0x975cbfff  com.apple.Kerberos (1.0 - 1) <D7920A1C-FEC4-3460-8DD0-D02491578CBB> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x975cc000 - 0x9768ffff  com.apple.CoreServices.OSServices (478.50 - 478.50) <916A3B50-1033-3FFE-A9AF-3CC2B0F60EAE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x97690000 - 0x97698ff5  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <A1BFC320-616A-30AA-A41E-29D7904FC4C7> /usr/lib/system/libcopyfile.dylib
    0x9814b000 - 0x9814cff0  libunc.dylib (24.0.0 - compatibility 1.0.0) <BCD277D0-4271-3E96-A4A2-85669DBEE2E2> /usr/lib/system/libunc.dylib
    0x9814d000 - 0x98245ff7  libFontParser.dylib (??? - ???) <71B33EB1-27F8-3C68-B940-FC61A3CFE275> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x98c82000 - 0x98c8afff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <28D5D8B5-14E8-3DA1-9085-B9BC96835ACF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x98c8b000 - 0x98c91fff  libGFXShared.dylib (??? - ???) <9C9834EB-B794-38C8-9B90-31D8CB234F86> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x98d92000 - 0x98e0dffb  com.apple.ApplicationServices.ATS (317.12.0 - ???) <4D124B65-3D43-32E9-B296-3671347BB888> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x98e0e000 - 0x98efeff1  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <9E5F86A3-8405-3774-9E0C-3A074273C96D> /usr/lib/libiconv.2.dylib
    0x99339000 - 0x99344ffe  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <4A7FCD28-9C09-3120-980A-BDF6EDFAAC62> /usr/lib/libbz2.1.0.dylib
    0x9967f000 - 0x99687ff3  libunwind.dylib (30.0.0 - compatibility 1.0.0) <E8DA8CEC-12D6-3C8D-B2E2-5D567C8F3CB5> /usr/lib/system/libunwind.dylib
    0x997cc000 - 0x998eafec  com.apple.vImage (5.1 - 5.1) <7757F253-B281-3612-89D4-F2B04061CBE1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x99a4e000 - 0x99a4efff  com.apple.Carbon (153 - 153) <6FF98F0F-2CDE-3888-A304-4ED447D24CE3> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x99a4f000 - 0x99aa8fff  com.apple.HIServices (1.21 - ???) <91EC636D-AC27-3332-BA1C-FD7301917429> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x99ae0000 - 0x99b23ffd  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <4BA1F5F1-F0A2-3FEB-BB62-F514DCBB3725> /usr/lib/system/libcommonCrypto.dylib
    0x99d41000 - 0x99d41ff0  com.apple.ApplicationServices (41 - 41) <BED33E1D-C95C-3654-9A3A-0CB3607F9F10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x99d8c000 - 0x99daeffe  com.apple.framework.familycontrols (3.0 - 300) <6735D7ED-7053-3AB8-B144-E7F70A124CCD> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x99daf000 - 0x99db2ff7  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <69357047-7BE0-3360-A36D-000F55E39336> /usr/lib/system/libmathCommon.A.dylib
    0x99db3000 - 0x9a0b5fff  com.apple.CoreServices.CarbonCore (960.25 - 960.25) <C613B0DA-B401-3DC7-B626-6E20D4DDC8A8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9a0b6000 - 0x9a0baffd  IOSurface (??? - ???) <EDDBEE65-1EB8-33A7-9972-E361A3508234> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9a10b000 - 0x9a10effd  libCoreVMClient.dylib (??? - ???) <B8F8916D-F12A-3D95-ABF3-999D57B7D581> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x9a112000 - 0x9aa3d72b  com.apple.CoreGraphics (1.600.0 - ???) <DD7CDD67-FC4F-36FE-962F-2EA7EF3FC780> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9aacd000 - 0x9aad0ffb  com.apple.help (1.3.2 - 42) <DDCEBA10-5CDE-3ED2-A52F-5CD5A0632CA2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9b274000 - 0x9b318fff  com.apple.QD (3.40 - ???) <3881BEC6-0908-3073-BA44-346356E1CDF9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9b319000 - 0x9b623ff3  com.apple.Foundation (6.7.2 - 833.25) <4C52ED74-A1FD-3087-A2E1-035AB3CF9610> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9b64a000 - 0x9b66dfff  com.apple.CoreVideo (1.7 - 70.3) <4234C11C-E8E9-309A-9465-27D6D7458895> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9b86a000 - 0x9b8f7ff7  com.apple.CoreText (220.22.0 - ???) <EA7210A7-DECC-3F76-8A66-D4E41859B3C6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9b940000 - 0x9b942ff9  com.apple.securityhi (4.0 - 1) <BD367302-73C3-32F4-8080-E389AE89E434> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9b96f000 - 0x9b973ff7  com.apple.OpenDirectory (10.7 - 146) <4986A382-8FEF-3392-8CE9-CF6A5EE4E365> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9b974000 - 0x9ba3ffff  libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <52421B00-79C8-3727-94DE-62F6820B9C31> /usr/lib/system/libsystem_c.dylib
    0x9ba82000 - 0x9ba83ffd  libCVMSPluginSupport.dylib (??? - ???) <4B0476F9-950D-3EB7-BD83-F65AF0B05F0E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x9ba84000 - 0x9ba94ff7  libCRFSuite.dylib (??? - ???) <CE616EF3-756A-355A-95AD-3472A876BEB9> /usr/lib/libCRFSuite.dylib
    0x9ba97000 - 0x9ba97fff  com.apple.Cocoa (6.6 - ???) <650273EF-1ABC-334E-B745-B75AF028F9F4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9ba98000 - 0x9bb00fff  libc++.1.dylib (28.4.0 - compatibility 1.0.0) <B24814AB-CA77-3B9D-8FAB-58C9B4FD3A16> /usr/lib/libc++.1.dylib
    0x9bbda000 - 0x9bc71ff3  com.apple.securityfoundation (5.0 - 55116) <EB53CEF7-4836-39FD-B012-6BC122ED4CE9> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9bc72000 - 0x9bc73ff7  libquarantine.dylib (36.7.0 - compatibility 1.0.0) <46980EC2-149D-3CF7-B29A-401FB89C275D> /usr/lib/system/libquarantine.dylib
    0x9bc74000 - 0x9c709ff6  com.apple.AppKit (6.7.5 - 1138.51) <B9D3DCA0-9765-354E-9730-75A45A97DDFD> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x9c757000 - 0x9c757ffe  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <7F0E8EE2-9E8F-366F-9988-E2F119DB9A82> /usr/lib/system/libkeymgr.dylib
    0x9c758000 - 0x9c7bdff7  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <4B4B32D2-4F66-3B0D-BD61-FA8429FF8507> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9c817000 - 0x9c8a4fe7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <F2A8BBA3-6431-3CED-8CD3-0953410B6F96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9c8a9000 - 0x9ca80fe7  com.apple.CoreFoundation (6.7.2 - 635.21) <4D1D2BAF-1332-32DF-A81B-7E79D4F0A6CB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9cb24000 - 0x9cb31fff  libGL.dylib (??? - ???) <A72F14F7-1836-34AB-9F08-67836CB966E4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9cb32000 - 0x9cb47ff7  com.apple.ImageCapture (7.1.0 - 7.1.0) <E5FCA336-7E47-343E-A82D-CCCA5BCD5929> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9cb53000 - 0x9cb53fff  com.apple.audio.units.AudioUnit (1.7.3 - 1.7.3) <2E71E880-25D1-3210-8D26-21EC47ED810C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9cc5a000 - 0x9cc64ff2  com.apple.audio.SoundManager (3.9.4.1 - 3.9.4.1) <2A089CE8-9760-3F0F-B77D-29A78940EA17> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9cc88000 - 0x9cc8bff9  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <16DCE20A-9790-369A-94C1-B7954B418C77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x9cc8c000 - 0x9ccccff7  libauto.dylib (??? - ???) <984C81BE-FA1C-3228-8F7E-2965E7E5EB85> /usr/lib/libauto.dylib
    0x9cd4a000 - 0x9cdabffb  com.apple.audio.CoreAudio (4.0.3 - 4.0.3) <7A14BE52-6789-3CE3-9AE9-B733F4903EB1> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9cdac000 - 0x9cdadff4  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <6DE3FDC7-0BE0-3791-B6F5-C15422A8AFB8> /usr/lib/system/libremovefile.dylib
    0x9cdf7000 - 0x9ce02ff3  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <D6E17FD4-ECA0-3EEE-BFC5-F6A42A21AB5D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9ce03000 - 0x9ce03fff  libOpenScriptingUtil.dylib (??? - ???) <E4C22B65-9493-31D5-9D46-19BD70975587> /usr/lib/libOpenScriptingUtil.dylib
    0x9ce10000 - 0x9ce3bfff  com.apple.GSS (2.2 - 2.0) <2C468B23-FA87-30B5-B9A6-8C5D1373AA30> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x9ce3c000 - 0x9ce45fff  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <FEB5330E-AD5D-37A0-8AB2-0820F311A2C8> /usr/lib/libc++abi.dylib
    0x9ce46000 - 0x9cf06ffb  com.apple.ColorSync (4.7.4 - 4.7.4) <0A68AF35-15DF-3A0A-9B17-70CE2A106A6C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9cf1a000 - 0x9cf1effa  libcache.dylib (47.0.0 - compatibility 1.0.0) <98A82BC5-0DD9-3212-9CAE-35A77278EEB6> /usr/lib/system/libcache.dylib
    0x9cf1f000 - 0x9cf20ff7  libsystem_sandbox.dylib (??? - ???) <26960D2B-BEA6-3B3B-9BC7-D73437EF4149> /usr/lib/system/libsystem_sandbox.dylib
    0x9cf21000 - 0x9cf2ffff  com.apple.opengl (1.8.1 - 1.8.1) <766AFB12-A2CB-3A55-B662-FC9FFCAE0008> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 3
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 104788
        thread_create: 1
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=151.7M resident=49.1M(32%) swapped_out_or_unallocated=102.6M(68%)
    Writable regions: Total=115.5M written=1936K(2%) resident=5216K(4%) swapped_out=15.5M(13%) unallocated=110.4M(96%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    .mdb_debug_info                       4K
    ATS (font support)                 32.1M
    ATS (font support) (reserved)         4K        reserved VM address space (unallocated)
    CG backing stores                   452K
    CG image                             16K
    CG raster data                       64K
    CG shared images                   3448K
    CoreGraphics                          8K
    CoreServices                       3740K
    MALLOC                             53.5M
    MALLOC guard page                    48K
    Memory tag=240                        4K
    Memory tag=242                       12K
    Stack                              67.0M
    VM_ALLOCATE                        16.1M
    __CI_BITMAP                          80K
    __DATA                             8504K
    __DATA/__OBJC                         4K
    __IMAGE                             528K
    __IMPORT                             20K
    __LINKEDIT                         43.8M
    __OBJC                             1536K
    __OBJC/__DATA                        12K
    __PAGEZERO                            4K
    __TEXT                            107.9M
    __UNICODE                           544K
    mapped file                       157.3M
    shared memory                       316K
    shared pmap                        10.0M
    ===========                      =======
    TOTAL                             506.6M
    TOTAL, minus reserved VM space    506.6M
    Model: MacBook7,1, BootROM MB71.0039.B0E, 2 processors, Intel Core 2 Duo, 2.4 GHz, 4 GB, SMC 1.60f6
    Graphics: NVIDIA GeForce 320M, NVIDIA GeForce 320M, PCI, 256 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1067 MHz, 0x859B, 0x435432353636344243313036372E4D38464D
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1067 MHz, 0x859B, 0x435432353636344243313036372E4D38464D
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.106.198.19.22)
    Bluetooth: Version 4.0.8f17, 2 service, 11 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: Hitachi HTS545025B9SA02, 250.06 GB
    Serial ATA Device: OPTIARC DVD RW AD-5970H
    USB Device: Built-in iSight, apple_vendor_id, 0x8507, 0x24600000 / 2
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06600000 / 3
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8218, 0x06630000 / 6
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0237, 0x06300000 / 2

    http://forum.kerbalspaceprogram.com/showthread.php/27492-Solved-Help-my-KSP-wont -open-I-need-this-for-school
    This thread appears to be related to your problem, me thinks.  It itself links to another thread that shows how to delete the 'saved state' for Kerbel Space Program.  Hopefully, this will help you with that particular facet of your problem.

  • How to handle single, double quotes

    Hi,
    I have a dataset which contains single- and doubble quotes.
    But when using the DS in javascript, I have problems in handing strings containing  single- and doubble quotes.
                <td onclick="myFunction('{TITLE}');">{TITLE}</td>
    {TITLE} is equal to:  I'm working with spry.
    Spry replaces it in the code as: <td onclick="myFunction('I'm working with spry');">I'm working with spry</td>
    Which leads to a quote error in the functionCall onclick().
    I've tried to solve the problem by escaping these special characters in PHP;
    - addslashes() > solves the javascript error, but give a readable text: I\'m working with spry
    - htmlspecialchars() > no change in existing problem.
    Any clues how to solve this.
    Thanks,
    Pieter

    Hi Pieter,
    When writing text in an HTML document I always use entity references (like &lsquo; for a single quote)  for special characters to not only overcome the sort of problem that you are faced with, but this is also good practice for normal rendering of text in most languages including HTML, XML and JS.
    You could also use character reference (like &#8217; for a single quote) with the same result, but DW has inbuilt functions to help with entity reference.
    Having said this, and assuming that you cannot or it is impracticable to change the data within the database, why not have two fields in your dataset, one called JS_TITLE and the other just TITLE and use each one accordingly.
    This still does not satisfy the fact that the single quote for rendering purposes is not represented by a reference, but that is another matter.
    Gramps

  • Being driven crazy

    I'm going crazy trying to get exim to do what I want it to. Basically, every mail that I send (locally to myself) is being frozen. I CAN send with php sendmail. I can hardly find any info at all on this, so I'm not even sure if exim is the right program to achieve what I want.
    Basically I have a server on a domain that needs to have a couple email accounts.
    [email protected]
    [email protected]
    etc.
    But they're not really email accounts. I just want the server to receieve the mail and then forward it to the admin's personal email.
    Is exim really the right way to do this? If so, I can post more of my configuration.
    Last edited by Statix (2008-11-21 08:05:49)

    Well I have only used postfix, but it sounds like exim is not differentiating between a virtual and local user, there should be some way of defining that email sent to [email protected] from the local network should be delivered to <user x>. It is probably trying to send the email from [email protected] to {[email protected]}@localhost if you get what I mean? Rather than name@localhost.
    In postfix you do it by defining a local domain, and then mapping the virtual addresses to local ones.
    Exim is the right thing to be using, mail servers are a bitch to get working beyond the basic pass through stuff

  • Adobe Muse Forms and GoDaddy

    Has anyone come up with a solution for the consistent problem between Adobe Muse forms and GoDaddy hosting? I just spent an hour with GoDaddy and they said everything on their end was working. It was a script problem. I can't seem to get any answers from either Adobe or GoDaddy.

    From your description is seems clear the issue is not with the Muse generated scripts. Those are identical regardless of what e-mail address you're sending to. If sending to your personal e-mail address works, but sending to an address on the same domain as the site does not, that most likely indicates one of two things: 1) The e-mail address is not setup correctly. (I assume that's not the case and you can send to the address from other sources without issue?) 2) Or, something on the server is configured to block e-mail from being sent to addresses on the domain of the site. Some hosting providers do this by default.
    I expect this case is the latter and you have yet to reach a tech at GoDaddy who's familiar with this aspect of their e-mail processing via PHP sendMail.
    The lack of SQL is a non-issue. SQL is not required for the correct processing of your form. When available SQL is used to limit the number of form submissions that will be accepted from a single IP address (site visitor) in a short amount of time. This "throttling" is performed to limit submissions from spammer's robots. Your form will work fine regardless of whether SQL is available. If you do receive spam from your form, adding a CAPTCHA is more effective at reducing or completely eliminating spam. Another less cumbersome method for site visitor's is simply to add a required checkbox will a label of something like "I'm a human" since spammer's robots will frequently not figure out they need to check the checkbox in order to get the form to submit.
    There's nothing Muse can do to avoid a restriction on the server that prevents specific e-mail addresses from being sent to, short of providing or connecting to a completely different e-mail processing service than what's provided with your hosting. We may provide that option at some point in the future (for other reasons), but that's not an option right now.
    If GoDaddy's support continues to point at Muse when told that sending to e-mail addresses not on the site's domain works fine and sending to addresses on the site's domain does not, and also told there's absolutely no difference in the PHP code for the two cases, then send me an e-mail and we'll talk to GoDaddy together.  [email protected]

Maybe you are looking for

  • GR for purchase order with Account assignment E

    Hello All I am having a scenario where in the BOM structure is as under: A->B->C--->D, D is the raw material, C is the component produced in-house, B is the material which we procure through subcontracting, in the material master of C SPK:30 is used

  • My wifi logo is not showing on the status bar in my i4s 32gb

    dear sir, whenever i am trying i am unable to switch on my wifi in my apple 4s 32gb, wifi key is looking dark  black color. please help me.

  • Uncontinuous printing

    i have hp2050 all in one j510h, two weeks ago i bought new color cartridge before installing new cartridge i easily print with black cartridge without any problem but when i installing color one every thing i want to print is really slow and uncontin

  • Is it possible to reterive the deleted Outbound Delivery details

    Hi I would like to know , Is it possible to reterive the deleted Outbound Delivery details like who deleted with  date and time. Can It possible to create Proforma invoice without Post Goods Issue (PGI) of Outbound Delivery. Can it possible to delete

  • Ceritified or not: DB on exadata, AP on Solrais on SPRAC (64 bit)

    Please confirm whether the following split configuratoin of EBS 12.1.1 is supported. EBS DB Tier: Oracle Exadata with Linux and X86-64 Architecture APP Tier: Oracle Solaris on SPARC (64-bit)