Bug in CF11 regarding the syntax of queries?

So I decided to try CF11 due to a bug in exceptional CF10 official.

Once I installed CF11, I get an error when you run the following code:

< name = "Cfquery LOCAL.stat_questions" datasource ="#APPLICATION.dsn #" > "

SELECT survey_questionID

OF tbl_survey_questions

;

< / cfquery >

< cfset LOCAL.this_statID = 1 >

< name = "cfquery LOCAL.subset" dbtype = "query" > "

SELECT survey_questionID

OF .stat_questions [LOCAL]

WHERE survey_questionID = < cfqueryparam cfsqltype = "cf_sql_numeric" value = "#LOCAL.this_statID #" >

;

< / cfquery >

The error I get is: "syntax error query queries. "
Met ';'.

If I remove the semicolon... No error! Is this a bug, or bad, but simply ignored, has always been the point?

Thank you


Here is the Bug #3779331 - query of query and SQL statements that end with semicolon

Kind regards

Anit Kumar

Tags: ColdFusion

Similar Questions

  • The syntax Checker bug with long PHP functions.

    I have two differrent pages that give the same type of bugs when opening the page with Dreamweaver CS5. I built a web application with PHP, HTML, CSS, MySQL and Javascirpt. There are many forms throughout the site and many forms are very long. For these specific pages that give a syntax error HTML form is inside a PHP for loop to repeat a desired number of times. I checked that there is not a syntax error, and the page works perfectly without php, html, css or javascript errors. The syntax error goes away if I close the loop PHP earlier in the script, but then I have actually a syntax with PHP and dreamweaver error says my code is perfect?

    <?php

     

              //this page is not accessable via broswer url

              if (!defined("_VALID_PHP"))

                        die('Direct access to this location is not allowed.');

     

              //Set session data from POST

              $_SESSION["intake"]["students"]["drug_of_choice"] = $_POST["drug_of_choice"];

              $_SESSION["intake"]["students"]["first_contact"] = $_POST["first_contact_yr"]."-".$_POST["first_contact_mo"]."-".$_POST["first_contact_da"];

              $_SESSION["intake"]["intakes"]["referral_source"] = $_POST["referral_source"];

              $_SESSION["intake"]["intakes"]["referral_reason"] = $_POST["referral_reason"];

              $_SESSION["intake"]["students"]["gender"] = $_POST["gender"];

              $_SESSION["intake"]["students"]["maiden_name"] = $_POST["maiden_name"];

              $_SESSION["intake"]["students"]["race"] = $_POST["race"];

              $_SESSION["intake"]["students"]["dl_state"] = $_POST["dl_state"];

              $_SESSION["intake"]["students"]["dl_num"] = $_POST["dl_num"];

              $_SESSION["intake"]["students"]["phone_number"] = $_POST["phone_number"];

              $_SESSION["intake"]["students"]["cell_number"] = $_POST["cell_number"];

              $_SESSION["intake"]["students"]["work_number"] = $_POST["work_number"];

              $_SESSION["intake"]["students"]["other_fax_number"] = $_POST["other_fax_number"];

              $_SESSION["intake"]["students"]["email"] = $_POST["email"];

              $_SESSION["intake"]["addresses"]["line_1"] = $_POST["line_1"];

              $_SESSION["intake"]["addresses"]["line_2"] = $_POST["line_2"];

              $_SESSION["intake"]["addresses"]["line_3"] = $_POST["line_3"];

              $_SESSION["intake"]["addresses"]["city"] = $_POST["city"];

              ($_POST["state_province_country"]=="Other") ? $_SESSION["intake"]["addresses"]["state_province_country"] =  $_POST["other_state"]: $_SESSION["intake"]["addresses"]["state_province_country"] = $_POST["state_province_country"];

              $_SESSION["intake"]["addresses"]["post_code"] = $_POST["post_code"];

              $_SESSION["intake"]["addresses"]["country"] = $_POST["country"];

              $_SESSION["intake"]["addresses"]["comments"] = $_POST["comments"];

     

              //how many contacts adding

              $num_contacts = $_POST["num_contacts"];

     

              //Set Page variables from session data

              $CARF_ID = $_SESSION["intake"]["students"]["carf_id"];

              $First_Name = $_SESSION["intake"]["students"]["first_name"];

              $Middle_Name = $_SESSION["intake"]["students"]["middle_name"];

              $Last_Name = $_SESSION["intake"]["students"]["last_name"];

     

    ?>

                        <div id="boxAddStudentDet" class="boxes">

                                  <div class="boxHeader">

                                      <div id="addStudentIcon" class="boxIcons">

                                </div>

                                <div class="boxTitle">

                                          <h2>Add Contacts for <?php echo $CARF_ID.": ".$First_Name." ".$Middle_Name." ".$Last_Name; ?></h2>

                                </div>

                                <div class="boxSliderBtns">

                                </div>

                            </div>

                            <div class="boxContent">

                                      <form id="addStudDet" name="addStudDet" action="addstudent.php?b=03" onsubmit="return validateForm(this,'comments[]','','','','','','','','email');" method="post" >

                                    <table id="StudDetformTable" class="full">

                                              <?php for($i=0;$i<$num_contacts;$i++){ ?>

                                        <tr>

                                                  <td colspan="2"><h3><b>Add New Contact</b></h3></td>

                                        </tr>

                                        <tr>

                                                  <td colspan="2"><h3>Contact's First Name </h3></td>

                                        </tr>

                                        <tr>

                                                  <td class="column1a"><input name="first_name[]" id="kin_f_name" type="text" /></td>

                                        </tr>

                                        <tr>

                                                  <td colspan="2"><h3>Contact's Last Name </h3></td>

                                        </tr>

                                        <tr>

                                                  <td class="column1a"><input name="last_name[]" id="kin_l_name" type="text" /></td>

                                        </tr>

                                        <tr>

                                                  <td class="column1a"><p>

                                                      <input type="checkbox" value="<?php print $i; ?>" name="telephone_release[]" />  Telephone Release<br />

                                                <input type="radio" value="<?php print $i; ?>" name="primary_contact" />  Primary Contact<br />

                                                <input type="checkbox" value="<?php print $i; ?>" name="emergency_contact[]" />  Emergency Contact<br />

                                                <input type="checkbox" value="<?php print $i; ?>" name="financier[]" />  Financier<br />

                                                <input type="checkbox" value="<?php print $i; ?>" name="send_ed_pack[]" />  Send Drug Education Pack

                                            </p></td>

                                        </tr>

                                        <tr>

                                                  <td colspan="2"><h3>Contact's Relationship </h3></td>

                                        </tr>

                                        <tr>

                                                  <td class="column1a">

                                                      <select name="relationship[]" id="kin_relation">

                                                          <option value=""></option>

                                                    <option value="Spouse">Spouse</option>

                                                    <option value="Biological Mother">Mother (Biological)</option>

                                                    <option value="Biological Father">Father (Biological)</option>

                                                    <option value="Daughter">Daughter</option>

                                                    <option value="Son">Son</option>

                                                    <option value="Sister">Full Sister</option>

                                                    <option value="Brother">Full Brother</option>

                                                    <option value="Aunt">Aunt</option>

                                                    <option value="Uncle">Uncle</option>

                                                    <option value="Grandmother">Grandmother</option>

                                                    <option value="Grandfather">Grandfather</option>

                                                    <option value="Step Mother">Step Mother</option>

                                                    <option value="Step Father">Step Father</option>

                                                    <option value="Half Sister">Half Sister</option>

                                                    <option value="Half Brother">Half Brother</option>

                                                    <option value="Step Sister">Step Sister</option>

                                                    <option value="Step Brother">Step Brother</option>

                                                    <option value="Mother in law">Mother-In-Law</option>

                                                    <option value="Father in law">Father-In-Law</option>

                                                    <option value="Sister in law">Sister-In-Law</option>

                                                    <option value="Brother in law">Brother-In-Law</option>

                                                    <option value="Daughter in law">Daughter-In-Law</option>

                                                    <option value="Son in law">Son-In-Law</option>

                                                    <option value="Ex-spouse">Ex-spouse</option>

                                                    <option value="Co-worker">Co-worker</option>

                                                    <option value="Friend">Friend</option>

                                                    <option value="Other Relative">Other Relative (Specify in Comments)</option>

                                                    <option value="Other">Other (Specify in Comments)</option>

                                                      </select>

                                            </td>

                                        </tr>

                                        <tr>

                                                  <td colspan="2"><h3>Contact's Phone Number</h3></td>

                                        </tr>

                                        <tr>

                                                  <td class="column1a"><input name="k_phnum_<?php print $i; ?>" id="k_phnum_<?php print $i; ?>" type="radio" value="yes" onClick="notAnsweredQues('k_phNumber_<?php print $i; ?>', this, true);" /><input type="text" name="phone_number[]" id="k_phNumber_<?php print $i; ?>" onkeydown="setVal('k_phnum_<?php print $i; ?>')" onkeypress="return onlyChar(event,true,false,false,false,'','');" />  <input name="k_phnum_<?php print $i; ?>" type="radio" onClick="notAvailableQues('k_phNumber_<?php print $i; ?>', this);" />No Number</td>

                                            <td class="alignright"><input name="k_phnum_<?php print $i; ?>" type="radio" onClick="notAnsweredQues('k_phNumber_<?php print $i; ?>', this);" />Question Not Answered</td>

                                        </tr>

                                        <tr>

                                                  <td colspan="2"><h3>Contact's Cell Phone Number</h3></td>

                                        </tr>

                                        <tr>

                                                  <td class="column1a"><input name="k_cell_phnum_<?php print $i; ?>" id="k_cell_phnum_<?php print $i; ?>" type="radio" onClick="notAnsweredQues('k_cellNumber_<?php print $i; ?>', this, true);" /><input type="text" name="cell_number[]" id="k_cellNumber_<?php print $i; ?>" onkeydown="setVal('k_cell_phnum_<?php print $i; ?>')" onkeypress="return onlyChar(event,true,false,false,false,'','');" />  <input name="k_cell_phnum_<?php print $i; ?>" type="radio" onClick="notAvailableQues('k_cellNumber_<?php print $i; ?>', this);" />No Number</td>

                                            <td class="alignright"><input name="k_cell_phnum_<?php print $i; ?>" type="radio" onClick="notAnsweredQues('k_cellNumber_<?php print $i; ?>', this);" />Question Not Answered</td>

                                        </tr>

                                        <tr>

                                                  <td colspan="2"><h3>Contact's Other Phone Number</h3></td>

                                        </tr>

                                        <tr>

                                                  <td class="column1a"><input name="k_other_phnum_<?php print $i; ?>" id="k_other_phnum_<?php print $i; ?>" type="radio" onClick="notAnsweredQues('k_otherNumber_<?php print $i; ?>', this, true);" /><input type="text" name="other_number[]" id="k_otherNumber_<?php print $i; ?>" onkeydown="setVal('k_other_phnum_<?php print $i; ?>')" onkeypress="return onlyChar(event,true,false,false,false,'','');" />  <input name="k_other_phnum" type="radio" onClick="notAvailableQues('k_otherNumber_<?php print $i; ?>', this);" />No Number</td>

                                            <td class="alignright"><input name="k_other_phnum_<?php print $i; ?>" type="radio" onClick="notAnsweredQues('k_otherNumber_<?php print $i; ?>', this);" />Question Not Answered</td>

                                        </tr>

                                        <tr>

                                                  <td colspan="2"><h3>Contact's Email Address</h3></td>

                                        </tr>

                                        <tr>

                                                  <td class="column1a"><input name="k_emailSel_<?php print $i; ?>" id="k_emailSel_<?php print $i; ?>" type="radio" onClick="notAnsweredQues('k_email_<?php print $i; ?>', this, true);" /><input name="email[]" id="k_email_<?php print $i; ?>" type="text" onkeydown="setVal('k_emailSel_<?php print $i; ?>')" onblur="validateEmail(this)" />  <input name="k_emailSel_<?php print $i; ?>" type="radio" onClick="notAvailableQues('k_email_<?php print $i; ?>', this);" />No Email</td>

                                            <td class="alignright"><input name="k_emailSel_<?php print $i; ?>" type="radio" onClick="notAnsweredQues('k_email_<?php print $i; ?>', this);" />Question Not Answered</td>

                                        </tr>

                                        <tr>

                                                  <td><h3>What is the student's address?</h3></td>

                                        </tr>

                                        <tr>

                                                  <td class="indentation"><input type="text" name="line_1[]" id="Line_1_<?php print $i; ?>" value="Line 1" style="width:450px;" onfocus="if(this.value==this.defaultValue)this.value='';" onblur="if(this.value=='')this.value=this.defaultValue;" /></td>

                                        </tr>

                                        <tr>

                                                  <td class="indentation"><input type="text" name="line_2[]" id="Line_2_<?php print $i; ?>" value="Line 2" style="width:450px;" onfocus="if(this.value==this.defaultValue)this.value='';" onblur="if(this.value=='')this.value=this.defaultValue;" /></td>

                                        </tr>

                                        <tr>

                                                  <td class="indentation"><input type="text" name="line_3[]" id="Line_3_<?php print $i; ?>" value="Line 3" style="width:450px;" onfocus="if(this.value==this.defaultValue)this.value='';" onblur="if(this.value=='')this.value=this.defaultValue;" /></td>

                                        </tr>

                                        <tr>

                                                  <td class="indentation">

                                                <input type="text" name="city[]" id="City_<?php print $i; ?>" value="City" onfocus="if(this.value==this.defaultValue)this.value='';" onblur="if(this.value=='')this.value=this.defaultValue;" /> 

                                                <select name="state_province_country[]" id="State_<?php print $i; ?>" onchange="

                                                if(this.value==''){

                                                          document.getElementById('otherState_<?php print $i; ?>').style.display = 'none';

                                                    document.getElementById('otherState_<?php print $i; ?>').value='Other State';

                                                    setInput('Country_<?php print $i; ?>','','select',false);

                                                } else if(this.value=='Other'){

                                                          document.getElementById('otherState_<?php print $i; ?>').style.display = 'inline-block';

                                                    document.getElementById('otherState_<?php print $i; ?>').value='';

                                                    setInput('Country_<?php print $i; ?>','','select',false);

                                                }else{

                                                          document.getElementById('otherState_<?php print $i; ?>').style.display = 'none';

                                                    document.getElementById('otherState_<?php print $i; ?>').value='Other State';

                                                    setInput('Country_<?php print $i; ?>','U.S.A.','select',true);

                                                }" >

                                                    <option value="">Select State</option>

                                                    <option value="AL">Alabama</option>

                                                    <option value="AK">Alaska</option>

                                                    <option value="AZ">Arizona</option>

                                                    <option value="AR">Arkansas</option>

                                                    <option value="CA">California</option>

                                                    <option value="CO">Colorado</option>

                                                    <option value="CT">Connecticut</option>

                                                    <option value="DE">Delaware</option>

                                                    <option value="FL">Florida</option>

                                                    <option value="GA">Georgia</option>

                                                    <option value="HI">Hawaii</option>

                                                    <option value="ID">Idaho</option>

                                                    <option value="IL">Illinois</option>

                                                    <option value="IN">Indiana</option>

                                                    <option value="IA">Iowa</option>

                                                    <option value="KS">Kansas</option>

                                                    <option value="KY">Kentucky</option>

                                                    <option value="LA">Louisiana</option>

                                                    <option value="ME">Maine</option>

                                                    <option value="MD">Maryland</option>

                                                    <option value="MA">Massachusetts</option>

                                                    <option value="MI">Michigan</option>

                                                    <option value="MN">Minnesota</option>

                                                    <option value="MS">Mississippi</option>

                                                    <option value="MO">Missouri</option>

                                                    <option value="MT">Montana</option>

                                                    <option value="NE">Nebraska</option>

                                                    <option value="NV">Nevada</option>

                                                    <option value="NH">New Hampshire</option>

                                                    <option value="NJ">New Jersey</option>

                                                    <option value="NM">New Mexico</option>

                                                    <option value="NY">New York</option>

                                                    <option value="NC">North Carolina</option>

                                                    <option value="ND">North Dakota</option>

                                                    <option value="OH">Ohio</option>

                                                    <option value="OK">Oklahoma</option>

                                                    <option value="OR">Oregon</option>

                                                    <option value="PA">Pennsylvania</option>

                                                    <option value="RI">Rhode Island</option>

                                                    <option value="SC">South Carolina</option>

                                                    <option value="SD">South Dakota</option>

                                                    <option value="TN">Tennessee</option>

                                                    <option value="TX">Texas</option>

                                                    <option value="UT">Utah</option>

                                                    <option value="VT">Vermont</option>

                                                    <option value="VA">Virginia</option>

                                                    <option value="WA">Washington</option>

                                                    <option value="WV">West Virginia</option>

                                                    <option value="WI">Wisconsin</option>

                                                    <option value="WY">Wyoming</option>

                                                    <option value="Other">Other Specify:</option>

                                                </select>

                                                <input type="text" name="other_state[]" id="otherState_<?php print $i; ?>" value="Other State" style="display:none;" />

                                                <input type="text" name="post_code[]" id="Zip_PostalCode_<?php print $i; ?>" value="ZIP" onfocus="if(this.value==this.defaultValue)this.value='';" onblur="if(this.value=='')this.value=this.defaultValue;" />

                                            </td>

                                        </tr>

                                        <tr>

                                                  <td><h3>Country</h3></td>

                                        </tr>

                                        <tr>

                                                  <td>

                                                <select name="country[]" id="Country_<?php print $i; ?>">

                                                    <option value="">Select Country</option>

                                                    <option value="U.S.A.">United States of America</option>

                                                    <option value="Afganistan">Afghanistan</option>

                                                    <option value="Albania">Albania</option>

                                                    <option value="Algeria">Algeria</option>

                                                    <option value="American Samoa">American Samoa</option>

                                                    <option value="Andorra">Andorra</option>

                                                    <option value="Angola">Angola</option>

                                                    <option value="Anguilla">Anguilla</option>

                                                    <option value="Antigua &amp; Barbuda">Antigua &amp; Barbuda</option>

                                                    <option value="Argentina">Argentina</option>

                                                    <option value="Armenia">Armenia</option>

                                                    <option value="Aruba">Aruba</option>

                                                    <option value="Australia">Australia</option>

                                                    <option value="Austria">Austria</option>

                                                    <option value="Azerbaijan">Azerbaijan</option>

                                                    <option value="Bahamas">Bahamas</option>

                                                    <option value="Bahrain">Bahrain</option>

                                                    <option value="Bangladesh">Bangladesh</option>

                                                    <option value="Barbados">Barbados</option>

                                                    <option value="Belarus">Belarus</option>

                                                    <option value="Belgium">Belgium</option>

                                                    <option value="Belize">Belize</option>

                                                    <option value="Benin">Benin</option>

                                                    <option value="Bermuda">Bermuda</option>

                                                    <option value="Bhutan">Bhutan</option>

                                                    <option value="Bolivia">Bolivia</option>

                                                    <option value="Bonaire">Bonaire</option>

                                                    <option value="Bosnia &amp; Herzegovina">Bosnia &amp; Herzegovina</option>

                                                    <option value="Botswana">Botswana</option>

                                                    <option value="Brazil">Brazil</option>

                                                    <option value="British Indian Ocean Ter">British Indian Ocean Ter</option>

                                                    <option value="Brunei">Brunei</option>

                                                    <option value="Bulgaria">Bulgaria</option>

                                                    <option value="Burkina Faso">Burkina Faso</option>

                                                    <option value="Burundi">Burundi</option>

                                                    <option value="Cambodia">Cambodia</option>

                                                    <option value="Cameroon">Cameroon</option>

                                                    <option value="Canada">Canada</option>

                                                    <option value="Canary Islands">Canary Islands</option>

                                                    <option value="Cape Verde">Cape Verde</option>

                                                    <option value="Cayman Islands">Cayman Islands</option>

                                                    <option value="Central African Republic">Central African Republic</option>

                                                    <option value="Chad">Chad</option>

                                                    <option value="Channel Islands">Channel Islands</option>

                                                    <option value="Chile">Chile</option>

                                                    <option value="China">China</option>

                                                    <option value="Christmas Island">Christmas Island</option>

                                                    <option value="Cocos Island">Cocos Island</option>

                                                    <option value="Colombia">Colombia</option>

                                                    <option value="Comoros">Comoros</option>

                                                    <option value="Congo">Congo</option>

                                                    <option value="Cook Islands">Cook Islands</option>

                                                    <option value="Costa Rica">Costa Rica</option>

                                                    <option value="Cote DIvoire">Cote D'Ivoire</option>

                                                    <option value="Croatia">Croatia</option>

                                                    <option value="Cuba">Cuba</option>

                                                    <option value="Curaco">Curacao</option>

                                                    <option value="Cyprus">Cyprus</option>

                                                    <option value="Czech Republic">Czech Republic</option>

                                                    <option value="Denmark">Denmark</option>

                                                    <option value="Djibouti">Djibouti</option>

                                                    <option value="Dominica">Dominica</option>

                                                    <option value="Dominican Republic">Dominican Republic</option>

                                                    <option value="East Timor">East Timor</option>

                                                    <option value="Ecuador">Ecuador</option>

                                                    <option value="Egypt">Egypt</option>

                                                    <option value="El Salvador">El Salvador</option>

                                                    <option value="Equatorial Guinea">Equatorial Guinea</option>

                                                    <option value="Eritrea">Eritrea</option>

                                                    <option value="Estonia">Estonia</option>

                                                    <option value="Ethiopia">Ethiopia</option>

                                                    <option value="Falkland Islands">Falkland Islands</option>

                                                    <option value="Faroe Islands">Faroe Islands</option>

                                                    <option value="Fiji">Fiji</option>

                                                    <option value="Finland">Finland</option>

                                                    <option value="France">France</option>

                                                    <option value="French Guiana">French Guiana</option>

                                                    <option value="French Polynesia">French Polynesia</option>

                                                    <option value="French Southern Ter">French Southern Ter</option>

                                                    <option value="Gabon">Gabon</option>

                                                    <option value="Gambia">Gambia</option>

                                                    <option value="Georgia">Georgia</option>

                                                    <option value="Germany">Germany</option>

                                                    <option value="Ghana">Ghana</option>

                                                    <option value="Gibraltar">Gibraltar</option>

                                                    <option value="Great Britain">Great Britain</option>

                                                    <option value="Greece">Greece</option>

                                                    <option value="Greenland">Greenland</option>

                                                    <option value="Grenada">Grenada</option>

                                                    <option value="Guadeloupe">Guadeloupe</option>

                                                    <option value="Guam">Guam</option>

                                                    <option value="Guatemala">Guatemala</option>

                                                    <option value="Guinea">Guinea</option>

                                                    <option value="Guyana">Guyana</option>

                                                    <option value="Haiti">Haiti</option>

                                                    <option value="Hawaii">Hawaii</option>

                                                    <option value="Honduras">Honduras</option>

                                                    <option value="Hong Kong">Hong Kong</option>

                                                    <option value="Hungary">Hungary</option>

                                                    <option value="Iceland">Iceland</option>

                                                    <option value="India">India</option>

                                                    <option value="Indonesia">Indonesia</option>

                                                    <option value="Iran">Iran</option>

                                                    <option value="Iraq">Iraq</option>

                                                    <option value="Ireland">Ireland</option>

                                                    <option value="Isle of Man">Isle of Man</option>

                                                    <option value="Israel">Israel</option>

                                                    <option value="Italy">Italy</option>

                                                    <option value="Jamaica">Jamaica</option>

                                                    <option value="Japan">Japan</option>

                                                    <option value="Jordan">Jordan</option>

                                                    <option value="Kazakhstan">Kazakhstan</option>

                                                    <option value="Kenya">Kenya</option>

                                                    <option value="Kiribati">Kiribati</option>

                                                    <option value="Korea North">Korea North</option>

                                                    <option value="Korea Sout">Korea South</option>

                                                    <option value="Kuwait">Kuwait</option>

                                                    <option value="Kyrgyzstan">Kyrgyzstan</option>

                                                    <option value="Laos">Laos</option>

                                                    <option value="Latvia">Latvia</option>

                                                    <option value="Lebanon">Lebanon</option>

                                                    <option value="Lesotho">Lesotho</option>

                                                    <option value="Liberia">Liberia</option>

                                                    <option value="Libya">Libya</option>

                                                    <option value="Liechtenstein">Liechtenstein</option>

                                                    <option value="Lithuania">Lithuania</option>

                                                    <option value="Luxembourg">Luxembourg</option>

                                                    <option value="Macau">Macau</option>

                                                    <option value="Macedonia">Macedonia</option>

                                                    <option value="Madagascar">Madagascar</option>

                                                    <option value="Malaysia">Malaysia</option>

                                                    <option value="Malawi">Malawi</option>

                                                    <option value="Maldives">Maldives</option>

                                                    <option value="Mali">Mali</option>

                                                    <option value="Malta">Malta</option>

                                                    <option value="Marshall Islands">Marshall Islands</option>

                                                    <option value="Martinique">Martinique</option>

                                                    <option value="Mauritania">Mauritania</option>

                                                    <option value="Mauritius">Mauritius</option>

                                                    <option value="Mayotte">Mayotte</option>

                                                    <option value="Mexico">Mexico</option>

                                                    <option value="Midway Islands">Midway Islands</option>

                                                    <option value="Moldova">Moldova</option>

                                                    <option value="Monaco">Monaco</option>

                                                    <option value="Mongolia">Mongolia</option>

                                                    <option value="Montserrat">Montserrat</option>

                                                    <option value="Morocco">Morocco</option>

                                                    <option value="Mozambique">Mozambique</option>

                                                    <option value="Myanmar">Myanmar</option>

                                                    <option value="Nambia">Nambia</option>

                                                    <option value="Nauru">Nauru</option>

                                                    <option value="Nepal">Nepal</option>

                                                    <option value="Netherland Antilles">Netherland Antilles</option>

                                                    <option value="Netherlands">Netherlands (Holland, Europe)</option>

                                                    <option value="Nevis">Nevis</option>

                                                    <option value="New Caledonia">New Caledonia</option>

                                                    <option value="New Zealand">New Zealand</option>

                                                    <option value="Nicaragua">Nicaragua</option>

                                                    <option value="Niger">Niger</option>

                                                    <option value="Nigeria">Nigeria</option>

                                                    <option value="Niue">Niue</option>

                                                    <option value="Norfolk Island">Norfolk Island</option>

                                                    <option value="Norway">Norway</option>

                                                    <option value="Oman">Oman</option>

                                                    <option value="Pakistan">Pakistan</option>

                                                    <option value="Palau Island">Palau Island</option>

                                                    <option value="Palestine">Palestine</option>

                                                    <option value="Panama">Panama</option>

                                                    <option value="Papua New Guinea">Papua New Guinea</option>

                                                    <option value="Paraguay">Paraguay</option>

                                                    <option value="Peru">Peru</option>

                                                    <option value="Phillipines">Philippines</option>

                                                    <option value="Pitcairn Island">Pitcairn Island</option>

                                                    <option value="Poland">Poland</option>

                                                    <option value="Portugal">Portugal</option>

                                                    <option value="Puerto Rico">Puerto Rico</option>

                                                    <option value="Qatar">Qatar</option>

                                                    <option value="Republic of Montenegro">Republic of Montenegro</option>

                                                    <option value="Republic of Serbia">Republic of Serbia</option>

                                                    <option value="Reunion">Reunion</option>

                                                    <option value="Romania">Romania</option>

                                                    <option value="Russia">Russia</option>

                                                    <option value="Rwanda">Rwanda</option>

                                                    <option value="St Barthelemy">St Barthelemy</option>

                                                    <option value="St Eustatius">St Eustatius</option>

                                                    <option value="St Helena">St Helena</option>

                                                    <option value="St Kitts-Nevis">St Kitts-Nevis</option>

                                                    <option value="St Lucia">St Lucia</option>

                                                    <option value="St Maarten">St Maarten</option>

                                                    <option value="St Pierre &amp; Miquelon">St Pierre &amp; Miquelon</option>

                                                    <option value="St Vincent &amp; Grenadines">St Vincent &amp; Grenadines</option>

                                                    <option value="Saipan">Saipan</option>

                                                    <option value="Samoa">Samoa</option>

                                                    <option value="Samoa American">Samoa American</option>

                                                    <option value="San Marino">San Marino</option>

                                                    <option value="Sao Tome & Principe">Sao Tome &amp; Principe</option>

                                                    <option value="Saudi Arabia">Saudi Arabia</option>

                                                    <option value="Senegal">Senegal</option>

                                                    <option value="Seychelles">Seychelles</option>

                                                    <option value="Sierra Leone">Sierra Leone</option>

                                                    <option value="Singapore">Singapore</option>

                                                    <option value="Slovakia">Slovakia</option>

                                                    <option value="Slovenia">Slovenia</option>

                                                    <option value="Solomon Islands">Solomon Islands</option>

                                                    <option value="Somalia">Somalia</option>

                                                    <option value="South Africa">South Africa</option>

                                                    <option value="Spain">Spain</option>

                                                    <option value="Sri Lanka">Sri Lanka</option>

                                                    <option value="Sudan">Sudan</option>

                                                    <option value="Suriname">Suriname</option>

                                                    <option value="Swaziland">Swaziland</option>

                                                    <option value="Sweden">Sweden</option>

                                                    <option value="Switzerland">Switzerland</option>

                                                    <option value="Syria">Syria</option>

                                                    <option value="Tahiti">Tahiti</option>

                                                    <option value="Taiwan">Taiwan</option>

                                                    <option value="Tajikistan">Tajikistan</option>

                                                    <option value="Tanzania">Tanzania</option>

                                                    <option value="Thailand">Thailand</option>

                                                    <option value="Togo">Togo</option>

                                                    <option value="Tokelau">Tokelau</option>

                                                    <option value="Tonga">Tonga</option>

                                                    <option value="Trinidad &amp; Tobago">Trinidad &amp; Tobago</option>

                                                    <option value="Tunisia">Tunisia</option>

                                                    <option value="Turkey">Turkey</option>

                                                    <option value="Turkmenistan">Turkmenistan</option>

                                                    <option value="Turks &amp; Caicos Is">Turks &amp; Caicos Is</option>

                                                    <option value="Tuvalu">Tuvalu</option>

                                                    <option value="Uganda">Uganda</option>

                                                    <option value="Ukraine">Ukraine</option>

                                                    <option value="United Arab Erimates">United Arab Emirates</option>

                                                    <option value="United Kingdom">United Kingdom</option>

                                                    <option value="United States of America">United States of America</option>

                                                    <option value="Uraguay">Uruguay</option>

                                                    <option value="Uzbekistan">Uzbekistan</option>

                                                    <option value="Vanuatu">Vanuatu</option>

                                                    <option value="Vatican City State">Vatican City State</option>

                                                    <option value="Venezuela">Venezuela</option>

                                                    <option value="Vietnam">Vietnam</option>

                                                    <option value="Virgin Islands (Brit)">Virgin Islands (Brit)</option>

                                                    <option value="Virgin Islands (USA)">Virgin Islands (USA)</option>

                                                    <option value="Wake Island">Wake Island</option>

                                                    <option value="Wallis &amp; Futana Is">Wallis &amp; Futana Is</option>

                                                    <option value="Yemen">Yemen</option>

                                                    <option value="Zaire">Zaire</option>

                                                    <option value="Zambia">Zambia</option>

                                                    <option value="Zimbabwe">Zimbabwe</option>

                                                </select>

                                            </td>

                                        </tr>

                                        <tr>

                                                  <td><h3>Next of Kin's Comments</h3></td>

                                        </tr>

                                        <tr>

                                                  <td class="column1a" colspan="2">

                                                      <textarea name="comments[]" id="k_comments_<?php print $i; ?>" onkeyup="adjustHeight(this)" style="width:100%" ></textarea>

                                            </td>

                                        </tr>

                                        <tr>

                                                  <td colspan="2"><hr /></td>

                                        </tr>

                                        <?php } ?>

                                    </table>

                                    <input class="floatRight" name="submit" type="submit" value="NEXT" />

                                </form>

                                <div class="clearRight"></div>

                            </div>

                        </div>

    This page is necessary within the full html/php page. Dreamweaver says there is an error on line 236 which is

    <select name="country[]" id="Country_<?php print $i; ?>">

    but I know full and well that there is no error in this line of code or the code. There seems to be a bug with the syntax checker in Dreamweaver CS5. I don't know if this error would show most recent Dreamweaver versions, like everything I have is CS5. Thanks for the help of anybodies that can verify this bug or spot an error in my code.

    If I change the "wrong" line of the code of

    <select name="country[]" id="Country_<?php print $i;} ?>">

    Then the syntax error will disappear in Dreamweaver, but PHP error: "{Parse error: syntax error, unexpected '}' in /path_to_my_file/my_file.php on line 499" will then appear

    Hi Anthony,.

    We have been able to reproduce the problem at our end using the code you provided and we are investigating the same.

    We recorded an internal bug # 3612970 to follow up on this matter. We will try to prioritize and difficulty to future updates of Dreamweaver CC.

    Please let us know if you need assistance at any time. We will be happy to help you.

    Thank you

    Arindam

  • Component-level IP: generate and check the syntax error

    I tried to create a component for my device myRio level IP. I encountered this problem:

    File level information extraction superior synthesis. Please wait...
    Processing files...
    Vivado Simulator 2014.4
    Copyright 1986-1999, 2001-2014 Xilinx, Inc. All rights reserved.
    Running: C:/NIFPGA/programs/Vivado2014_4/patches/AR62969/vivado/bin/unwrapped/win32.o/xelab.exe xil_defaultlib.conf3B887A0FF22442ACAD7559670A4D090A-L xil_defaultlib-L unisim-L unimacro-L xilinxcorelib-L secureip-snapshot dll high - prj - clipsyn.prj
    Multi-threading is on. Using 6 son of a slave.
    Determine the order of compilation of HDL files.
    INFO: VHDL file analysis of [VRFC 10-163] 'C:/NIFPGA/iptemp/clip6BEF358BFCFF45AD8C68F5AB63F88A19/top.vhd' in the xil_defaultlib library
    INFO: [VRFC 10-307] analysis top part entity
    INFO: VHDL file analysis of [VRFC 10-163] 'C:/NIFPGA/iptemp/clip6BEF358BFCFF45AD8C68F5AB63F88A19/clock_div.vhd' in the xil_defaultlib library
    INFO: [VRFC 10-307] analysis feature clock_div
    INFO: VHDL file analysis of [VRFC 10-163] 'C:/NIFPGA/iptemp/clip6BEF358BFCFF45AD8C68F5AB63F88A19/pwmbuffer.vhd' in the xil_defaultlib library
    INFO: [VRFC 10-307] analysis feature pwmBuffer
    From static development
    Completed the static development
    Starting analysis of simulation data flow
    Filled with simulation data flow analysis
    Resolution for the simulation time is 1ps
    Compile the std.standard package
    Compile the ieee.std_logic_1164 package
    Compile the package ieee.numeric_std
    Compilation of behavioural architecture of the entity xil_defaultlib.clock_div [\clock_div (40000000,400000)------]
    Compilation of behavioural architecture of the entity xil_defaultlib.pwmBuffer [pwmbuffer_default]
    Compilation of behavioural architecture of the entity xil_defaultlib.top [top]
    GCC.exe: internal error: abandoned (collect2 program)
    Please submit a bug report.
    to get instructions.

    Correct the above error and check the syntax again.

    I have labview 2015 and vivado 2014.4 running on windows 8.1. Thank you in advance.

    Thank you for your response.

    I solved the problem. It is apparently caused by minGW installed with 14.4 vivado which does not work with windows 8. So, I replaced the minGW on vivado record 14.4 with the latest version of minGW.

  • Information on how to execute SQL on the CUCM himself queries please

    Hello all,.

    I need to run a SQL on the CUCM enumerate all directory numbers, their score and their external mask values.

    I came across this snippet below earlier so I have a bit of an idea of how do but iw would be great to see some other examples of sql queries.

    Any help is most appreciated.

    Also, is there a document somewhere to tell me how to run these queries?

    Thanks in advance

    Concerning

    Amanda

    *******************************************************************************************************************************************************************************

    Helps you try if this the CLI SQL query execution, it must list all DN with CFA allowed the VM or a DN:

    run sql select dnorpattern, cfadestination, cfavoicemailenabled CallForwardDynamic c, numplan n where c.fknumplan = n.pkid and (cfadestination! = "or cfavoicemailenabled 't =')

    Hi Amanda

    Basically, this is standard SQL, so that he would not bad at google 'informix instructions' select and do a bit of reading to get the basics. There are millions of permutations of requests so it comes to understand the syntax and then only by applying to the database in question. The only difference when running the commands in the CLI are:

    -Precede you the standard informix with "execute sql" SQL statement

    -You get no help from CUCM with syntax, so you might be well advised to use something which includes SQL a bit and he colorized you type, and then paste the commands resulting in the CUCM SSH window. I use an editor called JEdit, if you create a text file and save it as a file ending with .sql, it will highlight your syntax.

    -Other programs are available that make reasonable syntactic (EQ SquirrelSQL) that are designed to query the DB directly, but you can't really query directly against the DB for security reasons. You will still need to copy and paste commands.

    Now... to understand the DB you will need a reference describing all the tables, etc.. Here it is:

    http://www.Cisco.com/en/us/products/SW/voicesw/ps556/products_programming_reference_guides_list.html

    Choose your version of CUCM and download the document 'data definition '.

    Some notes on the order:

    run sql: is just the CLI command which tells the shell to perform the following as SQL.

    Select: the SQL command to recover data

    dnorpattern, cfadestination, cfavoicemailenabled: column names to retrieve

    callforwarddynamic c, numplan n: the names of the two tables and abbreviations that you want to refer to them as

    where c.fknumplan = n.pkid: This tells SQL to return values in the two tables where these fields match. In the data definition, you will see notes that c.fknumplan (i.e. the column fknumplan in table callforwarddynamic, as indicated by the prefix c.) refers to the PKID column in the area of the numplan. It is a type of join in the very standard DB CCM.

    and ("cfadestination! =" or cfavoicemailenabled = "t"): another clause, fundamentally in this application that we want to see only the rows where cfadestination is not empty or cfavoicefmailenabled has the value 't' for real).

    Most of the tables are related in two ways in this database:

    -a column "fk" prefix refers to the field of pkid (there is always only one field per table pkid) in the table following the prefix "fk". For example above fknumplan refers to the numplan, pkid field table. fkdevice refers to the machine table, pkid field.

    -a prefiex of 'traditional knowledge' column usually refers to a table enum which is preceded by 'type '. It is a table that maps the numerical value in the field of 'traditional knowledge' into a string. An example would be tkmodel - it is the type of physical phone (e.g. as 7962) and mapped as the column and a table called typemodel model 'enum' in the table.

    Concerning

    Aaron Harrison

    Senior Engineer at Logicalis UK

    Please note the useful messages...

  • Can someone give me details and difficulty regarding the vulnerability of traumatic psychosis for Cisco ASA version 5?

    We have experienced frm, our compliance team that we run in traumatic psychosis wanted vulnerabity so know the fix and document...

    Hi James,

    We have a PSIRT filed regarding the vulnerability of traumatic psychosis, please see details below:

    CSCur00511    Evaluation of the ACS for CVE-2014-6271 and CVE-2014-7169

    https://Tools.Cisco.com/bugsearch/bug/CSCur00511/?reffering_site=dumpcr

    Here is the information of fixed code to various versions:

    Fixed code:
    Patch for CSCur00511 of the DDT is ready and available on CCO.
    The patch is included in all update rollups version 5.4.0.46.7/5.5.0.46.6/5.6.0.22.1 and later. We recommend that you download the latest cumulative patches.

    Download of: CEC / Support / download software http://www.cisco.com/cisco/pub/software/portal/select.html?i=! y
    Letter: Security / identity management / Cisco Secure Access Control System / Cisco Secure Access Control System 5.4 / 5.4.0.46.0

    Patch file name: 5-4-0-46 -.tar.gpg
    Read me and displays instructions: Acs-5-4-0-46--Readme.txt

    Download of: CEC / Support / download software http://www.cisco.com/cisco/pub/software/portal/select.html?i=! y
    Letter: Security / identity management / Cisco Secure Access Control System / Cisco Secure Access Control System 5.5 / 5.5.0.46

    Patch file name: 5-5-0-46 -.tar.gpg
    Read me and displays instructions: Acs-5-5-0-46--Readme.txt

    Download of: CEC / Support / download software http://www.cisco.com/cisco/pub/software/portal/select.html?i=! y
    Letter: Security / identity management / Cisco Secure Access Control System / Cisco Secure Access Control System 5.6 / 5.6.0.22

    Patch file name: 5-6-0-22 -.tar.gpg
    Read me and displays instructions: Acs-5-6-0-22--Readme.txt

    Download of: CEC / Support / download software http://www.cisco.com/cisco/pub/software/portal/select.html?i=! y
    Letter: Security / identity management / Cisco Secure Access Control System / Cisco Secure Access Control System 5.3 / 5.3.0.40

    Patch file name: 5-3-0-40 -.tar.gpg
    Read me and displays instructions: Acs-53 - Readme.txt

    Kind regards

    Tushar Bénard

    Please evaluate the post if you find it useful!

  • Clarification regarding the understanding of the ORACLE CONNECT BY PRIOR Clause

    Dear all,

    I'm trying to understand the ORACLE CONNECT BY CLAUSE, and I wrote a query to check my understanding.


    I wrote the below two queries.

    Select the level, lpad ('* ', 2 * (level - 1),'* '). t_ename Ename, empno, sys_connect_by_path(ename,'/') enames, Bishop of PEM
    -where empno = empno
    Start by empno = 7654
    -start with mgr is null
    Connect by prior empno = mgr;

    LEVEL T_ENAME ENAMES EMPNO, MGR
    ---------- -------------------- -------------------------------------------------- ---------- ----------
    1 MARTIN 7654 7698 /MARTIN

    Explanation: Start by EMPNO = 7654 here means, the root node is 7654. Connect BY PRIOR EMPNO = average MGR-> for the empno = 7654 are all the people under him. IE. Mgr with 7654.

    Select the level, lpad ('* ', 2 * (level - 1),'* '). t_ename Ename, empno, sys_connect_by_path(ename,'/') enames, Bishop of PEM
    -where empno = empno
    Start by empno = 7698
    -start with mgr is null
    Connect by prior empno = mgr

    LEVEL T_ENAME ENAMES EMPNO, MGR
    --------- -------------------- -------------------------------------------------- ---------- ----------
    1 BLAKE 7698 7839 /BLAKE
    2 * ALLEN/BLAKE/ALLEN 7499 7698
    2 * 7521 7698 WARD/BLAKE/WARD
    2 * MARTIN/BLAKE/MARTIN 7654 7698
    2 * TURNER, BLAKE/7844 7698 TURNER
    2 * JAMES BLAKE/JAMES 7900 7698

    Explanation: Start by EMPNO = 7698 here means, the root node is 7698. Connect BY PRIOR EMPNO = average MGR-> for the empno = 7698 are all the people under him. IE. Mgr with 7698.


    I UNDERSTAND TO CONNECT BY PRIOR IS CORRECT?

    Please correct me if I'm wrong.

    Thank you
    MK.

    Yes, you're right

    Kind regards
    Sayan M.

  • Bug or error during the handling of leap years with WDS/DS

    Hi all

    I discovered a difference in results with the construction and to debug (without frame) and generate and debug with the revisions of Web or server of determinations when calculating the days in leap years.
    I use the DayDifferenceInclusive function to calculate the number of days in a period of insurance.

    the number of days of insurance period = DayDifferenceInclusive (the start date of the insurance, the date of the end of insurance)

    With the tester of regression or generation and debugging (without frame), I get the following result for the following entry:

    * 93 = DayDifferenceInclusive (02-29-2008, 05-31-2008) *.

    When we use the revisions of Web or server of determinations we get the value of * 92 * for exactly the same data entry when it should be 93.
    Is this a bug in the java code? How can we fix this or is there a work around it?

    We are in the middle of integration testing system for a huge project to help is very appreciated!

    Best regards
    Niels Roest

    Niels,

    Thanks for that - and it seems that in the Netherlands DST began March 30, 2008, that is, as far as I know, the trigger for this error.

    I have reproduced the issue against 10.1 using the period from 1st October 2010 to 30 October 2010, which contains the date this summer time began in Australia.

    Regarding the ways to work around the problem, I can offer 3:

    * wait 10.2 - it is in beta at the moment (but given your opening remarks, may not be an option for you)
    * set your locale of the server to that which has no DST
    * work around the issue in the rules:

    First of all, the question is that the retail version fails because it does not realize that one of these days is shorter than the standard 24 hours.

    The trick is to replace the DayDifference function with the HourDifference function and round up the number of days.

    Thus given a rule that looks like:

    result = DayDifference (date one, date two)

    It can be rewritten in the form:

    The result = round (HourDifference (one at 00:00:00, date two to 00:00:00) / 24, 0)

    * the "at 00:00:00 ' is necessary because HourDifference works on dates/hours, not dates.

    Sorry for the inconvenience.

    Concerning
    Andrew

  • EOA: The query cannot be parsed, please check the syntax of your query.

    Hi all

    I have a 'DEVETL_OAE' scheme that OAE is set up. I am able to connect to this schema using Toad/Sqlplus and I can access a table "INFA8_INS_NEW" located in "ADW_DEV_REP" scheme.

    "ADW_DEV_REP" scheme gave a grant to select this table in a role of selection (i.e. ' ADW_DEV_REP_SELECT') SELECT 'DEVETL_OAE' 'INFA8_INS_NEW'.

    I can run a query in sqlplus and I am able to access this table as "select * from ADW_DEV_REP." INFA8_INS_NEW'.

    But, SAQ, when I try to create the region and source, when I'm trying to ' select * from ADW_DEV_REP. INFA8_INS_NEW' sql, I get the error message like "Query cannot be parsed, please check the syntax of your query. (ORA-00942: table or view does not exist) »

    What should I give manual grant to the schema 'DEVETL_OAE' on ' ADW_DEV_REP. INFA8_INS_NEW' table?

    Pls help.

    Thank you and best regards,
    Vinay

    "Indeed, you must grant select on ' ADW_DEV_REP. INFA8_INS_NEW' DEVETL_OAE (so not through a role).

  • Need help with the syntax for default message.

    I want to display by default in the layout of lead for Feild "owner of lands":

    IIf (< plRegion_ITAG > = "South", "SG",
    IIf (< plRegion_ITAG > = "North", "AT",
    IIf (< plRegion_ITAG > = "East", "GK",
    IIf (< plRegion_ITAG > = "West" "BM", "Other than thesis it should be NULL")))

    ("Other than these we NULL"-> to do this, I tried a different name)

    SG, THE, BM, GK (little) are my managers society of sales/Terriotory.
    I did not miss anything, the above syntax doesnot work for me.

    Thanks in advance.

    Kind regards
    Ratan N

    Hi Ratan,

    A few notes:
    (A) you are missing a comma between "West" and "BM".
    (B) you must use "and not"
    (C) I'm not sure that you can have a drop down list remain NULL by using the IIf function. Even if you can it won't probably work with "other than these, it must be NULL.
    (D) I suggest that you actually add a value called NULL for the list of choices and after writing the syntax you can disable it to prevent your users from accidentally choose it.
    (E) should look like this:

    IIf (= 'South', 'SG',
    IIf (= 'North', 'AT',
    IIf (= 'Is', 'GK',
    IIf (= 'West', 'NULL', 'WB')))

  • Yes, another question regarding the freezing of Safari - EtreCheck report included

    Yes, another question regarding the freezing of Safari.

    From a little over a month (I think), Safari started freezing regularly whenever I want to open new tabs or switch between tabs. I found myself to leave the program several times per day / hour. I can't identify any specific common cause (other than my MacBook being old) or any new software or updates that might have initiated the question. At first I thought he might have many tabs, I tried to open, but recently it happens even with only a few tabs open.

    I worked through the steps I found in this forum and others: empty the cache, start in safe mode, etc nothing works.

    Based on the previous suggestions, I have downloaded and run EntreReport which I included below. The note and maybe just a distraction, but EntreReport has crashed three times tonight, before he was able to produce the sub report. I ran the report after restarting my system with no other programs running.

    Suggestions are welcome at this stage because I want to start using Chrome or Firefox because I like the transfer procedure between my devices.

    Thank you in advance.

    Ben

    -----------

    EtreCheck version: 2.9.11 (264)

    Report generated 2016-04-28 22:48:58

    Download EtreCheck from https://etrecheck.com

    Time 05:45

    Performance: Below average

    Click the [Support] links to help with non-Apple products.

    Click [details] for more information on this line.

    Click on the link [check files] help with unknown files.

    Problem: Apps are broken

    Description:

    Safari freeze when opening new tabs / switching between the tabs.

    Hardware Information:

    MacBook Pro (15-inch, mid 2009)

    [Data sheet] - [User Guide] - [warranty & Service]

    MacBook Pro - model: MacBookPro5, 3

    1 2.66 GHz Intel Core 2 Duo CPU: 2 strands

    4 GB of RAM expandable - [Instructions]

    BANK 0/DIMM0

    OK 2 GB DDR3 1067 MHz

    BANK 1/DIMM0

    OK 2 GB DDR3 1067 MHz

    Bluetooth: Old - transfer/Airdrop2 not supported

    Wireless: en1: 802.11 a/b/g/n

    Battery: Health = battery check - Cycle count = 389

    Video information:

    NVIDIA GeForce 9400M - VRAM: 256 MB

    Color LCD 1440 x 900

    NVIDIA GeForce 9600M GT - VRAM: 256 MB

    Software:

    OS X El Capitan 10.11.4 (15E65) - since startup time: less than an hour

    Disc information:

    FUJITSU MJA2320BH FFS G1 disk0: (320,07 GB) (rotation)

    EFI (disk0s1) < not mounted >: 210 MB

    Macintosh HD (disk0s2) /: 319,21 go-go (54,93 free)

    Recovery HD (disk0s3) < not mounted > [recovery]: 650 MB

    HL-DT-ST DVD - RW GS23N)

    USB information:

    Built-in ISight from Apple Inc..

    Card reader Apple

    Apple Inc. BRCM2046 hub.

    Apple Inc. Bluetooth USB host controller.

    Apple Inc. Apple keyboard / Trackpad

    Computer, Inc. Apple IR receiver.

    Guardian:

    Mac App Store and identified developers

    Unknown files:

    ~/Library/LaunchAgents/com. GoodShop.updater.plist

    ~/Library/application support/GoodShop/updater

    A unknown file found. [Check files]

    Kernel extensions:

    / Library/Application Support/Symantec/virus

    [no charge] com.symantec.kext.SymAPComm (11.1.2f17 - 2015-05-23) [Support]

    / Library/Extensions

    [no charge] expressvpn.tap (20150118 - 2016-04-12) [Support]

    [loading] expressvpn.tun (20150118 - 2016-04-12) [Support]

    / System/Library/Extensions

    [no charge] com.DYMO.usbprinterclassdriver.kext (1.1 - SDK 10.9-2016-04-12) [Support]

    com.Silex.driver.sxuptp [no charge] (1.5.1 - 2016-04-12) [Support]

    com.symantec.kext.internetSecurity [no charge] (1.3.2 - 2016-04-12) [Support]

    com.Symantec.kext.IPS [no charge] (3.2 - 2016-04-12) [Support]

    Startup items:

    CMA: path: / Library/StartupItems/cma

    RosettaStoneLtdDaemon: Path: / Library/StartupItems/RosettaStoneLtdDaemon

    Startup items are obsolete in OS X Yosemite

    Launch system officers:

    [loaded] 8 tasks Apple

    [loading] 165 tasks Apple

    [operation] 65 tasks Apple

    Launch system demons:

    [loaded] 45 tasks Apple

    [loading] 161 tasks Apple

    [operation] 83 tasks Apple

    Launch officers:

    [no charge] com.adobe.AAM.Updater - 1.0.plist (2016-04-28) [Support]

    [failure] com.adobe.ARMDCHelper.cc24aef4a1b90ed56a... plist (2015-10-31) [Support]

    [operation] com.epson.Epson_Low_Ink_Reminder.launcher.plist (2015-01-19) [Support]

    [loading] com.epson.esua.launcher.plist (2015-06-29) [Support]

    [operation] com.epson.eventmanager.agent.plist (2014-09-21) [Support]

    [loading] com.google.keystone.agent.plist (2016-03-01) [Support]

    [operation] com.mcafee.menulet.plist (2016-03-23) [Support]

    [operation] com.mcafee.reporter.plist (2016-03-23) [Support]

    [loading] com.oracle.java.Java - Updater.plist (2013-11-14) [Support]

    [operation] com.symantec.uiagent.application.plist (2010-11-16) [Support]

    [operation] com.trusteer.rapport.rapportd.plist (2016-03-19) [Support]

    Launch demons:

    [loading] com.adobe.ARMDC.Communicator.plist (2015-10-31) [Support]

    [loading] com.adobe.ARMDC.SMJobBlessHelper.plist (2015-10-31) [Support]

    [loading] com.adobe.fpsaud.plist (2016-04-15) [Support]

    com.DYMO.pnpd.plist [no charge] (2014-10-16) [Support]

    [loading] com.expressvpn.tap.plist (2016-01-27) [Support]

    [loading] com.expressvpn.tun.plist (2016-01-27) [Support]

    [loading] com.google.keystone.daemon.plist (2016-03-01) [Support]

    [loading] com.macpaw.CleanMyMac3.Agent.plist (2016-04-18) [Support]

    [operation] com.mcafee.cspd.plist (2015-05-08) [Support]

    com.mcafee.ssm.ScanFactory.plist [no charge] (2016-03-16) [Support]

    com.mcafee.ssm.ScanManager.plist [no charge] (2016-03-16) [Support]

    [operation] com.mcafee.virusscan.fmpd.plist (2016-03-22) [Support]

    [loading] com.microsoft.office.licensing.helper.plist (2010-08-25) [Support]

    [loading] com.oracle.java.Helper - Tool.plist (2013-11-14) [Support]

    [loading] com.symantec.MissedTasks.plist (2009-11-10) [Support]

    [loading] com.symantec.Sched501 - 1.plist (2014-08-27) [Support]

    [loading] com.symantec.Sched501 - 4.plist (2015-01-08) [Support]

    [loading] com.symantec.Sched501 - 5.plist (2015-01-08) [Support]

    [loading] com.symantec.avscandaemon.plist (2009-10-10) [Support]

    [operation] com.symantec.diskMountNotify.plist (2009-09-14) [Support]

    [loading] com.symantec.navapd.plist (2009-09-14) [Support]

    [loading] com.symantec.navapdaemonsl.plist (2009-11-14) [Support]

    [operation] com.symantec.sharedsettings.plist (2009-07-22) [Support]

    [operation] com.symantec.symSchedDaemon.plist (2009-11-10) [Support]

    [operation] com.symantec.symdaemon.plist (2009-03-27) [Support]

    [operation] com.trusteer.rooks.rooksd.plist (2016-03-19) [Support]

    User launch officers:

    com [running]. GoodShop.updater.plist (2013-09-24) [Support]

    [loading] com.adobe.AAM.Updater - 1.0.plist (2015-10-25) [Support]

    [failure] com.facebook.videochat. [entrenched passage] .plist (2014-08-09) [Support]

    [loading] com.macpaw.CleanMyMac3.Scheduler.plist (2016-04-25) [Support]

    Items in user login:

    iTunesHelper Application (/ Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)

    Application of Google Reader (Google Drive.app/Applications /)

    Dropbox application (/ Applications/Dropbox.app)

    ExpressVPN application (/ Applications/ExpressVPN.app)

    CleanMyMac 3 Menu Application (/ Applications/CleanMyMac 4.app/Contents/MacOS/CleanMyMac 3 Menu.app)

    Other applications:

    [ongoing] com.DYMO.pnpd

    [ongoing] com.getdropbox.dropbox.83552

    [ongoing] com.google.GoogleDrive.81632

    [ongoing] com.macpaw.CleanMyMac3.Menu.80672

    [ongoing] com.mcafee.ssm.ScanManager

    [ongoing] com.mcafee.virusscan.ssm.ScanFactory

    [loading] 420 tasks Apple

    [operation] 193 tasks Apple

    Plug-ins Internet:

    o1dbrowserplugin: 5.41.3.0 - 10.8 SDK (2015-12-16) [Support]

    Default browser: 601 - SDK 10.11 (2016-04-18)

    Flip4Mac WMV Plugin: 2.4.4.2 (2012-12-25) [Support]

    DYMO Safari Addin: Unknown - SDK 10.9 (2014-10-26) [Support]

    AdobePDFViewerNPAPI: 15.010.20060 - SDK 10.8 (2016-03-11) [Support]

    FlashPlayer - 10.6: 21.0.0.226 - SDK 10.6 (2016-04-25) [Support]

    Silverlight: 5.1.30514.0 - SDK 10.6 (2015-09-16) [Support]

    QuickTime Plugin: 7.7.3 (2016-04-12)

    Flash Player: 21.0.0.226 - SDK 10.6 (2016-04-25) [Support]

    googletalkbrowserplugin: 5.41.3.0 - 10.8 SDK (2015-12-11) [Support]

    iPhotoPhotocast: 7.0 (2010-11-15)

    AdobePDFViewer: 15.010.20060 - SDK 10.8 (2016-03-11) [Support]

    SharePointBrowserPlugin: 14.3.0 - SDK 10.6 (2013-02-09) [Support]

    SiteAdvisor: 2.0 - 10.1 SDK (2015-03-30) [Support]

    JavaAppletPlugin: Java 8 updated 77 03 (2016-04-18) check the version of build

    Safari extensions:

    AdBlock - BetaFish, Inc. - https://getadblock.com (2016-03-30)

    Add to wishlist Amazon - Amazon.com - http://www.amazon.com/wishlist?ref=cm_wl_saf_ext (2011-07-09)

    GoodShop - GOODSEARCH LLC - http://www.GoodSearch.com (2013-09-24)

    SiteAdvisor - McAfee - http://www.siteadvisor.com (2015-09-28)

    PIN button - Pinterest, Inc. - http://www.pinterest.com/ (2015-07-03)

    3rd party preference panes:

    Flash Player (2016-04-15) [Support]

    Flip4Mac WMV (2012-05-15) [Support]

    Growl (2015-09-16) [Support]

    Java (2016-04-18) [Support]

    Norton\nQuickMenu (2010-11-16) [Support]

    Trusteer Endpoint Protection (2016-04-18) [Support]

    Time Machine:

    Time Machine not configured!

    Top of page process CPU:

    5% WindowServer

    1% kernel_task

    0% fontd

    0% SymDaemon

    Top of page process of memory:

    445 MB kernel_task

    Mdworker (18) 430 MB

    164 MB Google Reader

    Dropbox 123 MB

    VShieldScanner (4) 66 MB

    Virtual memory information:

    106 MB free RAM

    4.15 GB used RAM (770 MB cache)

    6 MB used Swap

    Diagnostic information:

    April 28, 2016, 22:42:12 ~/Library/Logs/DiagnosticReports/EtreCheck_2016-04-28-224212_[redacted].crash

    com.etresoft.EtreCheck - /Applications/EtreCheck.app/Contents/MacOS/EtreCheck

    28 April 2016, 22:21:42 self-test - spent

    April 28, 2016, 19:49:12 ~/Library/Logs/DiagnosticReports/EtreCheck_2016-04-28-194912_[redacted].crash

    April 28, 2016, 19:47:10 ~/Library/Logs/DiagnosticReports/EtreCheck_2016-04-28-194710_[redacted].crash

    April 28, 2016, 19:38:58 ~/Library/Logs/DiagnosticReports/EtreCheck_2016-04-28-193858_[redacted].crash

    April 28, 2016, 19:04:58 ~/Library/Logs/DiagnosticReports/rapportd_2016-04-28-190458_[redacted].crash

    /Library/rapport/*/rapportd.app/Contents/MacOS/rapportd

    April 28, 2016, 06:06:59 /Library/Logs/DiagnosticReports/Safari_2016-04-28-060659_[redacted].hang

    /Applications/Safari.app/Contents/MacOS/Safari

    April 28, 2016, 12:48:04 AM /Library/Logs/DiagnosticReports/SubmitDiagInfo_2016-04-28-004804_[redacted].cpu _resource.diag [details]

    / System/Library/CoreServices/SubmitDiagInfo

    April 27, 2016, 22:01:10 /Library/Logs/DiagnosticReports/Safari_2016-04-27-220110_[redacted].hang

    April 27, 2016, 21:57:37 /Library/Logs/DiagnosticReports/Safari_2016-04-27-215737_[redacted].hang

    April 27, 2016, 19:05:50 ~/Library/Logs/DiagnosticReports/EtreCheck_2016-04-27-190550_[redacted].crash

    April 27, 2016, 06:57:28 ~/Library/Logs/DiagnosticReports/Airmail 2_2016-04-27-065728_ .crash [deleted]

    / Applications/Airmail 2.app/Contents/MacOS/Airmail 2

    26 April 2016, 19:48:11 /Library/Logs/DiagnosticReports/Safari_2016-04-26-194811_[redacted].hang

    Remove all apps viruses you have

    Symantec, McAfee, Norton...

    CleanMyMac3

  • Firefox is not fully load site Barclaycard of authentication. It load regarding the demand for certain letters in my password but does not load the button 'Submit', so I can't continue with my purchase and I switch to IE8 browser to buy whatever it is ov

    Firefox is not fully load site Barclaycard of authentication. It load regarding the demand for certain letters in my password but does not load the button 'Submit', so I can't continue with my purchase and I switch to IE8 browser to buy anything on the internet. Clues?

    This has happened

    A few times a week

    Is a few weeks ago

    Your UserAgent string in Firefox is totally messed up by another program that you have installed and Barclays does not know you use Firefox 3.6.6 - it is probably similar to IE 6.0 on this site.
    http://en.Wikipedia.org/wiki/USER_AGENT

    type of topic: config in the URL bar and press ENTER.
    If you see the warning, you can confirm that you want to access this page.
    Filter = general.useragent.
    Preferences are "BOLD", a line at a time, and then select reset, right click
    Then restart Firefox

  • Various bugs to info of the song in iTunes and iPhone library

    I have two problems that are probably related.

    1. in the opinion of 'Artist' of my iTunes library, I have an artists songs divided into three labels of the artist, all who say "Thumpmonks. I've rechecked for added spaces. These songs share the same artist, same artist album (which is the same as the artist) and the same name of the album. Yet once, I checked for spacing problems. I rewrote all the information for all of these songs, but they remain separated in the view 'artist '. The other points of view (Album, song, etc.) do not have this problem. the artist is not separated. It's very confusing and almost certainly a bug. I use the view of the artist, often listening to my library and would rather not have songs of an album in every sense. I should also mention that the albums are grouped correctly on my phone, so it's just a problem with my computer's library.

    2. on my iPhone 5, this artist has three albums with done years listed, even if I deleted all the information of the year for this artist on all of his albums. Year for each album does not appear in my library, but it still appears on my phone (I don't want the dates on my phone). Again, I am confused.

    I have uninstalled and reinstalled iTunes and its components correctly several times in order to get rid of these apparent bugs. I've seen no progress :/

    Any help would be great!

    iTunes version: 12.3.2

  • Spice up the syntax of the format rules

    Is there a document that explains the difference between the general syntax of SPICE and syntax of Multisim? I tried to read the Guide to using SPICE simulation, but the link takes me to an ad of Multisim 11. Then when I search the manual I loop back to the same place. Annoy her.

    When I import a file SPICE, I would like to know which statements will be valid. Including summaries of the study.

    Thanks in advance.

    Hello

    There is a page in the Multisim help file that highlights the difference between the syntax of Multisim SPICE and other Spice (PSPICE and XSPICE) syntaxes. To find this page, follow these steps:

    1. In Multisim, click Help > Multisim help
    2. Click the contents tab. If you use Multisim 10.1, the help topic can be found under the Multisim SPICE reference. If you use Multisim 11, the help topic are under Simulation > Multisim SPICE reference

    Generally, the study summaries are ignored by Multisim. To set your analysis, you need to click the menus available through simulation > Analyses.

    Hope that helps.

  • explanation of the syntax of reminder

    Forgive my beginner questions.

    I am trying to understand the syntax of the callback functions that are auto-insérée in my source of CVI.  I'm not entirely understand what's the point of "CVICALLBACK" in front of my name of callback function.

    int CVICALLBACK ControlCallback (int panel, int control, int event, void *callbackData, int eventData1, int eventData2)
    

    I dive into cvidef.h, I see that it is defined as CVICDECL, which in turn is defined as __cdecl, which is apparently a "calling convention".  So CVICALLBACK is just a secondary typedef for the callback function?

    You were right from CVICALLBACK to the convention corresponding appeal. The calling convention is a very technical beast to explain, unless you are particularly interested in him (for example because you want to / have to build DLLs to be used ion other compilers or symmetrically, you can use the DLL created in other languages) you can simply ignore it and happily live and work with CVI

    However, information about the calling convention can be easily found on the internet: here and here two wikipedia pages on the subject, so that here , you will find a page of knowledge base specifically oriented CVI

  • Spreadsheet Excel add after the syntax

    I have a large application that creates a report following a test.  The report is about 250 pages, each page represented as a group in the data portal.  When we deliver him customer report also wants an excel file with pairs of X - Y data for each of the graphs in the report.  I know how to make the selection of the data and copy/paste it to Excel.  Where I encountered problems, that's when I add worksheets in Excel, I can't figure out how to run the new worksheet to add at the end.

    According to the news on Excel VBA, there are parameters before and after that should allow you to do.  I can't quite understand the syntax to include these parameters.  The line of code in question is red.

    If you have nothing but the. Add the statement that the code works but the worksheets appear in reverse order.  I tried a number of different ways, and the script just dies without even showing an error.  I know one around which we work to scroll the list of the groups back, but that's not fair to sit well with me.  I prefer to do things in a logical manner, being from the first to the last.

    If there are questions please let me know.

    Thanks in advance.

    Wayne

    FilePath = autoactpath & "\dataoutputtemplate.xls".

    ExOpen = True
    Nomclasseur = NameSplit (FilePath, "N") & ".". XLS '.
    On Error Resume Next
    Set Excel = GetObject (, "Excel.Application") ' get Excel via OLE if it is already open
    If Err.Number <> 0 Then
    Err.Clear
    Set Excel = New ' start Excel via OLE
    If Err.Number <> 0 Then
    ' Exit Sub
    End If
    ExOpen = False
    End If
    Excel.Visible = true
    IsWorkbookOpen = Excel.Workbooks (WorkBookName) there's nothing = False
    If ExOpen then
    If not IsWorkbookOpen then
    Set ExcelWkb = Excel.Workbooks.Open (FilePath) ' open the Excel file if it isn't already
    End If
    on the other
    Set ExcelWkb = Excel.Workbooks.Open (FilePath) ' open an Excel file from excel is not already open
    End If
    Err.Clear
    On Error Goto 0

    GrpStart = GroupIndexGet ("Globals")
    NumGrp = GroupCount - GrpStart
    ReDim PageList (NumGrp)
    ReDim SectList (NumGrp)
    b = 1
    c = 1
    for a = GrpStart to GroupCount
    CurGrpName = GroupPropValGet (a, "name")
    If InStr(CurGrpName,"List") then
    SectList (b) = Mid(CurGrpName,5) ' remove 'List' in the name of the group to be used in the Table of contents
    b = b + 1
    End If
    If InStr(CurGrpName,"_") then
    PageList (c) = CurGrpName ' Gets a list of groups that should be exported
    c = c + 1
    End If
    Next "(a cycle through groups can gather names)
    ' Add the Table of contents: sheet in workbook
    Set ExTOC = Excel.Workbooks (WorkBookName). WorkSheets.Add
    ExTOC.name = "Table of contents".
     
    For d = 1 to c - 1 ' c is the number of valid sheets in the report which will be exported
    Set ExcelSht = Excel.Workbooks (WorkBookName). WorkSheets.Add (after: = last sheet in the workbook)
    ExcelSht.Name = PageList (d)
    Next would then report to export page

    Hello Wayne!

    What you need to know, is that you can leave empty parameters. The solution to your problem is:

    Set ExcelSht = Excel.ActiveWorkbook.WorkSheets.Add (, Excel.ActiveWorkbook.WorkSheets (Excel.ActiveWorkbook.WorkSheets.Count))

    Matthias

Maybe you are looking for