Upload/Select Menu Form

I'm a rookie with a complex issue:
I'm having trouble working through an upload/select option
within my form. I have successfully created a form for a
client to select from a variety of photos to create a new
record in the database. Problem is, they want me to combine
the menu selection with an option to upload a file to the
server and record the filename within the database. I'm
familiar with creating upload forms, but not in combination
with a menu selection as an option and processing it. I told
you I was a rookie.
My db table 'staff' has several fields with one being
'staff_photo' for the filename. I'm not sure how to combine
the processing script with the current one I have. I've been
piecing together bits to try to make this work, but I'm
coming across some snags:
#1 The record is not recording in the database, nor is the
filename copying to the server.
#2 None of my error messages are coming up if something is
working incorrectly
#3 After the script is successful, it should load up the
page 'staff_list.php'.
I was hoping to have had this figured out by now,
considering I've been on this for over a week and still
haven't found the solution. I hope someone can help me out
with this.
My form is as follows:
[HTML]<form method="post" name="form1"
enctype="multipart/form-data" action="<?php echo
$editFormAction; ?>">
<table width="80%" align="center" cellspacing="0"
border="0">
<tr valign="baseline">
<td nowrap align="right">Select Photo:</td>
<td><select name="staff_photo">
<option value="">No photo</option>
<?php buildImageList('../../photos/staff/'); ?>
</select>
<span class="small">   (If
there is no photo
available, please choose 'No-Phot-Available.jpg' or 'No
photo')</span></td>
</tr>
<tr valign="baseline">
<td nowrap align="right">Upload Photo: </td>
<td><input name="staff_photo" type="file" />
</td>
</tr>
<tr valign="baseline">
<td nowrap align="right">Name:</td>
<td><input name="staff_name" type="text"
class="widebox"
value="" size="32" maxlength="150"></td>
</tr>
<tr valign="baseline">
<td nowrap align="right"> </td>
<td><input type="submit" value="Insert
record"></td>
</tr>
</table>
<input type="hidden" name="MM_insert" value="form1">
<input name="staff_photo" type="hidden" id="staff_photo"
/>
</form>[/HTML]
And here's the process:
[PHP]$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
$editFormAction .= "?" .
htmlentities($_SERVER['QUERY_STRING']);
if ((isset($_POST["MM_insert"])) &&
($_POST["MM_insert"] ==
"form1")) {
define('UPLOAD_DIR', '../../photos/staff/');
$file = str_replace(' ', '_',
$_FILES['staff_photo']['name']);
$permitted = array('image/gif', 'image/jpeg',
'image/pjpeg', 'image/png');
$typeOK = false;
foreach ($permitted as $type) {
if ($type == $_FILES['staff_photo']['type']) {
$typeOK = true;
break;
if ($typeOK) {
switch($_FILES['staff_photo']['error']) {
case 0:
if (!file_exists(UPLOAD_DIR.$file)) {
$success =
move_uploaded_file($_FILES['staff_photo']['name'],
UPLOAD_DIR.$file);
if ($success) {
$insertSQL = sprintf("INSERT INTO staff (staff_name,
staff_position, staff_subposition, staff_desc, staff_photo,
staff_spec_1, staff_spec_2, staff_spec_3, staff_spec_4,
staff_spec_5) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s,
%s)",
GetSQLValueString($_POST['staff_name'], "text"),
GetSQLValueString($_POST['staff_position'], "text"),
GetSQLValueString($_POST['staff_subposition'], "text"),
GetSQLValueString($_POST['staff_desc'], "text"),
GetSQLValueString($_POST['staff_photo'], "text"),
GetSQLValueString($_POST['staff_spec_1'], "text"),
GetSQLValueString($_POST['staff_spec_2'], "text"),
GetSQLValueString($_POST['staff_spec_3'], "text"),
GetSQLValueString($_POST['staff_spec_4'], "text"),
GetSQLValueString($_POST['staff_spec_5'], "text"));
mysql_select_db($database_wvgsadmin, $wvgsadmin);
$Result1 = mysql_query($insertSQL, $wvgsadmin) or
die(mysql_error());
if ($Result1) {
$insertGoTo = "staff_list.php";
if (isset($_SERVER['QUERY_STRING'])) {
$insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
$insertGoTo .= $_SERVER['QUERY_STRING'];
header(sprintf("Location: %s", $insertGoTo));
} else {
$result = "Error uploading $file. Please try again.";
break;
case 3:
$result = "Error uploading $file. Please try again.";
default:
$result = "System error uploading $file. Contact
webmaster.";
} else {
$result = "$file cannot be uploaded. Acceptable file
type: .gif, .jpf, .png";
?>[/PHP]
Thank you for your time!
toad78

Try this forum:
PDF Forms

Similar Messages

  • Setting the Default Value for a dynamic select menu

    Hi I have a php page with 2 forms on it, one feeds the other to achieve a drill down (manufacturer > model). In the second select menu I have a default static value "Select Aircraft Model", I want to set a value for the first dynamic select menu to read "Select Aircraft Manufacturer". When I add a static value to my list it tells me I alreay have a dynamic behavior on this menu and to choose a different one. I have included the code for both menus. Thank you in advance, I know this must be a stupid question, but it's got me stumped.
    Tom
    //This is the menu I want to add the default static value to//
    <td width="667"><select name="airMake" style="width: 200px;"onchange="this.form.submit();" id="airMake">
            <?php
    do {
    ?>
            <option value="<?php echo $row_rsAirManufacturer['aircraft_manufacturer']?>"<?php if (!(strcmp($row_rsAirManufacturer['aircraft_manufacturer'], ((isset($_POST["airMake"]))?$_POST["airMake"]:"")))) {echo "selected=\"selected\"";} ?>><?php echo $row_rsAirManufacturer['aircraft_manufacturer']?></option>
            <?php
    } while ($row_rsAirManufacturer = mysql_fetch_assoc($rsAirManufacturer));
      $rows = mysql_num_rows($rsAirManufacturer);
      if($rows > 0) {
          mysql_data_seek($rsAirManufacturer, 0);
          $row_rsAirManufacturer = mysql_fetch_assoc($rsAirManufacturer);
    ?>
          </select>
          </td>
      </tr>
    </table></form>
        <form action="quoteResult.php" method="post" name="quoteForm">
          <table width="100%" border="0" cellpadding="5px">
            <tr>
              <td width="260"style="color: #000; text-align: right;">Aircraft Model:</td>
              <td colspan="2"><span id="spryselect2">
    //This is the menu that works correctly//
                <select name="airModel" style="width: 200px;" id="airModel">
                  <option value="" <?php if (!(strcmp("", ((isset($_POST["airMakeField"]))?$_POST["airMakeField"]:"")))) {echo "selected=\"selected\"";} ?>></option>
                  <?php
    do { 
    ?>
                  <option value="<?php echo $row_rsAirModel['aircraft_model']?>"<?php if (!(strcmp($row_rsAirModel['aircraft_model'], ((isset($_POST["airMakeField"]))?$_POST["airMakeField"]:"")))) {echo "selected=\"selected\"";} ?>><?php echo $row_rsAirModel['aircraft_model']?>Select Aircraft Model</option>
                  <?php
    } while ($row_rsAirModel = mysql_fetch_assoc($rsAirModel));
      $rows = mysql_num_rows($rsAirModel);
      if($rows > 0) {
          mysql_data_seek($rsAirModel, 0);
          $row_rsAirModel = mysql_fetch_assoc($rsAirModel);
    ?>
                  </select>

    Change this -
    <select name="airMake" style="width: 200px;"onchange="this.form.submit();" id="airMake">
    to this -
    <select name="airMake" style="width: 200px;"onchange="this.form.submit();" id="airMake">
    <option value="-1">Select Aircraft Manufacturer</option>
    Then if the value of 'airMake' is -1 you know that no choice was made.

  • I have a pdf doc that I have email buttons attached to button when I go to upload it to forms central so I can add a submit button to it it enables my email buttons.

    I have a pdf doc that I have email buttons attached to button when I go to upload it to forms central so I can add a submit button to it it enables my email buttons.

    You select the printer properties and set the appropriate page size (I think there is a place to set it in PDF Maker too, but not sure). In the printer, this is equivalent to putting the proper paper in the printer.

  • Select menu problem

    Hi can anyone tell me whats wrong with this:
    I have select menu in my jsp as follows:
    <select name="selectRowCount" size="1"  onchange="document.forms['search'].submit()" >
         <option value="/devices/search.faces?rowsPerPage=5">5</option>
         <option value="/devices/search.faces?rowsPerPage=10">10</option>
         <option value="/devices/search.faces?rowsPerPage=25">25</option>
         <option value="/devices/search.faces?rowsPerPage=50">50</option>
         <option value="/devices/search.faces?rowsPerPage=0" selected="selected">All</option>
    </select>and in the backing bean i have:
    public int getRowsPerPage(){
        return rowsPerPage;
    public void setRowsPerPage( int rowsPerPage ){
        this.rowsPerPage = rowsPerPage;}what am i missing. i just need to set the value i select into the backing bean

    Lets say you select "10"
    The javascript event submits the form with the following parameter:
    selectRowCount = "/devices/search.faces?rowsPerPage=10"
    It doesn't go to the url in the value specified (unless you do something with that parameter elsewhere)
    What URL is the form submitting to?
    What I think it should be is:
    <select name="rowsPerPage" size="1"  onchange="document.forms['search'].submit()" >
         <option value="5">5</option>
         <option value="10">10</option>
         <option value="25">25</option>
         <option value="50">50</option>
         <option value="0" selected="selected">All</option>
    </select>

  • How to add Drop Down City Selection Menu?

    How is the best way to  add a Drop Down City Selection Menu to my site next to MyCITY logo?  This page should be selection on Los Angeles (w arrow icon next to it), but I need 4 other city choices.  It needs to drop down like RESTAURANTS with an arrow.  Not sure the best way to approach this.
    http://www.tammyfarringtoncreative.com/test/index.html
    Thanks, Tammy

    Are you looking for a form select list?
    http://www.w3schools.com/tags/tag_select.asp
    Nancy O.

  • How to get Select menu to determine next set of (hidden) inputs?

    Operating System: Mac OSX 10.6
    Software: Dreamweaver CS4, with local testing environment.
    The website i am currently creating uses form based quotes, (for a printing business).
    See here,      http://www.barringtonprint.com/perfect/quote-continuous.html      for the current webpage i am working on.
    I want to use a select menu to determine how many 'parts' the user requires, and for it to then display the necessary text fields for them to fill in. 
    At the monent the form just has the maximun amount (7) already on the form, and just requires the user to leave the non-required fields empty.
    However i would like the form to just have inputs for the first 'part' (Part 1), with a select menu that gives the user the option to select more than 1 'part' and then display how many more rows of text fields are needed depending on the outcome of the select menu.
    I presume i will need to use javascript to do this but i am unsure on how to proceed.
    NOTE: these are old forms that i have inherited and do use tables, im aware this is not the best way to proceed, however im sticking with them for now.
    Any help will be much appreciated, as this is driving me nuts.
    Andrew Barrington

    I'm sure there are cleaner ways of doing this, but I already had this put together from another project.  Hopefully it will get you started.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5 Form with jQuery Validation</title>
    <!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
    <!--JQUERY LATEST-->
    <script src="http://code.jquery.com/jquery-latest.min.js">
    </script>
    <!--JQUERY VALIDATE-->
    <script src="http://ajax.aspnetcdn.com/ajax/jquery.validate/1.11.1/jquery.validate.min.js">
    </script>
    <style>
    /**BEGIN FORM STYLES**/
    #contact {
    font-size: 14px;
    width:800px; /**adjust width in % or px as needed*/
    margin: 0 auto; /**adjust margins as needed*/
    background: #FFF;
    border: 2px groove #999;
    padding: 2%;
    #contact fieldset {
    margin-bottom:5px;
    background:#CCC;
    #contact legend {
    padding: 8px;
    background: #000;
    font-weight: bold;
    color: #FFF;
    line-height: 1.5;
    /**wrap form lables and fields inside ordered lists for better web accessibility**/
    #contact ol {
    list-style:none;
    margin:0;
    padding:0}
    #contact li {
    padding:5px;
    margin: 0;
    clear: left;
    #contact label{
    display:inline-block;
    float:left;
    line-height: 23px; /**lines up labels with fields**/
    width:15%;
    font-size: 12px;
    text-align:right;
    margin-right: 10px; /*space between labels, fields*/
    #contact textarea,
    #contact input[type=text],
    #contact input[type=email],
    #contact input[type=number] {
    width: 45%; /**same width on fields**/
    padding: 5px;
    color:#333;
    font-family:Arial, Helvetica, sans-serif;
    font-size: 12px;
    #contact select {width:46.5%}
    /**field background on focus**/
    #contact input:focus,
    #contact input:active,
    #contact textarea:focus,
    #contact textarea:active,
    #contact select:focus,
    #contact select:active
    {background-color: #FFC;}
    #contact label.error {
        line-height:1;
        color:#F00;
        background:#FFC;
        padding:3px;
        box-shadow:1px 2px 3px #333
    /**hidden ids based on selection**/
    #one,#two,#three,#four {
        color: #03C;
        font-weight:bold;
        display:none;
    </style>
    </head>
    <body>
    <p>Conditional Form with jQuery Validation</p>
    <!--begin form-->
    <form id="contact" action="path/form-processing-script.php" method="post">
    <fieldset>
    <legend>Required Fields:</legend>
    <ol>
    <li><label for="first_name">Name:</label>
    <input name="first_name" id="first_name" type="text" required placeholder="First"></li>
    <li><label for="last_name">Last:</label>
    <input name="last_name" id="last_name" type="text" required placeholder="Last"></li>
    <li><label for="e_mail">E-mail:</label>
    <input name="e_mail" id="e_mail" type="email" required placeholder="[email protected]"></li>
    </ol>
    </fieldset>
    <fieldset>
    <legend>Conditional Select - Required:</legend>
    <ol>
    <li><label for="MySelect">Select One:</label>
    <select name="MySelect" id="MySelect" size="5" required title="Please select something!">
    <option value="0">None</option>
    <option value="1">Audi</option>
    <option value="2">Saab</option>
    <option value="3">Fiat</option>
    <option value="4">BMW</option>
    </select></li>
    <!--hidden-->
    <li id="one">
    <label for="option1">You selected Audi:</label>
    <input name="option1" id="option1" type="text" placeholder="Year and Model" />
    </li>
    <li id="two">
    <label for="option2">You selected Saab:</label>
    <input name="option2" id="option2" type="text" placeholder="Year and Model" />
    </li>
    <li id="three">
    <label for="option3">You selected Fiat:</label>
    <input name="option3" id="option3" type="text" placeholder="Year and Model" />
    </li>
    <li id="four">
    <label for="option4">You selected BMW:</label>
    <input name="option4" id="option4" type="text" placeholder="Year and Model" />
    </li>
    <!--end hidden fields-->
    </ol>
    </fieldset>
    <fieldset>
    <legend>Optional Fields:</legend>
    <ol>
    <li>
    <label for="phone">Phone:</label>
    <input name="phone" id="phone" type="number" placeholder="(area code) 123-4567" />
    </li>
    <li><label for="subject">Subject:</label>
    <input name="subject" id="subject" type="text" />
    </li>
    <li><label for="message">Message:</label>
    <textarea id="message" name="message" placeholder="remarks"></textarea>
    </li>
    <li><input name="submit" type="submit" value="Submit">
    </li>
    </ol>
    </fieldset>
    </form>
    <!--end form-->
    <!--form validation-->
    <script>
    $(document).ready(function() {
        $("#contact").validate();
        $("#MySelect").validate();
    //Custom jQuery to show/hide input fields based on selected options//
        $('#one,#two,#three,#four') .hide();
        $('#MySelect').bind('change', function (e) {
        if( $('#MySelect').val() == 1) {
            $('#one').show('slow');
        else{
          $('#one').hide();
        if( $('#MySelect').val() == 2) {
          $('#two').show('slow');
        else{
          $('#two').hide();
        if( $('#MySelect').val() == 3) {
          $('#three').show('slow');
        else{
          $('#three').hide();
        if( $('#MySelect').val() == 4) {
          $('#four').show('slow');
        else{
          $('#four').hide();
    </script>
    </body>
    </html>
    Nancy O.

  • My brother gave me his old ipod, how can I upload my someg form my shuffle?

    my brother gave me his old ipod, how can I upload my some form my shuffle

    You want to first connect your shuffle to your computer and transfer all of your downloads from there to your iTunes.
    Then you want to connect your new one to the computer. Click on the device when it pops up in your iTunes, and select the music tab.
    Then you can sync all of the music you want!

  • How to fix safari crash when any select menu is click

    After Mavericks update, Safari crashes consistently on my Mac Mini (late 2009). It crashes every time I click on any select menu and on any site/page. Has anyone encountered the same/similar issue ? Attached is the crash report
    Process:         com.apple.WebKit.WebContent [21553]
    Path:            /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/XPCServices/com. apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
    Identifier:      com.apple.WebKit.WebContent
    Version:         9537 (9537.71)
    Build Info:      WebKit2-7537071000000000~3
    Code Type:       X86-64 (Native)
    Parent Process:  ??? [1]
    Responsible:     Safari [21379]
    User ID:         501
    Date/Time:       2013-10-31 18:37:13.952 -0400
    OS Version:      Mac OS X 10.9 (13A603)
    Report Version:  11
    Anonymous UUID:  26B069E2-FE52-6E74-A1E1-C64AE8C22B65
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000129bfe175
    VM Regions Near 0x129bfe175:
        WebKit Malloc          000000010eabe000-000000010eabf000 [    4K] ---/rwx SM=NUL 
    -->
        CG shared images       00000001c0003000-00000001c000b000 [   32K] r--/r-- SM=SHM 
    Application Specific Information:
    Bundle controller class:
    BrowserBundleController
    Process Model:
    Multiple Web Processes
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.WebCore                       0x00007fff9833ea7b WebCore::RenderMenuList::itemText(unsigned int) const + 299
    1   com.apple.WebCore                       0x00007fff9833e945 non-virtual thunk to WebCore::RenderMenuList::itemText(unsigned int) const + 21
    2   com.apple.WebKit2                       0x00007fff9a4153c2 WebKit::WebPopupMenu::populateItems() + 226
    3   com.apple.WebKit2                       0x00007fff9a415196 WebKit::WebPopupMenu::show(WebCore::IntRect const&, WebCore::FrameView*, int) + 64
    4   com.apple.WebCore                       0x00007fff9833e1b5 WebCore::RenderMenuList::showPopup() + 533
    5   com.apple.WebCore                       0x00007fff9833dc5c WebCore::HTMLSelectElement::menuListDefaultEventHandler(WebCore::Event*) + 1516
    6   com.apple.WebCore                       0x00007fff9833d574 WebCore::HTMLSelectElement::defaultEventHandler(WebCore::Event*) + 84
    7   com.apple.WebCore                       0x00007fff97e9543b WebCore::EventDispatcher::dispatchEventPostProcess(void*) + 315
    8   com.apple.WebCore                       0x00007fff97e94b21 WebCore::EventDispatcher::dispatch() + 801
    9   com.apple.WebCore                       0x00007fff9810d3d6 WebCore::MouseEventDispatchMediator::dispatchEvent(WebCore::EventDispatcher*) const + 134
    10  com.apple.WebCore                       0x00007fff97e93bac WebCore::EventDispatcher::dispatchEvent(WebCore::Node*, ***::PassRefPtr<WebCore::EventDispatchMediator>) + 140
    11  com.apple.WebCore                       0x00007fff9810caa5 WebCore::Node::dispatchMouseEvent(WebCore::PlatformMouseEvent const&, ***::AtomicString const&, int, WebCore::Node*) + 133
    12  com.apple.WebCore                       0x00007fff9810beb6 WebCore::EventHandler::dispatchMouseEvent(***::AtomicString const&, WebCore::Node*, bool, int, WebCore::PlatformMouseEvent const&, bool) + 102
    13  com.apple.WebCore                       0x00007fff981125c0 WebCore::EventHandler::handleMousePressEvent(WebCore::PlatformMouseEvent const&) + 1552
    14  com.apple.WebKit2                       0x00007fff9a3ac63a WebKit::handleMouseEvent(WebKit::WebMouseEvent const&, WebKit::WebPage*, bool) + 207
    15  com.apple.WebKit2                       0x00007fff9a3ac52f WebKit::WebPage::mouseEvent(WebKit::WebMouseEvent const&) + 221
    16  com.apple.WebKit2                       0x00007fff9a3ac2ec void CoreIPC::handleMessage<Messages::WebPage::MouseEvent, WebKit::WebPage, void (WebKit::WebPage::*)(WebKit::WebMouseEvent const&)>(CoreIPC::MessageDecoder&, WebKit::WebPage*, void (WebKit::WebPage::*)(WebKit::WebMouseEvent const&)) + 83
    17  com.apple.WebKit2                       0x00007fff9a378ec4 WebKit::WebPage::didReceiveWebPageMessage(CoreIPC::Connection*, CoreIPC::MessageDecoder&) + 1248
    18  com.apple.WebKit2                       0x00007fff9a362b6b CoreIPC::MessageReceiverMap::dispatchMessage(CoreIPC::Connection*, CoreIPC::MessageDecoder&) + 125
    19  com.apple.WebKit2                       0x00007fff9a362a50 WebKit::WebProcess::didReceiveMessage(CoreIPC::Connection*, CoreIPC::MessageDecoder&) + 28
    20  com.apple.WebKit2                       0x00007fff9a3629b9 CoreIPC::Connection::dispatchMessage(***::PassOwnPtr<CoreIPC::MessageDecoder>) + 101
    21  com.apple.WebKit2                       0x00007fff9a3628e2 CoreIPC::Connection::dispatchOneMessage() + 106
    22  com.apple.WebCore                       0x00007fff97e5c9ce WebCore::RunLoop::performWork() + 270
    23  com.apple.WebCore                       0x00007fff97e5c8a2 WebCore::RunLoop::performWork(void*) + 34
    24  com.apple.CoreFoundation                0x00007fff946e08f1 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    25  com.apple.CoreFoundation                0x00007fff946d2062 __CFRunLoopDoSources0 + 242
    26  com.apple.CoreFoundation                0x00007fff946d17ef __CFRunLoopRun + 831
    27  com.apple.CoreFoundation                0x00007fff946d1275 CFRunLoopRunSpecific + 309
    28  com.apple.HIToolbox                     0x00007fff9a852f0d RunCurrentEventLoopInMode + 226
    29  com.apple.HIToolbox                     0x00007fff9a852cb7 ReceiveNextEventCommon + 479
    30  com.apple.HIToolbox                     0x00007fff9a852abc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    31  com.apple.AppKit                        0x00007fff90a8228e _DPSNextEvent + 1434
    32  com.apple.AppKit                        0x00007fff90a818db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    33  com.apple.AppKit                        0x00007fff90a759cc -[NSApplication run] + 553
    34  com.apple.AppKit                        0x00007fff90a60803 NSApplicationMain + 940
    35  com.apple.XPCService                    0x00007fff8cf49c0f _xpc_main + 385
    36  libxpc.dylib                            0x00007fff928a8b2e xpc_main + 399
    37  com.apple.WebKit.WebContent             0x0000000101656ba0 0x101656000 + 2976
    38  libdyld.dylib                           0x00007fff91aad5fd start + 1
    Thread 1:
    0   libsystem_kernel.dylib                  0x00007fff9abe9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff97de2f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff97de5fb9 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff9abea662 kevent64 + 10
    1   libdispatch.dylib                       0x00007fff8cfa243d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00007fff8cfa2152 _dispatch_mgr_thread + 52
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff9abe9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff97de2f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff97de5fb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00007fff9abe9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff97de2f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff97de5fb9 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00007fff9abe5a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff9abe4d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff946d2315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff946d1939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff946d1275 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x00007fff90c221ce _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00007fff97de1899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00007fff97de172a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00007fff97de5fc9 thread_start + 13
    Thread 6:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x00007fff9abe9716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff97de3c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff98ebc596 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore                0x00007fff98ebc0b5 JSC::BlockAllocator::blockFreeingThreadMain() + 117
    4   com.apple.JavaScriptCore                0x00007fff98eb144f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff97de1899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff97de172a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff97de5fc9 thread_start + 13
    Thread 7:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff9abe9716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00007fff97de3c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x00007fff98ebcbb7 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x00007fff98ebca48 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x00007fff98eb144f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00007fff97de1899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00007fff97de172a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00007fff97de5fc9 thread_start + 13
    Thread 8:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff9abe5a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff9abe4d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff946d2315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff946d1939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff946d1275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x00007fff91b24907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation                    0x00007fff91b2470b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x00007fff97de1899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00007fff97de172a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00007fff97de5fc9 thread_start + 13
    Thread 9:: WebCore: Scrolling
    0   libsystem_kernel.dylib                  0x00007fff9abe5a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff9abe4d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x00007fff946d2315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x00007fff946d1939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x00007fff946d1275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00007fff947869d1 CFRunLoopRun + 97
    6   com.apple.WebCore                       0x00007fff97f09334 WebCore::ScrollingThread::initializeRunLoop() + 244
    7   com.apple.JavaScriptCore                0x00007fff98eb144f ***::wtfThreadEntryPoint(void*) + 15
    8   libsystem_pthread.dylib                 0x00007fff97de1899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00007fff97de172a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00007fff97de5fc9 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff9abe9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff97de2f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff97de5fb9 start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff9abe9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff97de2f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff97de5fb9 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff9abe9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff97de2f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff97de5fb9 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff9abe9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff97de2f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff97de5fb9 start_wqthread + 13
    Thread 14:
    0   libsystem_kernel.dylib                  0x00007fff9abe9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff97de2f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff97de5fb9 start_wqthread + 13
    Thread 15:
    0   libsystem_kernel.dylib                  0x00007fff9abe9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff97de2f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff97de5fb9 start_wqthread + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x00007fff9abe9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff97de2f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff97de5fb9 start_wqthread + 13
    Thread 17:
    0   libsystem_kernel.dylib                  0x00007fff9abe9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00007fff97de2f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00007fff97de5fb9 start_wqthread + 13
    Thread 18:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff9abe99aa __select + 10
    1   com.apple.CoreFoundation                0x00007fff9471dd43 __CFSocketManager + 867
    2   libsystem_pthread.dylib                 0x00007fff97de1899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00007fff97de172a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00007fff97de5fc9 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000129bfe175  rbx: 0x0000000000000000  rcx: 0x00000001034286e8  rdx: 0x0000000000000002
      rdi: 0x000000010824d1e0  rsi: 0x000000010810f520  rbp: 0x00007fff5e5a7300  rsp: 0x00007fff5e5a72d0
       r8: 0x00007fff7eace980   r9: 0x0000000000000002  r10: 0x00000000321d122f  r11: 0x00000000321d110f
      r12: 0x00007fff5e5a7470  r13: 0x00007fff5e5a73c8  r14: 0x00007fff5e5a73c8  r15: 0x000000010ae9f080
      rip: 0x00007fff9833ea7b  rfl: 0x0000000000010202  cr2: 0x0000000129bfe175
    Logical CPU:     0
    Error Code:      0x00000006
    Trap Number:     14
    Binary Images:
           0x101656000 -        0x101656ff4  com.apple.WebKit.WebContent (9537 - 9537.71) <AEC9C0B3-A6B5-30E4-A5EE-480DAF65203F> /System/Library/PrivateFrameworks/WebKit2.framework/Versions/A/XPCServices/com. apple.WebKit.WebContent.xpc/Contents/MacOS/com.apple.WebKit.WebContent
           0x101661000 -        0x101661fff  WebProcessShim.dylib (7537.71) <023402A6-15F8-33C5-A734-560E0F234631> /System/Library/PrivateFrameworks/WebKit2.framework/WebProcess.app/Contents/Mac OS/WebProcessShim.dylib
           0x105a3f000 -        0x105a4afff  libGPUSupport.dylib (9.0.83) <AF15BF74-F9B3-35B9-8728-3B3A2EB6E432> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
           0x105a51000 -        0x10619bff7  libclh.dylib (4.0.3 - 4.0.3) <4A998D5D-A2C8-326F-AD0F-F0E2F60E920A> /System/Library/Extensions/GeForceTeslaGLDriver.bundle/Contents/MacOS/libclh.dy lib
           0x106695000 -        0x106699ffd  com.apple.audio.AppleHDAHALPlugIn (2.5.2 - 2.5.2fc2) <DEB558B7-BACF-3871-A021-B3A904F4FB44> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
        0x123440000000 -     0x123440867ff7  com.apple.GeForceTeslaGLDriver (8.18.27 - 8.1.8) <5B0E2B4A-D4E6-3C65-A8D5-87F24E79D432> /System/Library/Extensions/GeForceTeslaGLDriver.bundle/Contents/MacOS/GeForceTe slaGLDriver
        0x7fff6f7cc000 -     0x7fff6f7ff817  dyld (239.3) <D1DFCF3F-0B0C-332A-BCC0-87A851B570FF> /usr/lib/dyld
        0x7fff8cf48000 -     0x7fff8cf4eff7  com.apple.XPCService (2.0 - 1) <2CE632D7-FE57-36CF-91D4-C57D0F2E0BFE> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff8cf4f000 -     0x7fff8cf54fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
        0x7fff8cf55000 -     0x7fff8cf62ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
        0x7fff8cf63000 -     0x7fff8cf9bff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8cf9c000 -     0x7fff8cf9efff  com.apple.Mangrove (1.0 - 1) <72F5CBC7-4E78-374E-98EA-C3700136904E> /System/Library/PrivateFrameworks/Mangrove.framework/Versions/A/Mangrove
        0x7fff8cf9f000 -     0x7fff8cfb9fff  libdispatch.dylib (339.1.9) <46878A5B-4248-3057-962C-6D4A235EEF31> /usr/lib/system/libdispatch.dylib
        0x7fff8cfba000 -     0x7fff8cfbdffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8cff3000 -     0x7fff8d021ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8d02c000 -     0x7fff8d056ff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
        0x7fff8d057000 -     0x7fff8d97305f  com.apple.CoreGraphics (1.600.0 - 599.7) <7D0FD5A7-A061-39BA-8E00-723825D2C4DD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8d9f4000 -     0x7fff8da04fff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
        0x7fff8da06000 -     0x7fff8da13ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
        0x7fff8da14000 -     0x7fff8da1dff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
        0x7fff8da22000 -     0x7fff8da49ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
        0x7fff8da66000 -     0x7fff8deb4fff  com.apple.VideoToolbox (1.0 - 1273.29) <6E38291D-7A81-3033-AFB9-61ABD38B6371> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
        0x7fff8deb5000 -     0x7fff8deb6fff  libquit.dylib (161) <12162287-B8C8-36D0-B000-ADC28731FC66> /usr/lib/libquit.dylib
        0x7fff8df17000 -     0x7fff8df18fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
        0x7fff8df2c000 -     0x7fff8df2efff  com.apple.EFILogin (2.0 - 2) <C360E8AF-E9BB-3BBA-9DF0-57A92CEF00D4> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff8e45c000 -     0x7fff8e4c2fff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff8e4c3000 -     0x7fff8e4dcff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8e4dd000 -     0x7fff8e55dfff  com.apple.CoreSymbolication (3.0 - 141) <B018335C-698B-3F87-AF1C-6115C4FA8954> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8e55e000 -     0x7fff8e598ff3  com.apple.bom (12.0 - 192) <989690DB-B9CC-3DB5-89AE-B5D33EDC474E> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8e5a5000 -     0x7fff8e6c7ff1  com.apple.avfoundation (2.0 - 651.12) <03E595B7-A559-3D4D-90E9-BCA603E3A39E> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8e70a000 -     0x7fff8e715ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8eb9c000 -     0x7fff8eba0ff7  libGIF.dylib (1038) <C29B4323-1B9E-36B9-96C2-7CEDBAA124F0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff8eba1000 -     0x7fff8ebcdfff  com.apple.CoreServicesInternal (184.8 - 184.8) <707E05AE-DDA8-36FD-B0FF-7F15A061B46A> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8ebd3000 -     0x7fff8ed6fff7  com.apple.QuartzCore (1.8 - 332.0) <994D1E0A-64B6-398C-B9A2-C362F02DE943> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8ed70000 -     0x7fff8f270ffb  com.apple.Safari.framework (9537 - 9537.71) <C27DBF3C-7BE7-3422-9081-DE09461F9B62> /System/Library/PrivateFrameworks/Safari.framework/Versions/A/Safari
        0x7fff8f271000 -     0x7fff8f275ff7  libheimdal-asn1.dylib (323.12) <063A01C2-E547-39D9-BB42-4CC8E64ADE70> /usr/lib/libheimdal-asn1.dylib
        0x7fff8f276000 -     0x7fff8f2ceff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff8f2cf000 -     0x7fff8f322fff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff8f32c000 -     0x7fff8f334fff  libMatch.1.dylib (19) <021293AB-407D-309A-87F5-8E782F46753E> /usr/lib/libMatch.1.dylib
        0x7fff8f335000 -     0x7fff8f342ff4  com.apple.Librarian (1.2 - 1) <F1A2744D-8536-32C7-8218-9972C6300DAE> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff8f343000 -     0x7fff8f355fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8f356000 -     0x7fff8f359fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8f35a000 -     0x7fff8f3e6ff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8f3e7000 -     0x7fff8f42cff7  libcurl.4.dylib (78) <A722B4F0-1F6C-3E16-9CB1-4C6ADC15221E> /usr/lib/libcurl.4.dylib
        0x7fff8f42d000 -     0x7fff8f43fff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8f440000 -     0x7fff8f491ff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8fdf9000 -     0x7fff8fee0ff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
        0x7fff8fef6000 -     0x7fff8ff25ff7  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <404369C0-ED9F-3010-8D2F-BC55285F7808> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff8ff26000 -     0x7fff9002bfff  com.apple.ImageIO.framework (3.3.0 - 1038) <2C058216-C6D8-3380-A7EA-92A3F04520C1> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff9004e000 -     0x7fff9042fffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff90430000 -     0x7fff90430fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff904ed000 -     0x7fff90a5dfff  com.apple.CoreAUC (6.22.08 - 6.22.08) <F306D552-2220-3160-88EA-C916193C5EFD> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff90a5e000 -     0x7fff915d2ff7  com.apple.AppKit (6.9 - 1265) <0E9FC8BF-DA3C-34C5-91CC-12BC922B5F01> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff91625000 -     0x7fff9165eff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff918e8000 -     0x7fff918eaff7  com.apple.securityhi (9.0 - 55005) <405E2BC6-2B6F-3B6B-B48E-2FD39214F052> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff91911000 -     0x7fff91912ff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff91913000 -     0x7fff91972fff  com.apple.framework.CoreWLAN (4.0 - 400.45.1) <775F9444-8059-30A2-8058-7F7ACD68CCF1> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff91973000 -     0x7fff91982ff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff91983000 -     0x7fff919a0ff7  com.apple.framework.Apple80211 (9.0 - 900.47) <C897AFE6-DD73-387D-816A-67252A564207> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff919bb000 -     0x7fff91aa9fff  libJP2.dylib (1038) <6C8179F5-8063-3ED6-A7C2-D5603DECDF28> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff91aaa000 -     0x7fff91aadff7  libdyld.dylib (239.3) <62F4D752-4089-31A8-8B73-B95A68893B3C> /usr/lib/system/libdyld.dylib
        0x7fff91aae000 -     0x7fff91abcfff  com.apple.opengl (9.0.83 - 9.0.83) <AF467644-7B1D-327A-AC47-CECFCAF61990> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff91abd000 -     0x7fff91dbcfff  com.apple.Foundation (6.9 - 1056) <D608EDFD-9634-3573-9B7E-081C7D085F7A> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff91dbd000 -     0x7fff91de6fff  GLRendererFloat (9.0.83) <1F1160A8-5047-3CEE-AC1E-D29520D0B367> /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
        0x7fff91de7000 -     0x7fff91e42ffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff91e43000 -     0x7fff91e82fff  libGLU.dylib (9.0.83) <8B457205-513B-3477-AE9C-3AD979D5FE11> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff91ee4000 -     0x7fff91eeafff  com.apple.AOSNotification (1.7.0 - 760.3) <7901B867-60F7-3645-BB3E-18C51A6FBCC6> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
        0x7fff91f0c000 -     0x7fff91f7bff1  com.apple.ApplicationServices.ATS (360 - 363.1) <88976B22-A9B8-3E7B-9AE6-0B8E09A968FC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff91f7c000 -     0x7fff92045fff  com.apple.LaunchServices (572.23 - 572.23) <8D955BDE-2C4C-3DD4-B4D7-2D916174FE1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff920dc000 -     0x7fff92164ff7  com.apple.CorePDF (4.0 - 4) <92D15ED1-D2E1-3ECB-93FF-42888219A99F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff92165000 -     0x7fff9216dff3  libCGCMS.A.dylib (599.7) <92AA4E85-7633-36E2-BAD0-7B1A2E48E75C> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff92240000 -     0x7fff9224dfff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff9224e000 -     0x7fff922feff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff923d0000 -     0x7fff923eeff7  com.apple.Accounts (113 - 113) <FEB37642-C973-3CD2-B279-142492266A16> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff923ef000 -     0x7fff92417ffb  libRIP.A.dylib (599.7) <6F528EE3-99F8-3871-BD60-1306495C27D5> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
        0x7fff92420000 -     0x7fff92431ff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
        0x7fff92432000 -     0x7fff92436fff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff92437000 -     0x7fff924c2fff  libCoreStorage.dylib (380) <AE14C2F3-0EF1-3DCD-BF2B-A24D97D3B372> /usr/lib/libCoreStorage.dylib
        0x7fff924c3000 -     0x7fff925f3ff7  com.apple.desktopservices (1.8 - 1.8) <09DC9BB8-432F-3C7A-BB08-956A2DDFC2DE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff925f4000 -     0x7fff92600ff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff92895000 -     0x7fff928b9fff  libxpc.dylib (300.1.17) <4554927A-9467-365C-91F1-5A116989DD7F> /usr/lib/system/libxpc.dylib
        0x7fff928ba000 -     0x7fff928e9fff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff928ea000 -     0x7fff928faffb  libsasl2.2.dylib (170) <C8E25710-68B6-368A-BF3E-48EC7273177B> /usr/lib/libsasl2.2.dylib
        0x7fff928fb000 -     0x7fff928fcff7  libsystem_sandbox.dylib (278.10) <A47E7E11-3C76-318E-B67D-98972B86F094> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff92955000 -     0x7fff929c2fff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff929c3000 -     0x7fff92a11fff  com.apple.opencl (2.3.57 - 2.3.57) <FC03A80D-543A-3448-83FF-D399C3A240D9> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff92a12000 -     0x7fff92a2bff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff92a54000 -     0x7fff92a83fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
        0x7fff92aed000 -     0x7fff92af5ffc  libGFXShared.dylib (9.0.83) <11A621C3-37A0-39CE-A69B-8739021BD79D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff92af6000 -     0x7fff92b26fff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff92b27000 -     0x7fff92b30fff  com.apple.speech.synthesis.framework (4.6.2 - 4.6.2) <0AAE45F0-FC6E-36B6-A6A7-73E6950A74AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff92b31000 -     0x7fff92b49ff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff92b4a000 -     0x7fff92c0dff7  com.apple.backup.framework (1.5 - 1.5) <92C8038F-CC00-3202-90D8-3C3AEC90986F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff92c0e000 -     0x7fff92c37fff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff92c38000 -     0x7fff92e90ff1  com.apple.security (7.0 - 55471) <233831C5-C457-3AD5-AFE7-E3E2DE6929C9> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff92f62000 -     0x7fff92febff7  libsystem_c.dylib (997.1.1) <61833FAA-7281-3FF9-937F-686B6F20427C> /usr/lib/system/libsystem_c.dylib
        0x7fff930be000 -     0x7fff930c4ff7  libsystem_platform.dylib (24.1.4) <331BA4A5-55CE-3B95-99EB-44E0C89D7FB8> /usr/lib/system/libsystem_platform.dylib
        0x7fff930c5000 -     0x7fff9317dff7  com.apple.DiscRecording (8.0 - 8000.4.6) <CDAAAD04-A1D0-3C67-ABCC-EFC9E8D44E7E> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff931bf000 -     0x7fff93248fff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff9325e000 -     0x7fff93268fff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
        0x7fff93269000 -     0x7fff9326bff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
        0x7fff9326c000 -     0x7fff9326efff  libCVMSPluginSupport.dylib (9.0.83) <E2AED858-6EEB-36C6-8C06-C3CF649A3CD5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff9326f000 -     0x7fff932b4ff6  com.apple.HIServices (1.22 - 466) <21807AF8-3BC7-32BB-AB96-7C35CB59D7F6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff932b5000 -     0x7fff932fefff  com.apple.CoreMedia (1.0 - 1273.29) <4ACD30BA-E9FE-3842-A8B7-E3BD63747867> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff932ff000 -     0x7fff9335fff2  com.apple.CoreUtils (1.9 - 190.4) <CBB5B4DC-2801-32B3-A31C-8811CCF99873> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
        0x7fff93360000 -     0x7fff9336

    See if you can troubleshoot Safari extensions and third party plug-ins before it crashes ..
    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 all other plug-ins. Quit and relaunch Safari to test.
    If that made a difference, instructions for troubleshooting plugins here.

  • How can i change 'selected menu link' color in af:menuTree

    Hi,
    Is there any selector specifically for highlighting the currently selected menu item in
    the af:menuTree.
    Right now in my skin it is taking the style of .AFDarkForeground:alias.
    I want my selected link to have different color other than AFDarkForeground:alias is having.
    Thanks,
    Sanjaykar

    Hi Frank,
    No it is not working..the style does not change..
    Any other selectors??
    Thanks,
    Sanjaykar

  • I'm having problems (1)selecting onscreen text, (2) having problems resizing menu boxes and selecting menues with the cursor. I'm not able to select menus and move them. I'm not sure how to correct this.

    I'm having problems (1) selecting onscreen text, (2) resizing menu boxes and selecting menues with the cursor. I'm not able to select menus and move them. I'm not sure how to correct this.

    1) This is because of software version 1.1. See this
    thread for some options as to how to go back to 1.0,
    which will correct the problem...
    http://discussions.apple.com/thread.jspa?threadID=3754
    59&tstart=0
    2) This tends to happen after videos. Give the iPod a
    minute or two to readjust. It should now be more
    accurate.
    3) This?
    iPod shows a folder icon with exclamation
    point
    4) Restore the iPod
    5) Try these...
    iPod Only Shows An Apple Logo and Will Not Start
    Up
    iPod Only Shows An Apple Logo
    I think 3,4, and 5 are related. Try the options I
    posted for each one.
    btabz
    I just noticed that one of the restore methods you posted was to put it into Disk Mode First rather than just use the resstore straight off, I Have tried that and seems to have solved the problem, If it has thank you. previously I have only tried just restoring it skipping this extra step. Hope my iPod stays healthy, if it doesnt its a warrenty job me thinks any way thanks again

  • In scene selection mode, can you make iDVD return to the scene selection menu after playing that scene without continuing to play all the other scenes?

    After selecting one scene from the scene selection menu, the following scenes play automatically, as if it were in "play movie" mode. Is there a way to stop that behavior and have the DVD return to the scene selection menu after playing just the selected scene?

    OK
    So what You want is a "Play All" button resp. a "Play one Chapter at a time" one.
    Then
    BAD News - There are Non ! in iDVD
    GOOD News - it can in part be faked.
    read on
    Play all resp. one chapter at a time
    Play All Button 
    1. There are NO - Play All - button in any version of iDVD
    2. It can be faked in several ways
    • Easiest and most fault proof way is to make a doublet movie containing All and with
    Chapters set to match. It will take up x2 space but is easy to understand and produce.
    Cons: Tried this in iMovie’11 by Exporting out each part as a full Quality QT.mov then Importing back into new events and putting these into a new project (Play All project). Resulting DVD had Audio that was OK (as parts) - BUT the picture was very bad and standing photo were cut of in height. So the Play All movie has to be created from same material and exactly in the same way as the individual parts + then Chapters has to be set to match.
    • It's said that one can put all movies into a Photo/SlideShow and this will also
    give the function of a Play All button - Tested - and ONE HAS TO un-cheque - Scale pictures to TV-Safe area else it will be a black frame all around and a small picture !
    Mike Evangelist1
    You might be able to get close to what you want by using a slideshow in iDVD. (It's not widely known, but you can put videos in a slideshow.) If you set the slide duration to manual, playback will pause after each movie/slide, and you can continue with the 'next' button.
    3. Using another program to do this e.g.. Roxio Toast™ where there is a Play All button option.
    Summary
    a. Making a Play All movie with same care as the individual Part movies - gives a very Good Result
    b. Using Roxio Toast™ - also an usable way to go
    Yours Bengt W

  • Printer selection in Forms 10g

    Hello,
    I am looking for a suggestion, to realize a printer selection in Forms 10g.
    For a migration I have to replace the command
    win_api_dialog.select_printer with something similar.
    Some threads suggest to implement a java class.
    Under
    How i select printer in Forms9i
    exist an example.
    The implementation there is based on the JDK 1.4.
    I need an implementation based on JDK 1.3.
    Inside of the JDK 1.3 exist only a simple printer dialog.
    (compare http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4645377 )
    Probably exist the option to use the C-API of WebUtil. The C-API could be used to start a printer dialog of a dll. I like to avoid this option, but if you an example for that option, I appreciate to see an example for that.
    In all other respects, I hope on your suggestions.

    I invest some more time on that topic, but did not found a solution to display a printer selection on the client.
    The only thing that i found in forum was that you can read the standard printer out the registry. But I would need all local installed printers.
    I hope on your help.

  • Photoshop cc 2014 missing 'focus area' item in the 'Select' menu

    I've installed the new photoshop cc 2014 (14.2.1 x 64)  but I can't find the new 'focus area' command in the 'Select' menu.

    Hi,
    Thank you for getting back to me. You’re absolutely correct. My Adobe Cloud app. was out of date. Once I updated Adobe Cloud it it notified me of the new photoshop update.
    Photoshop CC 2014 has just downloaded and I’m about to try it.
    Thanks again,
    Howard

  • How to upload data into form of Oracle EBS R12 using ATS ver 9.0

    Hi experts,
    Could you please guide me how to upload data into form on Oracle EBS R12 using Oracle Application Testing Suite verson 9.(The simpliest way)
    For example: I need to create user account on Oracle EBS. Normally, I use Dataloader to upload the data, however it just can upload one by one record, cannot upload multi record at same time. Moreover if the performance of server is low, so I will get the issue when using dataloader.
    Thanks in advance
    Best Regards
    Hieu

    Hi you can create Virtual users to enter data. Note than you have to name the objects accordingly.
    For Example default recording provided by Open script is ObjectNAME_(Index No of the object).
    when you record one iteration the name of any object would be ObjectNAME_(0)
    You can then create virtual users so the index will increment as the total number of Virtual users increases. Also you have to handle which row of your test data would get mapped to which Virtual user in the script run session.
    Thanks

  • File Upload in a Form

    I have a file upload in a form of mine.
    I can't style the upload to match the rest of my form. I have tried to target the id="FileAttachment" to no avail. I have tried adding classes and nothing responds.
    In Dreamweaver it shows as styled until it gets on the web.
    Here is the site: http://ubhape2remodel.businesscatalyst.com/careers
    Any Advice?
    Thanks!

    Thanks for the information.
    I cannot get it to work and I am unsure why.  I am not sure if I am not using the JS right or not adding something to the css. I am a bit confused.
    I am not all that good at javascript so I assume something here is off and I am just missing it.
    One other note: Is it possible to use my style of buttons and not an image (I would like the hover effect that I use on the buttons to apply to that one as well.) But not sure how this can be done or if it is possible.
    Any help would be very very much appreciated.
    http://ubhape2remodel.businesscatalyst.com/careers
    Thanks!

Maybe you are looking for