Parse error when trying to use form

When i load the PHP,form page and thank you page im getting this error when i hit send.
No email is sent from form.
Parse error: syntax error, unexpected T_STRING in /home/owendaws/public_html/owendawsonpga/contactformprocess_original_db.php on line 38
PHP page
<?
$fname = $HTTP_POST_VARS['textfield'];
$lname = $HTTP_POST_VARS['textfield2'];
$phone = $HTTP_POST_VARS['textfield3'];
$email = $HTTP_POST_VARS['textfield4'];
$address = $HTTP_POST_VARS['textfield5'];
$state = $HTTP_POST_VARS['textfield6'];
$zip = $HTTP_POST_VARS['textfield7'];
$find = $HTTP_POST_VARS['select'];
$goals = $HTTP_POST_VARS['select2'];
$practice = $HTTP_POST_VARS['select3'];
$learn = $HTTP_POST_VARS['select4'];
$handicap = $HTTP_POST_VARS['select5'];
$timeplaying = $HTTP_POST_VARS['select6'];
$lesson = $HTTP_POST_VARS['select7'];
$additional = $HTTP_POST_VARS['textfield8'];
mail('[email protected]','Owen Dawson PGA Contact Form Submission',"First Name: $fname\nLast Name: $lname\nPhone Number: $phone\nEmail: $email\nAddress: $address\nState: $state\nZip Code: $zip\nHow did you find me? $find\nWhat are your goals? $goals\nHow much can you practice? $practice\nWhat would you like to learn? $learn\nWhat is your handicap? $handicap\nHow long have you been playing golf? $timeplaying\nHave you ever taken a lesson? $lesson\nAdditional Information: $additional\n",'From: [email protected]');
header("Location: http://www.owendawsonpga.com/thankyouform.html");
?>
form page
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/PGATEMPLATE3.dwt" codeOutsideHTMLIsLocked="false" -->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<!-- InstanceBeginEditable name="doctitle" -->
<title>Golf Lessons in Baltimore Owen Dawson PGA, GOLF INSTRUCTION IN MARYLAND, GOLF LESSONS IN BALTIMORE</title>
<meta name="Keywords" content="GOLF INSTRUCTION, GOLF LESSONS IN BALTIMORE, BALTIMORE, MARYLAND, GOLF INSTRUCTION BALTIMORE,SHORT GAME,BUNKER PLAY" />
<meta name="Description" content="Golf Instruction in Baltimore Maryland" />
<!-- InstanceEndEditable -->
<link href="twoColFixRtHdr.css" rel="stylesheet" type="text/css" />
<!--[if IE 5]>
<style type="text/css">
/* place css box model fixes for IE 5* in this conditional comment */
.twoColFixRtHdr #sidebar1 { width: 220px; }
</style>
<![endif]--><!--[if IE]>
<style type="text/css">
/* place css fixes for all versions of IE in this conditional comment */
.twoColFixRtHdr #sidebar1 { padding-top: 30px; }
.twoColFixRtHdr #mainContent { zoom: 1; }
/* the above proprietary zoom property gives IE the hasLayout it needs to avoid several bugs */
</style>
<![endif]-->
<script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
<link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
<style type="text/css">
<!--
.style1 {
    font-size: small
.style2 {
    font-family: "Comic Sans MS", Papyrus;
    font-size: small;
.style6 {font-size: smaller; font-family: "Comic Sans MS", Papyrus; }
.style7 {font-family: "Comic Sans MS", Papyrus}
.style8 {
    color: #0000FF;
    font-family: Georgia, "Times New Roman", Times, serif;
a:link {
    text-decoration: none;
    color: #000000;
    background-color: #EBEBEB;
a:visited {
    text-decoration: none;
    color: #000000;
a:hover {
    text-decoration: none;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    border-top-color: #001EF1;
    border-right-color: #001EF1;
    border-bottom-color: #001EF1;
    border-left-color: #001EF1;
    color: #000000;
    background-color: #EBEBEB;
a:active {
    text-decoration: none;
.style9 {font-family: Georgia, "Times New Roman", Times, serif}
.style10 {font-family: Georgia, "Times New Roman", Times, serif; font-size: small; }
.style11 {color: #000000}
.style12 {
    font-family: Georgia, "Times New Roman", Times, serif;
    color: #FF0000;
    font-weight: bold;
.style13 {color: #FF0000}
-->
</style>
<!-- InstanceBeginEditable name="head" -->
<script type="text/javascript">
function submitForm(){
    var myform = document.getElementById('form1');
    var fname = document.getElementById('textfield');
    var lname = document.getElementById('textfield2');
    var phone = document.getElementById('textfield3');
    if (fname.value == ''){
        alert('First name is a required field.  Please enter your first name to continue.');
        fname.focus();
        return false;
    if (lname.value == ''){
        alert('Last name is a required field.  Please enter your last name to continue.');
        fname.focus();
        return false;
    if (phone.value == ''){
        alert('Phone number is a required field.  Please enter your preferred phone number to continue.');
        fname.focus();
        return false;
    myform.submit();
function messageSent(){
    var status = document.getElementById('msg');
    status.innerHTML = 'Message sent successfully.';
</script>
<!-- InstanceEndEditable -->
</head>
<body class="twoColFixRtHdr">
<div id="container">
  <div id="header">
    <h1><img src="photos/newpgabannerfinal3_2_10.png" width="739" height="210" /></h1>
    <!-- InstanceBeginEditable name="EditRegion4" -->
    <ul id="MenuBar1" class="MenuBarHorizontal">
      <li><a href="V1Login.html" class="style1">V1 Student Videos</a></li>
      <li><a href="Private_Lessons.html" class="style1">Private Lessons</a></li>
      <li><a href="Clinics.html" class="style1">Clinics</a></li>
      <li><a href="Gift_Certificates.html" class="style1">Gift Certificates</a></li>
      <li><a href="Instructional_Video.html" class="style1">Instructional Video</a></li>
      <li><a href="mailto:[email protected]" class="style1">Contact Owen</a></li>
    </ul>
    <!-- InstanceEndEditable -->
    <p align="center"> </p>
  <!-- end #header --></div>
  <div id="sidebar1">
    <p class="style12"><a href="newfor2010.html" class="style13">New V1 Swing Analysis Software for 2010</a></p>
    <p class="style7"><a href="contactformprocess_original_db.html">Instructional Form </a></p>
    <p class="style7"><span class="style9"><span class="style9"><a href="Sample_Lesson.html">Sample Lesson</a></span></span></p>
    <p class="style9"><a href="http://www.youtube.com/user/owenpga" target="_blank">Video tutorials</a></p>
    <p class="style9"><a href="http://owendawsonpga.blogspot.com" target="_blank">Instructional Blog</a></p>
    <p class="style7 style8"><a href="PGAPHOTOGALLERY/index.html" target="_blank" class="style9">Photo Gallery</a></p>
    <p class="style7 style8 style11"><a href="Instructional_Video.html">Intructional Video</a></p>
    <p class="style7 style8"> </p>
    <p class="style10">Testimonials</p>
    <p class="style6 style9">“I have been working with Owen Dawson for the past 7 years. During that time my swing has dramatically changed and improved. This has happened through Owen's drills and use of video. It is because of these techniques, that I understand how to hit good shots but just as importantly why I hit a shot poorly. I’m glad I’ve had the opportunity to work with Owen and would highly recommend him. ” <strong>Sam Young - Country Club of Maryland - 2009 Men's Club Champion </strong></p>
    <p class="style2">.............................................</p>
    <p class="style6 style9">“Owen does two things  particularly well, in my opinion.  First, he is a master of recording  technology, and it really helps me to see what I need correcting, and what the  new move needs to be.  Second, Owen knows what the best next step should be  in your own journey to a better swing.  I have taken one or two lessons  from Owen each year for the last three or four years – one relatively small  step at a time, and then worked on grooving that step.  In that period, my  index has dropped about 8 strokes, and in 2007 I won the Club’s “Most Improved  Player” award.  Kudos to Owen!”</p>
    <p class="style6 style9"><strong>Bill Smillie -CCofMD</strong></p>
    <h3 class="style2"><a href="Testimonials.html">Read other testimonials  </a></h3>
    <!-- end #sidebar1 -->
  </div>
  <!-- InstanceBeginEditable name="MAINCONTENT" -->
  <div id="mainContent">
      <form action="contactformprocess_original_db.php" method="post" enctype="multipart/form-data" name="form1" id="form1" target="ifr">
      <p class="style5">Name</p>
      <p>
        <label for="textfield"><span class="style5">First</span></label>
        <input type="text" name="textfield" id="textfield" />
        </p>
      <p>
        <label for="textfield2"><span class="style5">Last</span></label>
        <input type="text" name="textfield2" id="textfield2" />
      </p>
      <p><span class="style5">Phone number
          <label>
          <input type="text" name="textfield3" id="textfield3" />
          </label>
      </span></p>
      <p><span class="style5">Email</span>
        <label>
        <input type="text" name="textfield4" id="textfield4" />
        </label>
      </p>
      <p><span class="style5">Address
          <label>
          <input type="text" name="textfield5" id="textfield5" />
          </label>
      </span></p>
      <p><span class="style5">State</span>
        <label>
        <input type="text" name="textfield6" id="textfield6" />
        </label>
      </p>
      <p><span class="style5">Zip Code</span>
        <label>
        <input type="text" name="textfield7" id="textfield7" />
        </label>
      </p>
      <p><span class="style5">How did you find me?</span>
        <label for="select"></label>
        <select name="select" id="select">
          <option value="internet">Internet Search</option>
          <option value="friend referral">Friend Referral</option>
          <option value="ccmdsite">Country Club of MD website</option>
          <option value="other">Other</option>
        </select>
      </p>
      <p><span class="style5">What are your golfing goals?</span>            
        <select name="select2" id="select2">
          <option value="break 100">Break 100</option>
          <option value="break 90">Break 90</option>
          <option value="break 80">Break 80</option>
          <option value="stop slice">Stop Slicing the Ball</option>
          <option value="stop hook">Stop Hooking the Ball</option>
          <option value="Compete">Compete in local tournaments</option>
          <option value="More Consistant">Hit more consistant shots</option>
        </select>
      </p>
      <p><span class="style5">How much can you practice?</span>
        <label for="select3"></label>
        <select name="select3" id="select3">
          <option value="1 hour">1 hour</option>
          <option value="2 hours">2 hours</option>
          <option value="3 hours">3 hours </option>
          <option value="> 3 hours">More than 3 hours a week</option>
        </select>
      </p>
      <p><span class="style5">What would you like to learn?</span>
        <label for="select4"></label>
        <select name="select4" id="select4">
          <option value="full swing">Full Swing Mechanics Irons</option>
          <option value="driver swing">Full Swing Mechanics Driver</option>
          <option value="short pitches">Short Pitch Shots inside of 50 yards</option>
          <option value="bunker play">Bunker Play</option>
          <option value="chipping">Chipping</option>
          <option value="short shots">Short shots from rough</option>
        </select>
      </p>
      <p class="style5">What is your Handicap?<label for="select5"></label>
        <select name="select5" id="select5">
          <option value="scratch to 5">Scratch - 5 HDCP</option>
          <option value="6 to 10">6 - 10 HDCP</option>
          <option value="11 to 15">11 - 15 HDCP</option>
          <option value="15 to 20">15 - 20 HDCP</option>
          <option value="> 21">21 and Higher</option>
        </select>
      </p>
      <p class="style5">How long have you been playing?
        <label for="select6"></label>
        <select name="select6" id="select6">
          <option value="beginner">Beginner</option>
          <option value="2 to 5 years">2-5 yrs</option>
          <option value="6 to 10 years">6-10 yrs</option>
          <option value="11 to 15 years">11-15yrs</option>
          <option value="> 15 years">More than 15 years</option>
        </select>
      </p>
      <p class="style5">Have you ever had a lesson?
        <label for="select7"></label>
        <select name="select7" id="select7">
          <option value="yes">YES</option>
          <option value="no">NO</option>
        </select>
      </p>
      <p class="style5">Additional Information
        <label>
        <textarea name="textfield8" cols="40" id="textfield8"></textarea>
        </label>
      </p>
      <p class="style5">
        <label for="button"></label>
        <input type="submit" name="Submit" id="button" value="Submit"onclick="submitForm()" />
      </p>
      <p class="style5"> </p>
        <div id="msg" style="font: bold 12px arial"></div>
    </form>
    <p align="center" class="style8"><br />
    </p>
    <p class="style8"> </p>
    <p class="style8"> </p>
    <p class="style8 style12"><strong><br />
     </strong></p>
    <p align="left"> </p>
    <h1> </h1>
    <!-- end #mainContent -->
    </div>
  <!-- InstanceEndEditable -->
  <!-- This clearing element should immediately follow the #mainContent div in order to force the #container div to contain all child floats -->
  <br class="clearfloat" />
  <div id="footer">
    <p align="center"><a href="http://www.v1golf.com" target="_blank"><img src="photos/GAW.png" width="163" height="60" hspace="20" border="0" /><img src="photos/logo.png" width="80" height="76" hspace="40" border="0" /></a><a href="http://www.owendawsonphotography.com" target="_blank"><img src="photos/ody.png" width="199" height="59" border="0" /></a></p>
    <h2 align="center" class="style6">©Owen Dawson P.G.A. ™ All rights reserved</h2>
    <!-- end #footer -->
  </div>
<!-- end #container --></div>
<script type="text/javascript">
<!--
var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
//-->
</script>
</body>
<!-- InstanceEnd --></html>
thank you page
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
</head>
<body>
Thank you for fill out my lesson form. I will be in touch with you shortly. Owen
</body>
</html>

Your PHP script is not secured at all. I would recommend using Forms To Go (http://www.bebosoft.com/products/formstogo/overview) to create the PHP script.
The unregistered version can be used for free. It will get you up and running in no time.
In your HTML form,remove enctype="multipart/form-data" from this:
<form action="contactformprocess_original_db.php" method="post" enctype="multipart/form-data" name="form1" id="form1" target="ifr">
enctype="multipart/form-data" is only required if you have a file upload field in the form.

Similar Messages

  • Parser Error when trying to use enterprise search

    Anytime I use my enterprise search in sharepoint 2013 I get a parser error.  Any ideas of what I can do to fix this?
    Server Error in '/' Application.
    Parser Error
    Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately. 
    Parser Error Message: The base type 'Microsoft.Office.Server.Search.Internal.UI.SearchResultsLayoutPage' is not allowed for this page. The type Microsoft.Office.Server.Search.Internal.UI.SearchResultsLayoutPage, Microsoft.Office.Server.Search,
    Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c could not be found or it is not registered as safe.
    Source Error: 
    Line 1: <%@ Page language="C#" Inherits="Microsoft.Office.Server.Search.Internal.UI.SearchResultsLayoutPage,Microsoft.Office.Server.Search,Version=15.0.0.0,Culture=neutral,PublicKeyToken=71e9bce111e9429c" %>
    Line 2: <%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="Utilities" Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="OSRVWC" Namespace="Microsoft.Office.Server.WebControls" Assembly="Microsoft.Office.Server, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="OSRVUPWC" Namespace="Microsoft.Office.Server.WebControls" Assembly="Microsoft.Office.Server.UserProfiles, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="SPSWC" Namespace="Microsoft.SharePoint.Portal.WebControls" Assembly="Microsoft.SharePoint.Portal, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="SEARCHWC" Namespace="Microsoft.Office.Server.Search.WebControls" Assembly="Microsoft.Office.Server.Search, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="PublishingWebControls" Namespace="Microsoft.SharePoint.Publishing.WebControls" Assembly="Microsoft.SharePoint.Publishing, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    Line 3:
    Source File: /sites/Search/_catalogs/masterpage/searchresults.aspx    Line: 1 
    Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.34212

    Ok I had to go back and grab and old searchresults.aspx code and past it in it from my prod.  Once I did that it works fine.  I think a cu update might have changed it.  Also I just want to say thanks to everyone that replied.  The answer
    given helped me locate and answer.
    Here is what I had to put back in to fix it
     <%@ Page language="C#"   Inherits="Microsoft.SharePoint.Publishing.PublishingLayoutPage,Microsoft.SharePoint.Publishing,Version=15.0.0.0,Culture=neutral,PublicKeyToken=71e9bce111e9429c" meta:webpartpageexpansion="full"
    meta:progid="SharePoint.WebPartPage.Document" %>
    <%@ Register Tagprefix="SharePoint" Namespace="Microsoft.SharePoint.WebControls" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="Utilities"
    Namespace="Microsoft.SharePoint.Utilities" Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="WebPartPages" Namespace="Microsoft.SharePoint.WebPartPages"
    Assembly="Microsoft.SharePoint, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="OSRVWC" Namespace="Microsoft.Office.Server.WebControls" Assembly="Microsoft.Office.Server,
    Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="OSRVUPWC" Namespace="Microsoft.Office.Server.WebControls" Assembly="Microsoft.Office.Server.UserProfiles, Version=15.0.0.0, Culture=neutral,
    PublicKeyToken=71e9bce111e9429c" %> <%@ Register Tagprefix="SPSWC" Namespace="Microsoft.SharePoint.Portal.WebControls" Assembly="Microsoft.SharePoint.Portal, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c"
    %> <%@ Register Tagprefix="SEARCHWC" Namespace="Microsoft.Office.Server.Search.WebControls" Assembly="Microsoft.Office.Server.Search, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %> <%@ Register
    Tagprefix="PublishingWebControls" Namespace="Microsoft.SharePoint.Publishing.WebControls" Assembly="Microsoft.SharePoint.Publishing, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c" %>
    <asp:Content ContentPlaceHolderId="PlaceHolderAdditionalPageHead" runat="server">
    <SharePoint:StyleBlock runat="server"> 
            #s4-titlerow
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { 
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; display: none 
    !important; 
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }
    #titlerow
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; { 
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; display: none 
    !important; 
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; }
    <%
    WebPartManager webPartManager = SPWebPartManager.GetCurrentWebPartManager(this.Page);
    if (webPartManager != null && webPartManager.DisplayMode == SPWebPartManager.BrowseDisplayMode)
    %>#s4-ribbonrow
    display: none;
    <%
    %></SharePoint:StyleBlock>
    </asp:Content>
    <asp:Content ContentPlaceHolderId="PlaceHolderPageTitleInTitleArea" runat="server">
    </asp:Content>
    <asp:Content ContentPlaceHolderId="PlaceHolderSearchArea" runat="server"> 
    </asp:Content>
    <asp:Content ContentPlaceHolderId="PlaceHolderLeftNavBar" runat="server"> 
    <div id="searchIcon">
    <SharePoint:SPSimpleSiteLink CssClass="ms-siteicon-a" runat="server" id="onetidProjectPropertyTitleGraphic">
    <SharePoint:SiteLogoImage CssClass="ms-siteicon-img" name="onetidHeadbnnr0" id="onetidHeadbnnr2" LogoImageUrl="/_layouts/15/images/siteIcon.png" runat="server"/>
    </SharePoint:SPSimpleSiteLink>
    </div>
    <div class="ms-searchCenter-refinement">
    <WebPartPages:WebPartZone 
    runat="server" 
    AllowPersonalization="false" 
    FrameType="TitleBarOnly" 
    title="<%$Resources:Microsoft.Office.Server.Search,LayoutPageZone_NavigationZone%>" 
    id="NavigationZone" orientation="Vertical" 
    QuickAdd-GroupNames="Search" 
    QuickAdd-ShowListsAndLibraries="false"><ZoneTemplate>
    <spsswc:RefinementScriptWebPart runat="server" SelectedRefinementControlsJson="{&quot;refinerConfigurations&quot;:[{&quot;propertyName&quot;:&quot;FileType&quot;,&quot;displayName&quot;:null,&quot;displayTemplate&quot;:&quot;~sitecollection/_catalogs/masterpage/Display
    Templates/Filters/Filter_Default.js&quot;,&quot;maxNumberRefinementOptions&quot;:21,&quot;type&quot;:&quot;Text&quot;,&quot;refinerSpecStringOverride&quot;:null,&quot;useDefaultDateIntervals&quot;:false,&quot;isInherited&quot;:false,&quot;sortBy&quot;:0,&quot;sortOrder&quot;:0,&quot;intervals&quot;:null,&quot;aliases&quot;:null},{&quot;propertyName&quot;:&quot;contentclass&quot;,&quot;displayName&quot;:null,&quot;displayTemplate&quot;:&quot;~sitecollection/_catalogs/masterpage/Display
    Templates/Filters/Filter_Default.js&quot;,&quot;maxNumberRefinementOptions&quot;:10,&quot;type&quot;:&quot;Text&quot;,&quot;refinerSpecStringOverride&quot;:null,&quot;useDefaultDateIntervals&quot;:false,&quot;isInherited&quot;:false,&quot;sortBy&quot;:0,&quot;sortOrder&quot;:0,&quot;intervals&quot;:null,&quot;aliases&quot;:null},{&quot;propertyName&quot;:&quot;ContentTypeId&quot;,&quot;displayName&quot;:null,&quot;displayTemplate&quot;:&quot;~sitecollection/_catalogs/masterpage/Display
    Templates/Filters/Filter_Default.js&quot;,&quot;maxNumberRefinementOptions&quot;:15,&quot;type&quot;:&quot;Text&quot;,&quot;refinerSpecStringOverride&quot;:null,&quot;useDefaultDateIntervals&quot;:false,&quot;isInherited&quot;:false,&quot;sortBy&quot;:0,&quot;sortOrder&quot;:0,&quot;intervals&quot;:null,&quot;aliases&quot;:null},{&quot;propertyName&quot;:&quot;WebTemplate&quot;,&quot;displayName&quot;:null,&quot;displayTemplate&quot;:&quot;~sitecollection/_catalogs/masterpage/Display
    Templates/Filters/Filter_Default.js&quot;,&quot;maxNumberRefinementOptions&quot;:10,&quot;type&quot;:&quot;Text&quot;,&quot;refinerSpecStringOverride&quot;:null,&quot;useDefaultDateIntervals&quot;:false,&quot;isInherited&quot;:false,&quot;sortBy&quot;:0,&quot;sortOrder&quot;:0,&quot;intervals&quot;:null,&quot;aliases&quot;:null},{&quot;propertyName&quot;:&quot;DisplayAuthor&quot;,&quot;displayName&quot;:null,&quot;displayTemplate&quot;:&quot;~sitecollection/_catalogs/masterpage/Display
    Templates/Filters/Filter_Default.js&quot;,&quot;maxNumberRefinementOptions&quot;:9,&quot;type&quot;:&quot;Text&quot;,&quot;refinerSpecStringOverride&quot;:null,&quot;useDefaultDateIntervals&quot;:false,&quot;isInherited&quot;:false,&quot;sortBy&quot;:0,&quot;sortOrder&quot;:0,&quot;intervals&quot;:null,&quot;aliases&quot;:null},{&quot;propertyName&quot;:&quot;LastModifiedTime&quot;,&quot;displayName&quot;:null,&quot;displayTemplate&quot;:&quot;~sitecollection/_catalogs/masterpage/Display
    Templates/Filters/Filter_SliderBarGraph.js&quot;,&quot;maxNumberRefinementOptions&quot;:0,&quot;type&quot;:&quot;DateTime&quot;,&quot;refinerSpecStringOverride&quot;:null,&quot;useDefaultDateIntervals&quot;:true,&quot;isInherited&quot;:false,&quot;sortBy&quot;:0,&quot;sortOrder&quot;:0,&quot;intervals&quot;:null,&quot;aliases&quot;:null}]}"
    UseManagedNavigationRefiners="False" QueryGroupName="Default" StatesJson="{}" ServerIncludeScriptsJson="null" Title="Refinement" FrameType="None" SuppressWebPartChrome="False" Description="This
    webpart helps the users to refine search results" IsIncluded="True" ZoneID="NavigationZone" PartOrder="2" FrameState="Normal" AllowRemove="True" AllowZoneChange="True" AllowMinimize="True"
    AllowConnect="True" AllowEdit="True" AllowHide="True" IsVisible="True" DetailLink="" HelpLink="" HelpMode="Modeless" Dir="Default" PartImageSmall="" MissingAssembly="Cannot
    import this Web Part." PartImageLarge="" IsIncludedFilter="" ExportControlledProperties="True" ConnectionID="00000000-0000-0000-0000-000000000000" ID="g_5464e9c4_507f_4bc2_813e_f42102331b84" ChromeType="None"
    ExportMode="All" __MarkupType="vsattributemarkup" __WebPartId="{5464E9C4-507F-4BC2-813E-F42102331B84}" WebPart="true" Height="" Width=""></spsswc:RefinementScriptWebPart>
    </ZoneTemplate></WebPartPages:WebPartZone>&nbsp;
    </div>
    </asp:Content>
    <asp:Content ContentPlaceHolderId="PlaceHolderMain" runat="server">
    <div class="ms-searchCenter-result-main">
            <WebPartPages:WebPartZone 
                runat="server" 
                AllowPersonalization="false" 
                FrameType="TitleBarOnly" 
                title="<%$Resources:Microsoft.Office.Server.Search,LayoutPageZone_MainZone%>" 
                id="MainZone" orientation="Vertical" 
                QuickAdd-GroupNames="Search" 
                QuickAdd-ShowListsAndLibraries="false"><ZoneTemplate>
    <spsswc:SearchBoxScriptWebPart runat="server" QueryGroupNamesJson="[&quot;Default&quot;]" PageTitlePrefix="Search: {0}" StatesJson="{}" ServerIncludeScriptsJson="null"
    Title="Search Box" FrameType="None" SuppressWebPartChrome="False" Description="Displays a search box that allows users to search for information." IsIncluded="True" ZoneID="MainZone" PartOrder="2"
    FrameState="Normal" AllowRemove="True" AllowZoneChange="True" AllowMinimize="True" AllowConnect="True" AllowEdit="True" AllowHide="True" IsVisible="True" DetailLink=""
    HelpLink="" HelpMode="Modeless" Dir="Default" PartImageSmall="" MissingAssembly="Cannot import this Web Part." PartImageLarge="" IsIncludedFilter="" ExportControlledProperties="True"
    ConnectionID="00000000-0000-0000-0000-000000000000" ID="g_76472507_3901_42a8_8a5b_d642708334b4" ChromeType="None" ExportMode="All" __MarkupType="vsattributemarkup" __WebPartId="{76472507-3901-42A8-8A5B-D642708334B4}"
    WebPart="true" Height="" Width=""></spsswc:SearchBoxScriptWebPart>
    <spsswc:SearchNavigationWebPart runat="server" QueryGroupName="Default" Title="Search Navigation" FrameType="None" SuppressWebPartChrome="False" Description="This webpart helps the users to navigate
    among search verticals" IsIncluded="True" ZoneID="MainZone" PartOrder="4" FrameState="Normal" AllowRemove="True" AllowZoneChange="True" AllowMinimize="True" AllowConnect="True"
    AllowEdit="True" AllowHide="True" IsVisible="True" DetailLink="" HelpLink="" HelpMode="Modeless" Dir="Default" PartImageSmall="" MissingAssembly="Cannot import this Web Part."
    PartImageLarge="" IsIncludedFilter="" ExportControlledProperties="True" ConnectionID="00000000-0000-0000-0000-000000000000" ID="g_fe660662_931e_46d0_8931_e050d982e0ca" ChromeType="None" ExportMode="All"
    __MarkupType="vsattributemarkup" __WebPartId="{FE660662-931E-46D0-8931-E050D982E0CA}" WebPart="true" Height="" Width=""></spsswc:SearchNavigationWebPart>
    <spsswc:ResultScriptWebPart runat="server" DataProviderJSON="{&quot;QueryGroupName&quot;:&quot;Default&quot;,&quot;QueryPropertiesTemplateUrl&quot;:&quot;querygroup://webroot/_catalogs/masterpage/SearchResults.aspx?groupname=Default&quot;,&quot;IgnoreQueryPropertiesTemplateUrl&quot;:false,&quot;SourceID&quot;:null,&quot;SourceName&quot;:null,&quot;SourceLevel&quot;:null,&quot;CollapseSpecification&quot;:&quot;&quot;,&quot;QueryTemplate&quot;:&quot;{searchboxquery}&quot;,&quot;FallbackSort&quot;:null,&quot;FallbackSortJson&quot;:&quot;null&quot;,&quot;RankRules&quot;:null,&quot;RankRulesJson&quot;:&quot;null&quot;,&quot;AsynchronousResultRetrieval&quot;:false,&quot;SendContentBeforeQuery&quot;:true,&quot;BatchClientQuery&quot;:true,&quot;FallbackLanguage&quot;:-1,&quot;FallbackRankingModelID&quot;:&quot;&quot;,&quot;EnableStemming&quot;:true,&quot;EnablePhonetic&quot;:false,&quot;EnableNicknames&quot;:false,&quot;EnableInterleaving&quot;:true,&quot;EnableQueryRules&quot;:true,&quot;EnableOrderingHitHighlightedProperty&quot;:false,&quot;HitHighlightedMultivaluePropertyLimit&quot;:-1,&quot;IgnoreContextualScope&quot;:false,&quot;ScopeResultsToCurrentSite&quot;:false,&quot;TrimDuplicates&quot;:true,&quot;Properties&quot;:{},&quot;PropertiesJson&quot;:&quot;{}&quot;,&quot;ClientType&quot;:&quot;AllResultsQuery&quot;,&quot;UpdateAjaxNavigate&quot;:true,&quot;SummaryLength&quot;:180,&quot;DesiredSnippetLength&quot;:90,&quot;PersonalizedQuery&quot;:false,&quot;FallbackRefinementFilters&quot;:null,&quot;IgnoreStaleServerQuery&quot;:true,&quot;RenderTemplateId&quot;:&quot;&quot;,&quot;AlternateErrorMessage&quot;:null,&quot;Title&quot;:&quot;&quot;}"
    ItemBodyTemplateId="~sitecollection/_catalogs/masterpage/Display Templates/Search/Item_CommonItem_Body.js" SelectedPropertiesJson="null" HitHighlightedPropertiesJson="[&quot;Title&quot;,&quot;Path&quot;,&quot;Author&quot;,&quot;SectionNames&quot;,&quot;SiteDescription&quot;]"
    AvailableSortsJson="[{&quot;name&quot;:&quot;Relevance&quot;,&quot;sorts&quot;:[]},{&quot;name&quot;:&quot;Date(Newest)&quot;,&quot;sorts&quot;:[{&quot;p&quot;:&quot;Write&quot;,&quot;d&quot;:1}]},{&quot;name&quot;:&quot;Date(Oldest)&quot;,&quot;sorts&quot;:[{&quot;p&quot;:&quot;Write&quot;,&quot;d&quot;:0}]},{&quot;name&quot;:&quot;Lifetime
    Views&quot;,&quot;sorts&quot;:[{&quot;p&quot;:&quot;ViewsLifeTime&quot;,&quot;d&quot;:1}]},{&quot;name&quot;:&quot;Recent Views&quot;,&quot;sorts&quot;:[{&quot;p&quot;:&quot;ViewsRecent&quot;,&quot;d&quot;:1}]}]"
    ScrollToTopOnRedraw="True" PreloadedItemTemplateIdsJson="[&quot;~sitecollection/_catalogs/masterpage/Display Templates/Search/Group_Default.js&quot;,&quot;~sitecollection/_catalogs/masterpage/Display Templates/Search/Item_Default.js&quot;,&quot;~sitecollection/_catalogs/masterpage/Display
    Templates/Search/Item_Site.js&quot;,&quot;~sitecollection/_catalogs/masterpage/Display Templates/Search/Item_Word.js&quot;,&quot;~sitecollection/_catalogs/masterpage/Display Templates/Search/Item_PowerPoint.js&quot;,&quot;~sitecollection/_catalogs/masterpage/Display
    Templates/Search/Item_Person_CompactHorizontal.js&quot;,&quot;~sitecollection/_catalogs/masterpage/Display Templates/Search/Item_BestBet.js&quot;,&quot;~sitecollection/_catalogs/masterpage/Display Templates/Search/Item_WebPage.js&quot;]"
    ShowAlertMe="False" QueryGroupName="Default" StatesJson="{}" ServerIncludeScriptsJson="null" Title="Search Results" FrameType="None" SuppressWebPartChrome="False" Description="Displays
    the search results and the properties associated with them." IsIncluded="True" ZoneID="MainZone" PartOrder="6" FrameState="Normal" AllowRemove="True" AllowZoneChange="True" AllowMinimize="True"
    AllowConnect="True" AllowEdit="True" AllowHide="True" IsVisible="True" DetailLink="" HelpLink="" HelpMode="Modeless" Dir="Default" PartImageSmall="" MissingAssembly="Cannot
    import this Web Part." PartImageLarge="" IsIncludedFilter="" ExportControlledProperties="True" ConnectionID="00000000-0000-0000-0000-000000000000" ID="g_5847a751_bb89_4b6e_bf75_c0e3bae93666" ChromeType="None"
    ExportMode="All" __MarkupType="vsattributemarkup" __WebPartId="{5847A751-BB89-4B6E-BF75-C0E3BAE93666}" WebPart="true" Height="" Width=""></spsswc:ResultScriptWebPart>
    </ZoneTemplate></WebPartPages:WebPartZone>
        </div> 
    </asp:Content>

  • Why does this keep giving a parse error when trying to use JavaHelp

    I'm trying to get JavaHelp to integrate into my application, but when I call the code below I get the following error;
    javax.help.HelpSetException: Could not parse
    Got an IOException (null)
    Parsing failed for nullthe error is occuring at the line indicated;
         HelpSet helpSet;
         HelpBroker helpBroker;
         try
         URL url = new URL("file", "", -1, "file://C:/jh1.1.3/demos/hsjar/idehelp.jar");
         ClassLoader loader = new URLClassLoader(new URL[]{url});
         URL helpUrl = null;
         helpUrl = HelpSet.findHelpSet(loader, "IdeHelp.hs");
         helpSet = new HelpSet(loader, helpUrl);    // *** error here ***
         helpBroker = helpSet.createHelpBroker();
         helpBroker.enableHelpKey(rootPane, "top", helpSet);
         CSH.setHelpIDString(menuItem, "Help");
         helpBroker.enableHelpOnButton(menuItem, "Help", helpSet);
         catch (Exception ex)
         ex.printStackTrace();
         }helpURL never seems to take a value, always staying at null. Can anyone see what I'm doing wrong?
    Thanks

    Got it sorted. I had to create a CLASSPATH to the jar and then the hs reference worked fine. :D

  • "500 internal server error" when trying to use F4 help in the variable sele

    Hi Experts,
    I am getting "500 internal server error" when trying to use F4 help in the variable selection screen (in WAD).
    How could this be resolved?
    Quick reply would be very helpfull.
    Thanks in advance !!

    It seems you are using wrong client ID. Make sure your logon pad has right details. You should verify this with your basis team.
    If the problem persists then try re-installing. But before you do that you can execute sapbexc.xla which is in the c:\program files\sap\bw. Type c:\ in cell c3 and click "start button". Any red flag means you have wrong version dll/ocx on your local drive, in that case you should reinstall with right patches.
    if this solution helps u then pls assign points

  • Runtime error when trying to use Thinkvantage system updater

    I get a runtime error when trying to use the Thinkvantage system updater.Have tried it numerous times and this is the exact message:
    "Runtime error!
    Program:C:\Program Files\Lenovo\System Update\tvsu.exe
    This application has requested the Runtime to terminate it in an unusual way.
    Please contact the application's support team for more information."
    Can somebody please help me to get the Thinkvantage system updater working properly?
    Thanks-George
    This issue has since been resolved.Thanks-G

    I'm getting the same error.   I tried reinstalling system updater but it didn't help.

  • Why do I get this error when trying to use my bluetooth headset as a listening device? There was an error connecting to your audio device. Make sure it is turned on and in range. The audio portion of the program you were using may have to be restarted.

    Why do I get this error when trying to use my bluetooth headset as a listening device? There was an error connecting to your audio device. Make sure it is turned on and in range. The audio portion of the program you were using may have to be restarted.

    I may have already resolved this issue buy removing the device from my computer and re-pairing it. It is currently working just fine.

  • I get the following error when trying to use the itunes store "your apple id has been disabled"

    I get the following error when trying to use the itunes store "your apple id has been disabled".  My account was disabled when someone else had been using it without my knowledge.  I changed my apple id password and the apple id is still fine, but itunes has it disabled.  I verified that the computer is authorized for this apple id.  What to do now?

    Welcome to the Apple Community.
    Contact Apple through iTunes Store Support

  • 'System Error' when trying to save Form Manager Registry Settings

    Hi,
    trying to save changes made in the form manager registry settings [Home > Services > Adobe LiveCycle Form Manager > Registry Settings (http://localhost:8080/FormManagerAdmin/registry-cfg-load)], I get an error, which reads:
    > System Error
    >
    The request could not be processed. Please retry the operation. If the problem persists, please contact your system administrator.
    Has anyone had this error as well?
    The system runs fine apart from the jboss log files being crammed with the well-known and pretty annoying
    SpyJMSException.
    Does anyone have an idea how to apply changes to the form manager registry settings, if the web ui does not work? Where are the 'form manager registry settings' being stored? Maybe I succeed in changing the settings manually at least without having to re-install Livecycle...
    Regards,
    Steve

    We are using JBoss 3.2.5.
    Weirdly, last week a collegue of mine was able to save the registry changes. This week, both of us get the 'System error' when trying to save changes. Even using a default Administrator account, we were unable to save changes.
    Is there any other way apart from the LiveCycle web UI to change the registry settings without having to re-install the server? Where are these values stored?

  • Keep getting VncViewer.class not found error when trying to use Windows 7

    Greetings,
    I have no issue accessing the OVM Manager 2.2 with OEL 5.4 x86_64 with the latest Java release from ULN. But when I use a Windows 7 client ( x86) with the Sun Java 6 Update 18 I get the following error when trying to access the Console of a VM Guest:
    Java Plug-in 1.6.0_18
    Using JRE version 1.6.0_18-b07 Java HotSpot(TM) Client VM
    User home directory = C:\Users\deverej
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    o: trigger logging
    q: hide console
    r: reload policy configuration
    s: dump system and deployment properties
    t: dump thread list
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    load: class VncViewer.class not found.
    java.lang.ClassNotFoundException: VncViewer.class
         at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed:http://141.144.112.202:8888/OVS/faces/app/VncViewer/class.class
         at sun.plugin2.applet.Applet2ClassLoader.getBytes(Unknown Source)
         at sun.plugin2.applet.Applet2ClassLoader.access$000(Unknown Source)
         at sun.plugin2.applet.Applet2ClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 7 more
    Exception: java.lang.ClassNotFoundException: VncViewer.class
    I am curious fi I should use only a specifc Java Engine with IE 7 or the latest Firefox browers.

    Same issue to with Windows XP SP3 x86 with Java Runtime Enviornment 1.5.0_15
    J2SE Enviornment 5.0 Update 15
    Java 6 Update 17

  • Why do I get an error when trying to use a link in the forum?

    I just tried to use the link that Varad offered in Redirect certain users with login procedure and I got an error:
    The specified thread [0] was not found.
    I got the same thing when trying to use a similar link a couple of days ago. They sound like something I might benefit from, but I can' get to them.
    The link URL looks like Re: logon username determines page that opens, how can I accomplish this?
    Any ideas?
    Thanks,
    Gregory
    P.S. I'm using Firefox 3.0.4

    Tony,
    That's what I thought, but apparently it worked for Stefan. If you go to Stefan's post (first link above) do you also see the same link as I have attempted to copy? In Stefan's post, do you see the question mark in a diamond?
    Thanks,
    Gregory

  • Program error when trying to use the clone stamp tool - PSE 8

    When trying to use the CLONE STAMP TOOL, getting the following:  "Could not use the clone stamp tool because of a program error".
    Runnng PSE 8 on Windows XP/SP3.  I purchased the key to have a full version, versus the 'trial version'.  I also have Photo Essentials 3 installed and have used it without any problems.
    Any suggestions?

    I figured it out - it was ID 10 T error...ugh.
    Was following along in a book and blindly did what it said....was forgetting to hit the 'alt' key when first defining the area to clone....
    However, it was kind of a confusing error message - something like "clone area not defined" would be more of a help.
    thanks.

  • List of values failure error when trying to use dynamic data values

    Hi there,
    I have a user who is experiencing problems when trying to use dynamic values in a report.  Whenever he tries to insert dynamic parameters he gets the following error message:
    Prompting failed with the following message: 'List of Values failure: Failed to get values.  [Cause of error: Access is denied.]  Error Source: prompt.dll  Error Code: 0x8004380D
    He even opened the sample report - prompting.rpt - that is included with CR and gets the same error.
    We are using Crystal Reports XI Release 2 ver. 11.5.11.1470.
    Any help would be appreciated.

    Please excuse my ignorance of the product.  I've had this problem dropped in my lap and I know practically nothing about Crystal Reports.  In doing some digging it appears to me as if the BusinessObjects Enterprise software may not be installed properly, if at all.  In the programs menu under the BusinessObjects XI Release 2 folder I see a BusinessObjects Enterprise folder, but the only icon listed in that folder is Software Inventory Tool.
    Is the BusinessObjects Enterprise software a separate install from Crystal Reports or is it bundled together?  I talked with the tech that did the install and he said that all he had was the Crystal Reports install media.

  • Pop-up errors when trying to use FaceBook on Sarafi 4 on Windows

    Hi there.
    When trying to use Safari on Windows, I get an annoying pop-up whenever I try to use chat on FaceBook and it says something about MIME type not recognised and pluggin errors. I have installed the latest flash but it keeps happening - is there another plug-in I need to reinstall?

    Here is a link to the info on how to access the 4200 set up pages and how to do Port Forwarding with it
    http://portforward.com/english/routers/port_forwarding/Siemens/4200/iChat.htm
    Use the Access info and then see if you have it doing UPnP to open the ports.
    If it is then the Port Forwarding does not need setting.
    Next, if you did originally set it to do Port Forwarding this should have pointed to an IP (The one your computer has/had)
    Check the Port Forward that is set is pointing to the IP the computer has now by Looking in System Preferences > Network
    QUite a way done the log your end suddenly switches the port it sends the SIP part of the invite on
    INVITE sip:user@rip:61042 SIP/2.0
    Via: SIP/2.0/UDP sip:60442;branch=z9hG4bK672a7283709f480e
    Max-Forwards: 70
    To: "u0" <sip:user@rip:61042>
    From: "0" <sip:user@lip:16402>;tag=2100237526
    Call-ID: 5c6e32e2-2788-11dd-904a-8c2872d74012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:60442>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 744
    This is not an iChat port and it messes up where iChat then says to send the Video and Audio data.
    The log from the other end implies the ports are not even open.
    10:42 PM Wednesday; July 9, 2008

  • FRM-92050 error when trying to open form after switching to HTTP mode

    Hi all,
    Yesterday, I installed Oracle Applications 11i on Red Hat Enterprise Linux ES 4 and forms were working correctly in the default mode, which is native (socket). Following steps 4 and 5 in [Doc 201340.1|https://metalink2.oracle.com/metalink/plsql/f?p=130:14:6398415066875997204::::p14_database_id,p14_docid,p14_show_header,p14_show_help,p14_black_frame,p14_font:NOT,201340.1,1,1,1,helvetica], I enabled HTTP mode, and now my forms are not working. When I open a form now, I get this error:
    FRM-92050: Failed to connect to the Server: /forms/formservlet:-1
    Details...
    Java Exception:
    java.io.IOException: Negative content-length from http://...
    I've searched MetaLink and the forums for this error and all the results I found deal with HTTP headers or cookies being corrupted, usually by an intermediate networking device (web proxy, web cache, SSL accelerator, etc.). I am not using anything of the sort - the client is connecting directly to the Oracle server.
    I checked the Apache error log and this is what I see:
    [Thu May 14 09:10:28 2009] [error] [client 10.11.1.114] client denied by server configuration: /work/oracle/viscomn/java/java
    [Thu May 14 09:10:28 2009] [error] [client 10.11.1.114] client denied by server configuration: /work/oracle/viscomn/java/java
    [Thu May 14 09:10:33 2009] [error] [client 10.11.1.114] File does not exist: /work/oracle/viscomn/java/oracle/forms/icons/oracle_logo_light.gif
    [Thu May 14 09:10:33 2009] [error] [client 10.11.1.114] File does not exist: /work/oracle/viscomn/java/oracle/forms/icons/oracle_logo_light.gif
    [Thu May 14 09:10:34 2009] [error] [client 10.11.1.114] File does not exist: /work/oracle/viscomn/portal/VIS_gen1-cs49/forms/formservlet
    [Thu May 14 09:10:34 2009] [error] [client 10.11.1.114] client denied by server configuration: /work/oracle/viscomn/java/oracle/ewt
    [Thu May 14 09:10:34 2009] [error] [client 10.11.1.114] client denied by server configuration: /work/oracle/viscomn/java/oracle/ewt
    [Thu May 14 09:10:34 2009] [error] [client 10.11.1.114] File does not exist: /work/oracle/viscomn/java/oracle/ewt/alert/resource/AlertBundle_en_US.properties
    I don't like the look of those "client denied by server configuration" messages. What's also odd is that the two files referenced by those messages do not exist on the file system:
    [oracle@gen1-cs49 logs]$ cat /work/oracle/viscomn/java/java
    cat: /work/oracle/viscomn/java/java: No such file or directory
    [oracle@gen1-cs49 logs]$ cat /work/oracle/viscomn/java/oracle/ewt
    cat: /work/oracle/viscomn/java/oracle/ewt: No such file or directory
    Any ideas? Are there any other logfiles I should be checking?

    First, login to System Administrator responsibility, then navigate to Concurrent > Manager > Administer > Processes > Internal Manager LogAh, OK - I was able to open the form and I see a table of managers and services and whatnot, and I see an entry for "Internal Manager", but I don't see any way to view the log. I even tried opening the details of the "Internal Manager" entry and the only button there is "Diagnostics".
    Search for VIS_*.mgr -- Sorry for the typo!Ah, that would explain it. Here are the contents of the correct logfile:
    [oracle@gen1-cs49 VIS_gen1-cs49]$ cat VIS_0514.mgr
    ========================================================================
    Starting VIS_0514@VIS Internal Concurrent Manager -- shell process ID 4314
    logfile=/work/oracle/viscomn/admin/log/VIS_gen1-cs49/VIS_0514.mgr
    PRINTER=noprint
    mailto=oracle
    restart=N
    diag=N
    sleep=60 (default)
    pmon=20 (default)
    quesiz=1 (default)
    Routine &ROUTINE has attempted to start the internal concurrent manager. The ICM is already running. Contact you system administrator for further assistance.afpdlrq received an unsuccessful result from PL/SQL procedure or function FND_DCP.Request_Session_Lock.
    Routine FND_DCP.REQUEST_SESSION_LOCK received a result code of 1 from the call to DBMS_LOCK.Request.
    Possible DBMS_LOCK.Request resultCall to establish_icm failed
    The Internal Concurrent Manager has encountered an error.
    Review concurrent manager log file for more detailed information. : 14-MAY-2009 11:06:48 -
    Shutting down Internal Concurrent Manager : 14-MAY-2009 11:06:48
    List of errors encountered:
    _ 1 _
    Routine AFPCSQ encountered an ORACLE error. .
    Review your error messages for the cause of the error. (=<POINTER>)
    List of errors encountered:
    _ 1 _
    Routine AFPCAL received failure code while parsing or running your
    concurrent program CPMGR
    Review your concurrent request log file for more detailed information.
    Make sure you are passing arguments in the correct format.
    The VIS_0514@VIS internal concurrent manager has terminated with status 1 - giving up.

  • Compiling code throws undeclared errors when trying to view form in design mode.

    Let me start this off by admitting that I've committed sacrilege - I edited code inside of a windows forms InitializeComponent() function. I changed this (located in the beginning of the InitializeComponent() function where all UI elements are declared):
    this->image = gcnew OpenTK::GLControl();
    To this:
    OpenTK::Graphics::GraphicsMode^ temp = gcnew OpenTK::Graphics::GraphicsMode(ColorFormat(16, 16, 16, 16), 16, 0, 0, ColorFormat(16, 16, 16, 16), 3 , false);
    this->image = gcnew OpenTK::GLControl(temp)
    The result is that the code still compiles, but it gives the following errors when I try to view the code in design mode:
    The variable 'image' is either undeclared or was never assigned.
    "The variable 'temp' is either undeclared or was never assigned."
    The former can get eliminated by using two constructors, one with no parameters, followed by an immediate override of the image object with my actual constructor. But I can't seem to get rid of the second problem. Declaring the variable temp outside of the
    function didn't help, so I'm not sure if or how I can make this work. Any suggestions on how I can make the design mode parser accept my intrusions? I understand that I've done some evil things to make this happen, but I'd like to keep it more or less like
    this since the result is that I have a vsynced windows form.

    Hi MHoll4,
    It seems that it is not the correct forum for this issue.
    Since this issue is related to the WinForms app, I suggest you post this issue to the WinForm forums here:
    http://social.msdn.microsoft.com/Forums/windows/en-US/home?category=windowsforms
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • WPF Styles and WPF Crystal Reports viewer

    Hi, We are currently developing a WPF application which will utilize Styles created with Expression Blend. Our environment is VS2010 SP1 and Crystal Reports for VS2010 SP2. We want to design our reports with Crystal Reports but we don't seem to find

  • Half of RAID not mounting

    I have got an Xserve RAID RAID with 250 gig drives. Drives 1-7 RAID 5 connected to one server through a Qlogic SAN box 64 and working as expected. Drives 8-14 RAID 5 connected to another server also through the Qlogic switch. I cannot get 8-14 to mou

  • XML updated by php

    i write everything in this zip archive and explaine more detailed what i want to do please help me.i whant to update xml list with php http://rapidshare.com/files/75860277/MP3.zip please help

  • Extreme speed loss

    This problem has been bugging me for quite some time now. I have a brand new Airport Extreme, making it the 3rd I've purchased. I've got a very reliable cable modem, and comcast recently verified that everything is fine with my line. So why is it tha

  • Need good quality printer/scanner for Mac Pro

    I have read other posts and can't seem to find a solid answer. I need a good quality printer/scanner to use for my business. I scan old pictures and edit them together with music and video. I am looking for printer/scanner that can do this with great