Desperate for help: ADDT registration form

New to ADTT and back again with another, more urgent problem.
I have used ADDT to create a registration page, using UPDATE instead of INSERT (this is necessary because the users are already in our system as contacts).  To accomplish this I had to do some hand coding and I fear I may have gone awry.  Initially I kept getting a blank page with the message "error: internal server" message when the page loaded...currently I get "Fatal error: Call to a member function addField() on a non-object in /home/agciorg/public_html/events/2009/259/users_Registration.php on line 33."  Now I can no longer open the registration page in Dreamweaver -- freezes DW everytime.  So I'm trying to edit in Text Edit to get it back to a functioning page.  I've already rebuilt the page from scratch twice trying to get things to work and I'm on a major time crunch and just can't afford to do it again.  Below is the current code (I've also attached the php file as a .txt)...any help in resolving my issue would be much, MUCH appreciated!
<?php require_once('../../../Connections/AGCI.php'); ?>
<?php
// Load the common classes
require_once('../../../includes/common/KT_common.php');
// Load the tNG classes
require_once('../../../includes/tng/tNG.inc.php');
// Make a transaction dispatcher instance
$tNGs = new tNG_dispatcher("../../../");
// Make unified connection variable
$conn_AGCI = new KT_connection($AGCI, $database_AGCI);
// Start trigger
$formValidation = new tNG_FormValidation();
$formValidation->addField("UserFirstName", true, "text", "", "", "", "");
$formValidation->addField("UserLastName", true, "text", "", "", "", "");
$formValidation->addField("UserTitle", true, "text", "", "", "", "");
$formValidation->addField("UserOrganization", true, "text", "", "", "", "");
$formValidation->addField("UserEmail", true, "text", "email", "", "", "");
$formValidation->addField("UserPassword", true, "text", "", "", "", "");
$formValidation->addField("UserPhone", true, "text", "", "", "", "");
$formValidation->addField("UserAddress", true, "text", "", "", "", "");
$formValidation->addField("UserCity", true, "text", "", "", "", "");
$formValidation->addField("UserState", true, "text", "", "", "", "");
$formValidation->addField("UserZip", true, "text", "zip_generic", "", "", "");
$formValidation->addField("UserCountry", true, "text", "", "", "", "");
$formValidation->addField("UserExpertise", true, "text", "", "", "", "");
$formValidation->addField("UserArrivalDate", true, "date", "", "", "", "");
$formValidation->addField("UserDepartureDate", true, "date", "", "", "", "");
$formValidation1->addField("UserPassword", true, "text", "", "", "", "");
$tNGs->prepareValidation($formValidation);
// End trigger
//start Trigger_CheckPasswords trigger
//remove this line if you want to edit the code by hand
function Trigger_CheckPasswords(&$tNG) {
  $myThrowError = new tNG_ThrowError($tNG);
  $myThrowError->setErrorMsg("Passwords do not match.");
  $myThrowError->setField("UserPassword");
  $myThrowError->setFieldErrorMsg("The two passwords do not match.");
  return $myThrowError->Execute();
//end Trigger_CheckPasswords trigger
//start Trigger_WelcomeEmail trigger
//remove this line if you want to edit the code by hand
function Trigger_WelcomeEmail(&$tNG) {
  $emailObj = new tNG_Email($tNG);
  $emailObj->setFrom("{KT_defaultSender}");
  $emailObj->setTo("{UserEmail}");
  $emailObj->setCC("");
  $emailObj->setBCC("[email protected]");
  $emailObj->setSubject("Registration Confirmation");
  //FromFile method
  $emailObj->setContentFile("includes/mailtemplates/welcome.html");
  $emailObj->setEncoding("ISO-8859-1");
  $emailObj->setFormat("HTML/Text");
  $emailObj->setImportance("Normal");
  return $emailObj->Execute();
//end Trigger_WelcomeEmail trigger
//start Trigger_ImageUpload trigger
//remove this line if you want to edit the code by hand
function Trigger_ImageUpload(&$tNG) {
  $uploadObj = new tNG_ImageUpload($tNG);
  $uploadObj->setFormFieldName("photo");
  $uploadObj->setDbFieldName("UserPhoto");
  $uploadObj->setFolder("../../../dB/ScientistPhotos/");
  $uploadObj->setResize("true", 200, 0);
  $uploadObj->setMaxSize(1500);
  $uploadObj->setAllowedExtensions("gif, jpg, jpeg, png");
  $uploadObj->setRename("custom");
  $uploadObj->setRenameRule("{rsUsers.UserFirstName}_{rsUsers.UserLastName}");
  return $uploadObj->Execute();
//end Trigger_ImageUpload trigger
if (!function_exists("GetSQLValueString")) {
function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
  $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
  $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
  switch ($theType) {
    case "text":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;  
    case "long":
    case "int":
      $theValue = ($theValue != "") ? intval($theValue) : "NULL";
      break;
    case "double":
      $theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
      break;
    case "date":
      $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
      break;
    case "defined":
      $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
      break;
  return $theValue;
mysql_select_db($database_AGCI, $AGCI);
$query_rsUsers = "SELECT * FROM users";
$rsUsers = mysql_query($query_rsUsers, $AGCI) or die(mysql_error());
$row_rsUsers = mysql_fetch_assoc($rsUsers);
$totalRows_rsUsers = mysql_num_rows($rsUsers);
// Make an update transaction instance
$UserRegistration = new tNG_update($conn_AGCI);
$tNGs->addTransaction($UserRegistration);
// Register triggers
$UserRegistration->registerTrigger("STARTER", "Trigger_Default_Starter", 1, "POST", "KT_Update1");
$UserRegistration->registerTrigger("END", "Trigger_Default_Redirect", 99, "redirect.php");
$UserRegistration->registerTrigger("BEFORE", "Trigger_Default_FormValidation", 10, $formValidation);
$UserRegistration->registerTrigger("AFTER", "Trigger_ImageUpload", 97);
$UserRegistration->registerConditionalTrigger("{POST.UserPassword} != {POST.re_UserPassword}", "BEFORE", "Trigger_CheckPasswords", 50);
$UserRegistration->registerTrigger("AFTER", "Trigger_WelcomeEmail", 60);
// Add columns
$UserRegistration->setTable("users");
$UserRegistration->addColumn("UserContactType", "STRING_TYPE", "POST", "UserContactType");
$UserRegistration->addColumn("UserEventID", "NUMERIC_TYPE", "POST", "UserEventID");
$UserRegistration->addColumn("UserFirstName", "STRING_TYPE", "POST", "UserFirstName");
$UserRegistration->addColumn("UserLastName", "STRING_TYPE", "POST", "UserLastName");
$UserRegistration->addColumn("UserTitle", "STRING_TYPE", "POST", "UserTitle");
$UserRegistration->addColumn("UserDepartment", "STRING_TYPE", "POST", "UserDepartment");
$UserRegistration->addColumn("UserOrganization", "STRING_TYPE", "POST", "UserOrganization");
$UserRegistration->addColumn("UserPhone", "STRING_TYPE", "POST", "UserPhone");
$UserRegistration->addColumn("UserCellPhone", "STRING_TYPE", "POST", "UserCellPhone");
$UserRegistration->addColumn("UserAddress", "STRING_TYPE", "POST", "UserAddress");
$UserRegistration->addColumn("UserAddress2", "STRING_TYPE", "POST", "UserAddress2");
$UserRegistration->addColumn("UserCity", "STRING_TYPE", "POST", "UserCity");
$UserRegistration->addColumn("UserState", "STRING_TYPE", "POST", "UserState");
$UserRegistration->addColumn("UserZip", "STRING_TYPE", "POST", "UserZip");
$UserRegistration->addColumn("UserCountry", "STRING_TYPE", "POST", "UserCountry");
$UserRegistration->addColumn("UserWebsite", "STRING_TYPE", "POST", "UserWebsite");
$UserRegistration->addColumn("UserExpertise", "STRING_TYPE", "POST", "UserExpertise");
$UserRegistration->addColumn("UserBio", "STRING_TYPE", "POST", "UserBio");
$UserRegistration->addColumn("UserPhoto", "FILE_TYPE", "POST", "UserPhoto");
$UserRegistration->addColumn("UserArrivalDate", "DATE_TYPE", "POST", "UserArrivalDate");
$UserRegistration->addColumn("UserDepartureDate", "DATE_TYPE", "POST", "UserDepartureDate");
$UserRegistration->addColumn("UserUnsureTravelDates", "CHECKBOX_YN_TYPE", "POST", "UserUnsureTravelDates");
$UserRegistration->addColumn("User#AdultGuests", "NUMERIC_TYPE", "POST", "User_AdultGuests");
$UserRegistration->addColumn("UserAdultGuestNames", "STRING_TYPE", "POST", "UserAdultGuestNames");
$UserRegistration->addColumn("User#ChildGuests", "NUMERIC_TYPE", "POST", "User_ChildGuests");
$UserRegistration->addColumn("UserChildGuestNames", "STRING_TYPE", "POST", "UserChildGuestNames");
$UserRegistration->addColumn("UserUnsureGuests", "CHECKBOX_YN_TYPE", "POST", "UserUnsureGuests");
$UserRegistration->addColumn("UserBookRoom", "CHECKBOX_YN_TYPE", "POST", "UserBookRoom");
$UserRegistration->addColumn("UserComments", "STRING_TYPE", "POST", "UserComments");
$UserRegistration->addColumn("UserRegistrationDate", "DATE_TYPE", "POST", "UserRegistrationDate");
$UserRegistration->addColumn("UserEmail", "STRING_TYPE", "POST", "UserEmail", "{SESSION.kt_login_user}");
$UserRegistration->addColumn("UserPassword", "STRING_TYPE", "POST", "UserPassword");
// Make an update transaction instance
$UsersRegistration = new tNG_update($conn_AGCI);
$tNGs->addTransaction($UsersRegistration);
// Execute all the registered transactions
$tNGs->executeTransactions();
// Get the transaction recordset
$rsusers = $tNGs->getRecordset("users");
$row_rsusers = mysql_fetch_assoc($rsusers);
$totalRows_rsusers = mysql_num_rows($rsusers);
?>
<!-----------------begin registration form----------------->
<div id="RegistrationContainer">
      <form method="post" name="RegistrationForm" id="RegistrationForm" action="<?php echo KT_escapeAttribute(KT_getFullUri()); ?>"> 
        <table width="515" border="0" align="right">
<tr>
  <td height="135" colspan="2" valign="top" scope="col">
      <?php
echo $tNGs->getErrorMsg();
?>
                <h1 align="left">Registration Form</h1>
  <br>
    <span class="style5">Please read the logistics information prior to completing the registration form.</span><br />
       There are a limited number of spots available in this workshop.  To secure a spot, please fill out this registration form to the best of your ability as soon as possible.  Please notify AGCI of any subsequent changes to the information submitted below.
                </td>
</tr>
      <tr>
        <td height="37" colspan="2" scope="col"><strong>Create a Password</strong></td>
       </tr>
<tr>
        <td height="53" colspan="2" valign="top" scope="col">
<table cellpadding="2" cellspacing="0" class="KT_tngtable">
  <tr>
<td width="127" class="KT_th"><label for="UserPassword">Password:</label></td>
<td width="248">
<input type="password" name="UserPassword" id="UserPassword" value="" size="32" />
<?php echo $tNGs->displayFieldHint("UserPassword");?>
<?php echo $tNGs->displayFieldError("users", "UserPassword"); ?>
</td>
</tr>
<tr>
<td class="KT_th"><label for="re_UserPassword">Re-type Password:</label></td>
<td>
<input type="password" name="re_UserPassword" id="re_UserPassword" value="" size="32" />
</td>
</tr>
  <tr>
<td class="KT_th"><label for="UserEmail">Email (username):</label></td>
<td>
<input type="text" name="UserEmail" id="UserEmail" value="<?php echo $_SESSION['kt_login_user']; ?>" size="32" />
<?php echo $tNGs->displayFieldHint("UserEmail");?>
<?php echo $tNGs->displayFieldError("users", "UserEmail"); ?>
</td>
</tr>
</table>
</td>
       </tr>
<tr>
        <td height="37" colspan="2" scope="col"><strong>Contact/Personal Information</strong></td>
       </tr>
<tr>
<td width="229" height="323" align="right" valign="top" scope="col">
<input name="UserContactType" type="hidden" value="Scientist">
<input name="UserEventID" type="hidden" value="259"> <!---NEEDS TO BE CHANGED FOR EACH WORKSHOP--->
<?php $date = getdate(); ?>
<input name="UserRegistrationDate" type="hidden"  value="<?php echo $date ?>" >
          <p align="right"><span class="style5">*</span>First name:
            <input type=text name="firstname" value="<?php echo $_SESSION['kt_UserFirstName']; ?>"></p>
   <p align="right"><span class="style5">*</span>Last Name:
           <input type=text name="lastname" value="<?php echo $_SESSION['kt_UserLastName']; ?>"></p>
          <p align="right"><span class="style5">*</span> Job Title:
            <input type=text name="title"></p>
          <p align="right">Department:
           <input type=text name="department"></p>
         <p align="right"><span class="style5">*</span>Organization:
           <input type=text name="organization"></p>
         <p align="right"><span class="style5">*</span>Office Phone:
           <input type=text name="officephone"></p> 
          <p align="right">Cell Phone:
           <input type=text name="cellphone"></p>     
            </td>
                <td width="255" height="323" valign="top" scope="col">
         <p align="right"><span class="style5">*</span>Address 1:
            <input type=text name="address1"></p>
         <p align="right">Address 2:
           <input type=text name="address2"></p>
          <p align="right"><span class="style5">*</span>City:
            <input type=text name="city"></p>
         <p align="right"><span class="style5">*</span>State / Province:
           <input type=text name="state"></p>
         <p align="right"><span class="style5">*</span>Zip / Postal Code:
           <input type=text name="zipcode"></p>
         <p align="right"><span class="style5">*</span>Country:
           <select name="req_country">
              <option value="Argentina">Argentina
              <option value="Australia">Australia
              <option value="Austria">Austria
              <option value="Belgium">Belgium
              <option value="Brazil">Brazil
              <option value="Canada">Canada
              <option value="Caribbean_Islands">Caribbean Islands
              <option value="Chile">Chile
              <option value="China">China
              <option value="Colombia">Colombia
              <option value="Denmark">Denmark
              <option value="Ecuador">Ecuador
              <option value="Egypt">Egypt
              <option value="Finland">Finland
              <option value="France">France
              <option value="Germany">Germany
              <option value="Greece">Greece
              <option value="Greenland">Greenland
              <option value="Hong_Kong">Hong Kong
              <option value="Iceland">Iceland
              <option value="India">India
              <option value="Indonesia">Indonesia
              <option value="Ireland">Ireland
              <option value="Israel">Israel
              <option value="Italy">Italy
              <option value="Japan">Japan
              <option value="Korea">Republic of Korea
              <option value="Luxembourg">Luxembourg
              <option value="Malaysia">Malaysia
              <option value="Mexico">Mexico
              <option value="Netherlands">Netherlands
              <option value="New_Zealand">New Zealand
              <option value="Norway">Norway
              <option value="Philippines">Philippines
              <option value="Portugal">Portugal
              <option value="Russian">Russian Federation
              <option value="Saudi_Arabia">Saudi Arabia
              <option value="Singapore">Singapore
              <option value="South_Africa">South Africa
              <option value="Spain">Spain
              <option value="Sweden">Sweden
              <option value="Switzerland">Switzerland
              <option value="China">Province Of China Taiwan
              <option value="Thailand">Thailand
              <option value="Turkey">Turkey
              <option value="United Kingdom">United Kingdom
              <option value="US" selected="selected">United States
              <option value="Venezuela">Venezuela
              <option value="Viet_Nam">Viet Nam
              <option value="N/A">Not listed
          </select></p>
            <p align="right">Website:
           <input type=text name="website"></p>
            <p align="right"><span class="style5">*</span>Expertise:
            <input type=text name="expertise"></p>
          <br>        
          </td>
</tr>
   <tr>
          <td colspan="2" align="right" valign="top" scope="col">
            <p><strong>Attach bio:</strong>
  Please type or cut and paste a short professional bio. <br>
  <textarea name="bio" rows="20" style="width:100%"></textarea> <br>
</p>
<br>
<p><strong>Upload photo:</strong>
              <input class="noformstyle" type="file" name="photo" size="30" ><br>
(max. 1.5Mb; allowed file types: *.jpg, *.gif, *png only)</p>
<br>
<div class="lineDiv"></div>
<br>
</td>
       </tr>
      <tr>
          <td height="66" align="right" valign="top" scope="col"><p><strong><span class="style5">*</span>Travel</strong></p>
<p>Arrival Date:
           <input name="arrivaldate" id="arrivaldate" value="" size="11"><a href="javascript:void(0)" onClick="if(self.gfPop)gfPop.fPopCalendar(document.RegistrationForm.arrivaldate);return false;" ><img class="PopcalTrigger" align="absmiddle" src="http://www.agci.org/JavaScript/calendar/calbtn.gif" width="34" height="22" border="0" alt=""></a>
            </p>          
            </td>
            <td height="66" align="right" valign="top" scope="col">
              <div align="right">
                <p> </p>
                <p>Departure Date:
                  <input name="departuredate" id="departuredate" value="" size="11"><a href="javascript:void(0)" onClick="if(self.gfPop)gfPop.fPopCalendar(document.RegistrationForm.departuredate);return false;" ><img class="PopcalTrigger" align="absmiddle" src="http://www.agci.org/JavaScript/calendar/calbtn.gif" width="34" height="22" border="0" alt=""></a>
                </p>
              </div>
            </td>
</tr>
      <tr>
          <td height="34" colspan="2" align="right" valign="top" scope="col">
            <label>
            <input type="checkbox" name="travel" id="checkbox" value="unsure of travel dates at this time" class="noformstyle" />
              I do not know my planned travel dates at this time.
              </label>
          I will notify AGCI as soon as I have made my travel arrangements (see Logistics for information on travel and how to book your travel with AGCI's travel agent).
           </td>
        </tr>
          <td height="184" colspan="2" valign="bottom" scope="col">
              <br>
<div class="lineDiv"></div>
<br>
<p><span class="style5">*</span><strong>I will be bringing the following guests:</strong></p>
            <p># of Adults:    <select name="adultguests" size="1">
              <option value="0">0</option>
              <option value="1">1</option>
              <option value="2">2</option>
              <option value="3">3</option>
              <option value="4">4</option>
            </select>  Names: <input type=text name="adultguestnames">
            </p>
            <p># of Children: <select name="childguests" size="1">
              <option value="0">0</option>
              <option value="1">1</option>
              <option value="2">2</option>
              <option value="3">3</option>
              <option value="4">4</option>
            </select>  Names:
            <input type=text name="childguestnames">
             <br />
             <br />
             <input type="checkbox" name="guests" id="checkbox2" value="unsure about guests at this time" class="noformstyle"/>
                 I am not sure about guests at this time. I will let AGCI know at a later date if I decide to bring a guest or child.
              </td>
        </tr>
      <tr>
        <td height="182" colspan="2" valign="bottom" scope="col">
<br>
<div class="lineDiv"></div>
<br>
                <p><span class="style5">*</span><strong>Lodging</strong></p>
          <input type="radio" name="book a room?" value="yes" class="noformstyle">
             <strong>Please reserve a room for me and my guest(s) at the Molly Gibson Lodge.</strong>  A lodging confirmation will be sent to you once you are
registered. If you plan on extending your stay before or after the workshop dates, please let us know so that we can make appropriate arrangements with the hotel.<br />
<br />
          <input type="radio" name="book a room?" value="no" class="noformstyle">
              <strong> I do not require lodging at the Molly Gibson. </strong>I will notify AGCI of where I intend to stay,
and I understand the reimbursement procedures as described in the logistics information.        
</td>
       </tr>
      <tr>
          <td height="218" colspan="2" valign="bottom" scope="col">
            <p><strong>Comments:</strong><br>
            <textarea name="comments" cols="400" rows="3"></textarea></p>
            </td>
       </tr>
      <tr>
         <td height="57" colspan="2" valign="middle" scope="col">
            <span class="style5">* required field</span>
           </td>
        </tr>
      <tr>
         <td height="20" colspan="2" valign="bottom" scope="col">
        <input class="submit" type="submit" name="KT_Insert1" id="KT_Insert1" value="Register"></td>
       </tr>
      <tr>
        <td height="121" colspan="2" valign="bottom" scope="col">
          </td>
       </tr>
     </table>
</form>
</div>
<!-----------------end registration form----------------->

Actually if you do not need a public registration form, its much more practical to use the "Create Dynamic List" and "Create Dynamic Form" behaviors in your site administration back end. And it really only takes about two minutes to set up.
This will give you the ability to add, delete and edit all your users.
Brad Lawryk
Community Expert: Dreamweaver
Usergroup Manager: Northern British Columbia Adobe Usersgroup

Similar Messages

  • Java install won't accept Ok ?? Desperate for help??

    Java install won't accept <Ok>?? Desperate for help??
    I've decided that I'm going to develop my Rails applications in Linux and keep hitting a BRICK WALL every time I try to install NetBeans or Java. I download all of the packages and come to a text screen that says "Package Configuration" and then "Configuring sun-java5-bin" and then it asks you to read the agreement and there's an <Ok> at the bottom. I can't get through this and everytime it fails my 'package manager' goes bonkers and I have to reload the Ubuntu Gutys Gibbon operating system AGAIN!!!
    I push ENTER and type in "yes" and "Ok" and there is no response.
    I've loaded this operating system FIVE TIMES NOW and the bottleneck is very frustrating as I can't program in a graphics environment without Java.
    I joined this forum just to ask this question and would be grateful for a reply at [email protected]
    Thank you,
    Kathleen

    KathysKode wrote:
    Java install won't accept <Ok>?? Desperate for help??Such a poorly worded question.
    I've decided that I'm going to develop my Rails applications in Linux and keep hitting a BRICK WALL every time I try to install NetBeans or Java. I download all of the packages and come to a text screen that says "Package Configuration" and then "Configuring sun-java5-bin" and then it asks you to read the agreement and there's an <Ok> at the bottom. I can't get through this and everytime it fails my 'package manager' goes bonkers and I have to reload the Ubuntu Gutys Gibbon operating system AGAIN!!!
    I push ENTER and type in "yes" and "Ok" and there is no response.Sorry, I haven't downloaded the JDK to Ubuntu. Maybe I'll try it with my VMWare instance and see how it works out.
    I've loaded this operating system FIVE TIMES NOW and the bottleneck is very frustrating as I can't program in a graphics environment without Java.
    I joined this forum just to ask this question and would be grateful for a reply at [email protected]
    Thank you,
    KathleenAnyone so foolish as to post their e-mail in a public forum like this is open to having their competence questioned. Hope you like spam.
    %

  • If You Are Desperate For Help..

    Hey guys, if you are desperate for help, go to this website...
    http://docs.info.apple.com/article.html?artnum=61711
    When it finishes loading, you should be able to see a box on the right-hand side that says "Chat With A Support Agent"
    Hope this helps with your problems! Good Luck!

    Stewart
    This forum is for questions regarding the LabVIEW Datalogging and Supervisory Control Module. You will have more luck posting this question in the general LabVIEW forum.
    Good luck

  • My 4S keeps showing me sos only only invalid sim? desperate for help?

    my 4S keeps showing me sos only only invalid sim? desperate for help?

    Ok, so I just went to Australia from NZ and the same thing happened to me. I was so annoyed as I couldn't text, ring or anything. I returned to NZ this morning, rang telecom and they said it's a hardware issue and talked me through this:
    Settings, Phone, SIM applications, roaming menu, manual, select your provider, accept.
    Go through each stage and this fixed the problem!!
    Good luck!!

  • Help With Registration Form

    Hi
    I have created a registration form, where on the first page
    the user enters a user name and password, then they go to the next
    page where they enter their name. This then goes to the next page
    where they enter their address, then there contact details.
    But I want all these details to go on to a page where they
    can review their details, then press a submit button which inserts
    the data into a mysql db.
    But I need help with how I do this?
    I have created the following Java script in the body. Or
    should it be in the header? Or on another form? to insert their
    details:-
    <% Insert Data %>
    <jrun:sql datasrc="regift">
    INSERT INTO account VALUES ('<%=
    request.getParameter("User_Name").trim() %>',
    '<%= request.getParameter("Password").trim() %>',
    INSERT INTO name VALUES ('<%=
    request.getParameter("First_Name").trim() %>',
    '<%= request.getParameter("Last_Name").trim() %>'
    INSERT INTO address VALUES ('<%=
    request.getParameter("House_Number").trim() %>',
    '<%= request.getParameter("Street").trim() %>',
    '<%= request.getParameter("Town").trim() %>',
    '<%= request.getParameter("County").trim() %>',
    '<%= request.getParameter("Postcode").trim() %>'
    INSERT INTO contact_details VALUES ('<%=
    request.getParameter("Email_Address").trim() %>',
    '<%= request.getParameter("Telephone_Number").trim()
    %>'
    </jrun:sql>
    Is this correct?
    Thanks for all your help, Lou.

    Your code is correct only for the first page. What you need
    to do after the
    initial record is entered is grab its ID and then on
    subsequent pages you
    would use and UPDATE sql statement
    Paul Whitham
    Certified Dreamweaver MX2004 Professional
    Adobe Community Expert - Dreamweaver
    Valleybiz Internet Design
    www.valleybiz.net
    "LoobieLouLou" <[email protected]> wrote in
    message
    news:emggvv$q67$[email protected]..
    > Hi
    >
    > I have created a registration form, where on the first
    page the user
    > enters a
    > user name and password, then they go to the next page
    where they enter
    > their
    > name. This then goes to the next page where they enter
    their address, then
    > there contact details.
    >
    > But I want all these details to go on to a page where
    they can review
    > their
    > details, then press a submit button which inserts the
    data into a mysql
    > db.
    >
    > But I need help with how I do this?
    >
    > I have created the following Java script in the body. Or
    should it be in
    > the
    > header? Or on another form? to insert their details:-
    >
    > <% Insert Data %>
    > <jrun:sql datasrc="regift">
    >
    > INSERT INTO account VALUES ('<%=
    request.getParameter("User_Name").trim()
    > %>',
    > '<%= request.getParameter("Password").trim() %>',
    >
    > INSERT INTO name VALUES ('<%=
    request.getParameter("First_Name").trim()
    > %>',
    > '<%= request.getParameter("Last_Name").trim() %>'
    >
    > INSERT INTO address VALUES ('<%=
    > request.getParameter("House_Number").trim()
    > %>',
    > '<%= request.getParameter("Street").trim() %>',
    > '<%= request.getParameter("Town").trim() %>',
    > '<%= request.getParameter("County").trim() %>',
    > '<%= request.getParameter("Postcode").trim() %>'
    >
    > INSERT INTO contact_details VALUES ('<%=
    > request.getParameter("Email_Address").trim() %>',
    > '<%= request.getParameter("Telephone_Number").trim()
    %>'
    > </jrun:sql>
    >
    > Is this correct?
    >
    > Thanks for all your help, Lou.
    >
    >

  • Help - pet registration form

    Hi, i have two tables: pet_owner and pet...trying to make a pet registration form....owner might have more than one pet.
    ho do i create a form with the owner's details at the top, then a drop down, how many pet would you like to register? [1][2][3] and depending on the selection made, 1, 2 or 3 sets of input fields appear below?
    similar to : http://www.virginvet.co.uk/register-your-pet.php
    this is making my head hurt.

    Your code is correct only for the first page. What you need
    to do after the
    initial record is entered is grab its ID and then on
    subsequent pages you
    would use and UPDATE sql statement
    Paul Whitham
    Certified Dreamweaver MX2004 Professional
    Adobe Community Expert - Dreamweaver
    Valleybiz Internet Design
    www.valleybiz.net
    "LoobieLouLou" <[email protected]> wrote in
    message
    news:emggvv$q67$[email protected]..
    > Hi
    >
    > I have created a registration form, where on the first
    page the user
    > enters a
    > user name and password, then they go to the next page
    where they enter
    > their
    > name. This then goes to the next page where they enter
    their address, then
    > there contact details.
    >
    > But I want all these details to go on to a page where
    they can review
    > their
    > details, then press a submit button which inserts the
    data into a mysql
    > db.
    >
    > But I need help with how I do this?
    >
    > I have created the following Java script in the body. Or
    should it be in
    > the
    > header? Or on another form? to insert their details:-
    >
    > <% Insert Data %>
    > <jrun:sql datasrc="regift">
    >
    > INSERT INTO account VALUES ('<%=
    request.getParameter("User_Name").trim()
    > %>',
    > '<%= request.getParameter("Password").trim() %>',
    >
    > INSERT INTO name VALUES ('<%=
    request.getParameter("First_Name").trim()
    > %>',
    > '<%= request.getParameter("Last_Name").trim() %>'
    >
    > INSERT INTO address VALUES ('<%=
    > request.getParameter("House_Number").trim()
    > %>',
    > '<%= request.getParameter("Street").trim() %>',
    > '<%= request.getParameter("Town").trim() %>',
    > '<%= request.getParameter("County").trim() %>',
    > '<%= request.getParameter("Postcode").trim() %>'
    >
    > INSERT INTO contact_details VALUES ('<%=
    > request.getParameter("Email_Address").trim() %>',
    > '<%= request.getParameter("Telephone_Number").trim()
    %>'
    > </jrun:sql>
    >
    > Is this correct?
    >
    > Thanks for all your help, Lou.
    >
    >

  • Unable to restore from Time Machine after an erase and reinstall - MacbookPro cannot access my old Time Machine backup volume. Desperate for help please?

    My MacbookPro would not move past the Apple logo and spinning wheel for a number of hours.  After trying the numerous suggestions to solve the issue I eventually opted to erase and reinstall feeling confident my Time Machine backups would come to the rescue.  After a successful erase and reinstall I tried to restore all my data from my TIme Capsule using Command-R during start up and by using the Migration Assistant.  Neither worked and I have received messages to the effect that the backup volumes on my Time Capsule cannot be access because I have entered a wrong password or because the backup volume is damaged.
    When I open my Time Capsule in Finder and click on my sparsebundle I get an eror message saying that the disk image could not be opened and that the resource is temporarily unavailable.
    Desperate for some help and comfort that many years of personal data have not been lost.
    Thank you.
    M

    When I try to Verify option it says Unable to Verify - Resource temporarily unavailable.
    Here is the past of the log screen:
    2013-06-09 15:00:00 -0500: Disk Utility started.
    2013-06-09 15:09:01 -0500: Disk Utility started.
    2013-06-09 15:19:53 -0500: [DUDiskController viewablePartitions] expecting DUDisk, but got nil
    2013-06-09 15:19:53 -0500:
    2013-06-09 15:20:00 -0500: [DUDiskController viewablePartitions] expecting DUDisk, but got nil
    2013-06-09 15:20:00 -0500:
    2013-06-09 15:20:05 -0500: [DUDiskController viewablePartitions] expecting DUDisk, but got nil
    2013-06-09 15:20:05 -0500:
    2013-06-09 15:20:13 -0500: Verifying Image “Macajee’s MacBook Pro”
    2013-06-09 15:20:14 -0500: Unable to verify “Macajee’s MacBook Pro.” (Resource temporarily unavailable)
    2013-06-09 15:20:14 -0500:
    2013-06-09 15:25:21 -0500: Verifying Image “Macajee’s MacBook Pro”
    2013-06-09 15:25:23 -0500: Unable to verify “Macajee’s MacBook Pro.” (Resource temporarily unavailable)
    2013-06-09 15:25:23 -0500:
    2013-06-09 15:25:27 -0500: Attach Image “Macajee’s MacBook Pro”
    2013-06-09 15:25:27 -0500: Initializing…
    2013-06-09 15:25:31 -0500: Attaching…
    2013-06-09 15:25:31 -0500: Finishing…
    2013-06-09 15:25:32 -0500: Unable to attach “Macajee’s MacBook Pro.” (Resource temporarily unavailable)
    2013-06-09 15:25:32 -0500:
    2013-06-09 20:02:06 -0500: Disk Utility started.
    2013-06-09 20:05:22 -0500: Disk Utility started.
    2013-06-09 20:07:11 -0500: Disk Utility started.
    2013-06-09 20:18:34 -0500: [DUDiskController viewablePartitions] expecting DUDisk, but got nil
    2013-06-09 20:18:34 -0500:
    2013-06-09 20:19:34 -0500: [DUDiskController viewablePartitions] expecting DUDisk, but got nil
    2013-06-09 20:19:34 -0500:
    2013-06-09 20:19:36 -0500: [DUDiskController viewablePartitions] expecting DUDisk, but got nil
    2013-06-09 20:19:36 -0500:
    2013-06-09 20:22:29 -0500: [DUDiskController viewablePartitions] expecting DUDisk, but got nil
    2013-06-09 20:22:29 -0500:
    2013-06-09 20:22:33 -0500: [DUDiskController viewablePartitions] expecting DUDisk, but got nil
    2013-06-09 20:22:33 -0500:
    2013-06-09 20:22:45 -0500: Verifying Image “Macajee’s MacBook Pro”
    2013-06-09 20:22:45 -0500: Unable to verify “Macajee’s MacBook Pro.” (Resource temporarily unavailable)
    2013-06-09 20:22:45 -0500:
    2013-06-09 20:34:53 -0500: [DUDiskController viewablePartitions] expecting DUDisk, but got nil
    2013-06-09 20:34:53 -0500:
    2013-06-09 20:34:56 -0500: [DUDiskController viewablePartitions] expecting DUDisk, but got nil
    2013-06-09 20:34:56 -0500:
    2013-06-09 20:38:17 -0500: Verifying Image “Macajee’s MacBook Pro”
    2013-06-09 20:38:17 -0500: Unable to verify “Macajee’s MacBook Pro.” (Resource temporarily unavailable)
    2013-06-09 20:38:17 -0500:
    2013-06-09 20:47:35 -0500: Disk Utility started.
    2013-06-09 20:53:06 -0500: Disk Utility started.
    2013-06-09 20:55:30 -0500: Disk Utility started.
    2013-06-09 20:56:40 -0500: Disk Utility started.
    2013-06-09 21:06:32 -0500: Verifying Image “macajee’s MacBook Pro”
    2013-06-09 21:06:32 -0500: Unable to verify “macajee’s MacBook Pro.” (Resource temporarily unavailable)
    2013-06-09 21:06:32 -0500:
    2013-06-09 21:07:08 -0500: Verifying Image “macajee’s MacBook Pro”
    2013-06-09 21:07:08 -0500: Unable to verify “macajee’s MacBook Pro.” (Resource temporarily unavailable)
    2013-06-09 21:07:08 -0500:

  • Tutorial for the Accommodation Registration Form

    I can not locate any tutorual (under Help) on how to set up the 'Accommodation Registration Form'. The 'Services Demostration Tutorial' under 'Help' does not help me with a number of things relating to the 'Acoommodation Registration Form'. The 'Services Form' and 'Accommodation Registration Form' are completely different.
    Thanks

    With the 'Accommodation Registration Form' unlike to Form that is use in the Tutorual version my copy of the 'Accommodation Registration Form' does have have these tags along the top of the Form
    options
    test
    distrubute
    view responses
    summary report
    upgrade
    the only tags that appaer on my 'Accommodation Registration Form' are
    design
    collect responses online
    So when I have finished setting out my 'Accommodation Registration Form' there is no tab available which would aloow me to actually view and test my form to see how and if the date and over drop downs that I have added actually work.

  • Desperate for help ... Getting error "can't initialize video deck"

    Last night, I had been importing footage just fine into Final Cut Pro HD 4.5 from my camcorder. Then today, no matter how many times I try, how many times I reboot, I get the error that it cannot initialize the video deck when I try to Log and Capture the footage. I've read a number of the solutions to other people having this problem, I ran Disk Utility to Repair Permissions, try unplugging the power and FireWire cable completely, to no avail. Before this, it had been kind of "buggy" in the last few days trying to capture footage, but usually would connect just fine after I would turn off the camera and turn it back on. But today nothing ... I haven't installed or done anything to this system in months, and like I said, I've imported 24 tapes up to now with only a couple of slight times where it couldn't load initially, but usually did on the second try. Could something be conflicting on my system? I have an external hard drive connected to the system which I use for my capture scratch disk, and if I boot up the system with my camcorder turned on, my external hard drive is not recognized. But once I turn the camcorder off, my external hard drive pops right up. Same kind of issue when opening Final Cut Pro ... if I try to open FCP with my camcorder turned on, it hangs on the little rainbow circle. But the second I turn off the camcorder, Final Cut loads just fine. I am really desperate for a solution on this one, I'm way behind on a project, and only have 7 more tapes to go. By the way, I'm on a Power Mac G5.

    jason,
    Before I go into the firewire port reset procedure there are two things you should understand.
    1. Paragraphs are not optional. Your English teacher should give you a dope slap for the way you wrote your original post.
    2. When you reply to a Post, click REPLY ON THAT POST not on your original post. Otherwise, when you view this thread in 'Threaded View" (to be found under My Settings), it looks like you are talking to yourself.
    Now, to reset the firewire bus. I like to do this in a recreational manner - hence the 'Harpoon Solution" (aka the Guinness solution in the mid and far west)
    1. turn everything off.
    2. unplug firewire cables
    3. unplug power cords
    4. get up from well worn chair
    5. walk to refrigerator
    6. open refrigerator
    7. remove bottle of Harpoon (Guinness, local micro brew, etc)
    8. pop cap
    9. pour into glass ( you AREN'T going to drink it from a bottle, are you?)
    10. sip responsibly. enjoy the moment. think pure thoughts
    11. return to kitchen. If less than 15 minutes has elapsed, have another. Otherwise, retrurn to edit room.
    12. Plug everything back together
    12. fire up external monitors, VTR, external hard drives & computer in that order.
    Does it work now? If yes, congratulate your self. If not, oh well, but at least you are in a much better frame of mind to begin some serious troubleshooting.
    cheerios,
    x

  • Need help with PayPal for a conference Registration Form

    I created a conference registration page and enabled PayPal.  I tested it with no issues.
    My client distributed the URL, and two people tried to register today, one of whom was my client.  She called me to say she never got a confirmation email and that when she entered her AMEX information, and hit the pay button, the message she got back was "Done but with Errors."
    Both people show up on my view responses report, but there are no values in the last three columns, which indicates an issue with PayPal.  When I check PayPal, there is no recent activity in my account.
    I need help resolving this ASAP.  Tech support couldn't help, he promised to escalate my case (#183366842) and have someone call me back within an hour.
    Is this forum monitored by FormsCentral staff who might be able to help?
    Thanks!
    Paula

    We're following up with PayPal and the [email protected] offline.

  • Printing issues- please, I am desperate for help!

    I purchased a MacBook in April. I already owned the following Canon printers- a Canon pixma ip2600, a Canon mx330, and a Canon ip100. When I try to print photographs, from iPhoto, Preview, or Photoshop CS4, they print out as very pale versions - like ghost images. Word documents with embedded images print fine. I reinstalled the software- I downloaded the most up-to-date version of the software for the current OS on my Mac (Snow Leopard...) - twice. I searched the archives for fixes, and repeated what I already had done. I gave up. I had a book to finish and simply started burning the images to disk to print from the family Toshiba PC laptop. This is not working! I'm desperate to be able to print photos from my own computer!! I don't live near an Apple Store (ours closed a year or two ago.) Can anyone help??

    I don't have any experience with those printers, but for a while my MacBook was having a similar problem with printing to a Canon ir5070 office copier/printer/scanner. The printed pages would be very light, though not as light as you describe. My solution was to download and install the most up-to-date driver from Canon USA's website (http://www.usa.canon.com/cusa/home). If you haven't done that, it's worth a try. Good luck!

  • InputVerifier + twist - DESPERATE for help!

    Hello,
    after 2 days trying to solve a seemingly simple problem I�ve given up and hope you can help me :-(
    Problem: I have a JTextField where a customer number can be entered. The number has to be checked for uniqueness against a table in a db.
    - OK: user can proceed to next field
    - not OK: dialog is shown with a message, field-colour is changed and given focus again.
    The field is part of a form which can be saved to db by pushing F10.
    As the user can press F10 at any time I need to verify the customer number also when the field still has focus.
    To complicate issues the checking against the db should run in a separate thread.
    Any help would be greatly appreciated!
    Regards,
    Mark

    I just need to figure out how to reset the Admin account....and NOT lose any of my data.
    Without knowing the problem password or having another user account with admin privileges, booting from the install disk is going to be the only way to do that.
    so you think if I yanked the DVD drive and got that sorted out I would be able to do a account restart
    If you can get to the point where you can boot from the Mac OS X install disk, yes. See:
    http://docs.info.apple.com/article.html?path=Mac/10.5/en/11627.html
    ..don't you have to do some kind of key commbination immediately upon restart
    If you want to boot directly to the DVD, you need to hold down the C key, yes. So I do now see what your concern is.
    does the bluetooth keyboard activate that soon?
    I don't think so. You'll probably need to borrow a USB keyboard from someone for this purpose.
    Regards.

  • Random kernel panics going on for a long time, desperate for help!

    Hi, I didn'nt quite know what to name this thread, but I will try to describe the problems I have with my MacBook Pro here.
    I have a mid-2009 MacBook Pro and the problems started more than a year ago. They are present under both Snow Leopard and Lion.
    Every now and then I will get a kernel panic when booting up my mac("Hold power button...etc.." grey screen). To solve this i usually have to reset the PRAM a couple of times before it eventually will boot and function as normal. This error happens at least twice a week.
    When finally in OS X things often works perfectly as it should, but sometimes I will get a kernel panic for no obvious reason. For instance whille doing something in Photoshop, or browsing the web in Firefox. I have also quite often experienced kernel panics when shutting down my computer!!
    Over the last month or two the errors has sort of escalated. I changed my harddrive a while back, and performed a clean install of Snow Leopard on that, which didn't help. I then bougth 8GB of new RAM, and did a clean Lion install, which didn't help.
    The most annying error I experience know is that I will get the spinning beach ball of death for several minutes at a time when doing real basic OS stuff. For instance I can move the cursor, click a button, get the beach ball for two minutes, with no system response other than the cursor still being able to move. After a while it catches up and I get the regular cursor back, but as soon as i click on anything it will freeze or another few minutes. Fortunatley this problems has not occured that often, but every now and again this error occurs and leave my mac unusable!
    I have tried everything I can think off, and googled a lot lately. I have tried turning off SMS (as I read that my new drive could conflict with that), I have performed clean installs of the OS many times. I have bought new RAM, and tested it. I have reset the SMC. The PRAM I reset on an almost daily basis.
    If anyone have any suggestions on how to solve this, if it is solvable, I will appreciate it!
    Here is one error-report I got after my mac turned it self off with no warning 30 minutes ago:
    Interval Since Last Panic Report:  77388 sec
    Panics Since Last Report:          3
    Anonymous UUID:                    15481610-C2CF-459F-85CB-A9EB4C8F63A9
    Tue Sep 20 14:20:32 2011
    panic(cpu 1 caller 0xffffff7f809212bf): NVRM[0/2:0:0]: Read Error 0x00000000: CFG 0x064710de 0x00100000 0x00000000, BAR0 0xe4000000 0xffffff80e9a08000 0x096380c1, D0, P2/4
    Backtrace (CPU 1), Frame : Return Address
    0xffffff80e853bd10 : 0xffffff8000220702
    0xffffff80e853bd90 : 0xffffff7f809212bf
    0xffffff80e853be20 : 0xffffff7f80a113fc
    0xffffff80e853be70 : 0xffffff7f8092d02a
    0xffffff80e853be90 : 0xffffff7f8090e18e
    0xffffff80e853bf40 : 0xffffff7f808c823d
    0xffffff80e853bf70 : 0xffffff800023dafc
    0xffffff80e853bfb0 : 0xffffff8000820057
          Kernel Extensions in backtrace:
             com.apple.NVDAResman(7.0.2)[7E65ECA2-D3A1-35F8-B845-C975FB531E7E]@0xffffff7f808 c1000->0xffffff7f80b97fff
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)[95ABB490-3AB5-3D5E-9C21-67089A9AE6A1]@0xffff ff7f8083e000
                dependency: com.apple.iokit.IONDRVSupport(2.3)[E99C8907-946D-3F1A-A261-4C0F2D5D0451]@0xffff ff7f808af000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3)[897EB322-FD55-36D7-A68E-9E9C34A74A84]@0xf fffff7f80877000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    11A511
    Kernel version:
    Darwin Kernel Version 11.0.0: Sat Jun 18 12:56:35 PDT 2011; root:xnu-1699.22.73~1/RELEASE_X86_64
    Kernel UUID: 24CC17EB-30B0-3F6C-907F-1A9B2057AF78
    System model name: MacBookPro5,3 (Mac-F22587C8)
    System uptime in nanoseconds: 927704357221
    last loaded kext at 56773708487: com.apple.driver.AppleHWSensor    1.9.4d0 (addr 0xffffff7f81d78000, size 28672)
    last unloaded kext at 347020191263: com.apple.driver.AppleUSBTCKeyEventDriver    220.8 (addr 0xffffff7f81baa000, size 8192)
    loaded kexts:
    com.apple.driver.AppleHWSensor    1.9.4d0
    com.apple.filesystems.autofs    3.0
    com.apple.filesystems.ntfs    3.8
    com.apple.driver.AGPM    100.12.40
    com.apple.driver.AppleMikeyHIDDriver    122
    com.apple.driver.AppleMikeyDriver    2.1.1f11
    com.apple.driver.AppleHDA    2.1.1f11
    com.apple.driver.AppleUpstreamUserClient    3.5.9
    com.apple.driver.AppleMCCSControl    1.0.24
    com.apple.driver.SMCMotionSensor    3.0.1d2
    com.apple.driver.ACPI_SMC_PlatformPlugin    4.7.0b2
    com.apple.driver.AudioAUUC    1.59
    com.apple.GeForce    7.0.2
    com.apple.iokit.IOUserEthernet    1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X    7.0.0
    com.apple.driver.AudioIPCDriver    1.2.0
    com.apple.driver.AppleSMCLMU    2.0.1d2
    com.apple.driver.AppleMuxControl    3.0.8
    com.apple.driver.AppleLPC    1.5.1
    com.apple.driver.AppleUSBTCButtons    220.8
    com.apple.driver.AppleUSBTCKeyboard    220.8
    com.apple.driver.AppleIRController    309
    com.apple.driver.AppleUSBCardReader    3.0.0
    com.apple.iokit.SCSITaskUserClient    3.0.0
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless    1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.BootCache    32
    com.apple.iokit.IOAHCIBlockStorage    2.0.0
    com.apple.driver.AppleFWOHCI    4.8.6
    com.apple.driver.AirPort.Brcm4331    500.20.6
    com.apple.driver.AppleUSBHub    4.4.0
    com.apple.driver.AppleAHCIPort    2.1.8
    com.apple.nvenet    2.0.17
    com.apple.driver.AppleUSBEHCI    4.4.0
    com.apple.driver.AppleUSBOHCI    4.4.0
    com.apple.driver.AppleEFINVRAM    1.5.0
    com.apple.driver.AppleRTC    1.4
    com.apple.driver.AppleHPET    1.6
    com.apple.driver.AppleSmartBatteryManager    161.0.0
    com.apple.driver.AppleACPIButtons    1.4
    com.apple.driver.AppleSMBIOS    1.7
    com.apple.driver.AppleACPIEC    1.4
    com.apple.driver.AppleAPIC    1.5
    com.apple.driver.AppleIntelCPUPowerManagementClient    166.0.0
    com.apple.nke.applicationfirewall    3.0.30
    com.apple.security.quarantine    1
    com.apple.driver.AppleIntelCPUPowerManagement    166.0.0
    com.apple.kext.triggers    1.0
    com.apple.driver.DspFuncLib    2.1.1f11
    com.apple.driver.AppleSMBusController    1.0.10d0
    com.apple.driver.AppleSMBusPCI    1.0.10d0
    com.apple.driver.IOPlatformPluginFamily    4.7.0b2
    com.apple.iokit.IOFireWireIP    2.2.3
    com.apple.iokit.IOSurface    80.0
    com.apple.iokit.IOBluetoothSerialManager    2.5f17
    com.apple.iokit.IOSerialFamily    10.0.5
    com.apple.iokit.IOAudioFamily    1.8.3fc11
    com.apple.kext.OSvKernDSPLib    1.3
    com.apple.driver.AppleSMC    3.1.1d2
    com.apple.driver.AppleHDAController    2.1.1f11
    com.apple.iokit.IOHDAFamily    2.1.1f11
    com.apple.driver.AppleGraphicsControl    3.0.8
    com.apple.driver.AppleBacklightExpert    1.0.3
    com.apple.nvidia.nv50hal    7.0.2
    com.apple.NVDAResman    7.0.2
    com.apple.iokit.IONDRVSupport    2.3
    com.apple.iokit.IOGraphicsFamily    2.3
    com.apple.driver.BroadcomUSBBluetoothHCIController    2.5f17
    com.apple.driver.AppleUSBBluetoothHCIController    2.5f17
    com.apple.iokit.IOBluetoothFamily    2.5f17
    com.apple.driver.AppleUSBMultitouch    220.23
    com.apple.iokit.IOUSBHIDDriver    4.4.0
    com.apple.iokit.IOSCSIBlockCommandsDevice    3.0.0
    com.apple.iokit.IOUSBMassStorageClass    3.0.0
    com.apple.driver.AppleUSBMergeNub    4.4.0
    com.apple.driver.AppleUSBComposite    3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    3.0.0
    com.apple.iokit.IOBDStorageFamily    1.6
    com.apple.iokit.IODVDStorageFamily    1.6
    com.apple.iokit.IOCDStorageFamily    1.7
    com.apple.driver.XsanFilter    403
    com.apple.iokit.IOAHCISerialATAPI    2.0.0
    com.apple.iokit.IOSCSIArchitectureModelFamily    3.0.0
    com.apple.iokit.IOFireWireFamily    4.4.3
    com.apple.iokit.IO80211Family    400.40
    com.apple.iokit.IOUSBUserClient    4.4.0
    com.apple.iokit.IOAHCIFamily    2.0.6
    com.apple.iokit.IONetworkingFamily    2.0
    com.apple.iokit.IOUSBFamily    4.4.0
    com.apple.driver.NVSMU    2.2.9
    com.apple.driver.AppleEFIRuntime    1.5.0
    com.apple.iokit.IOHIDFamily    1.7.0
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.security.sandbox    165
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.security.TMSafetyNet    7
    com.apple.driver.DiskImages    326
    com.apple.iokit.IOStorageFamily    1.7
    com.apple.driver.AppleKeyStore    28.18
    com.apple.driver.AppleACPIPlatform    1.4
    com.apple.iokit.IOPCIFamily    2.6.5
    com.apple.iokit.IOACPIFamily    1.4

    Hi, I didn'nt quite know what to name this thread, but I will try to describe the problems I have with my MacBook Pro here.
    I have a mid-2009 MacBook Pro and the problems started more than a year ago. They are present under both Snow Leopard and Lion.
    Every now and then I will get a kernel panic when booting up my mac("Hold power button...etc.." grey screen). To solve this i usually have to reset the PRAM a couple of times before it eventually will boot and function as normal. This error happens at least twice a week.
    When finally in OS X things often works perfectly as it should, but sometimes I will get a kernel panic for no obvious reason. For instance whille doing something in Photoshop, or browsing the web in Firefox. I have also quite often experienced kernel panics when shutting down my computer!!
    Over the last month or two the errors has sort of escalated. I changed my harddrive a while back, and performed a clean install of Snow Leopard on that, which didn't help. I then bougth 8GB of new RAM, and did a clean Lion install, which didn't help.
    The most annying error I experience know is that I will get the spinning beach ball of death for several minutes at a time when doing real basic OS stuff. For instance I can move the cursor, click a button, get the beach ball for two minutes, with no system response other than the cursor still being able to move. After a while it catches up and I get the regular cursor back, but as soon as i click on anything it will freeze or another few minutes. Fortunatley this problems has not occured that often, but every now and again this error occurs and leave my mac unusable!
    I have tried everything I can think off, and googled a lot lately. I have tried turning off SMS (as I read that my new drive could conflict with that), I have performed clean installs of the OS many times. I have bought new RAM, and tested it. I have reset the SMC. The PRAM I reset on an almost daily basis.
    If anyone have any suggestions on how to solve this, if it is solvable, I will appreciate it!
    Here is one error-report I got after my mac turned it self off with no warning 30 minutes ago:
    Interval Since Last Panic Report:  77388 sec
    Panics Since Last Report:          3
    Anonymous UUID:                    15481610-C2CF-459F-85CB-A9EB4C8F63A9
    Tue Sep 20 14:20:32 2011
    panic(cpu 1 caller 0xffffff7f809212bf): NVRM[0/2:0:0]: Read Error 0x00000000: CFG 0x064710de 0x00100000 0x00000000, BAR0 0xe4000000 0xffffff80e9a08000 0x096380c1, D0, P2/4
    Backtrace (CPU 1), Frame : Return Address
    0xffffff80e853bd10 : 0xffffff8000220702
    0xffffff80e853bd90 : 0xffffff7f809212bf
    0xffffff80e853be20 : 0xffffff7f80a113fc
    0xffffff80e853be70 : 0xffffff7f8092d02a
    0xffffff80e853be90 : 0xffffff7f8090e18e
    0xffffff80e853bf40 : 0xffffff7f808c823d
    0xffffff80e853bf70 : 0xffffff800023dafc
    0xffffff80e853bfb0 : 0xffffff8000820057
          Kernel Extensions in backtrace:
             com.apple.NVDAResman(7.0.2)[7E65ECA2-D3A1-35F8-B845-C975FB531E7E]@0xffffff7f808 c1000->0xffffff7f80b97fff
                dependency: com.apple.iokit.IOPCIFamily(2.6.5)[95ABB490-3AB5-3D5E-9C21-67089A9AE6A1]@0xffff ff7f8083e000
                dependency: com.apple.iokit.IONDRVSupport(2.3)[E99C8907-946D-3F1A-A261-4C0F2D5D0451]@0xffff ff7f808af000
                dependency: com.apple.iokit.IOGraphicsFamily(2.3)[897EB322-FD55-36D7-A68E-9E9C34A74A84]@0xf fffff7f80877000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    11A511
    Kernel version:
    Darwin Kernel Version 11.0.0: Sat Jun 18 12:56:35 PDT 2011; root:xnu-1699.22.73~1/RELEASE_X86_64
    Kernel UUID: 24CC17EB-30B0-3F6C-907F-1A9B2057AF78
    System model name: MacBookPro5,3 (Mac-F22587C8)
    System uptime in nanoseconds: 927704357221
    last loaded kext at 56773708487: com.apple.driver.AppleHWSensor    1.9.4d0 (addr 0xffffff7f81d78000, size 28672)
    last unloaded kext at 347020191263: com.apple.driver.AppleUSBTCKeyEventDriver    220.8 (addr 0xffffff7f81baa000, size 8192)
    loaded kexts:
    com.apple.driver.AppleHWSensor    1.9.4d0
    com.apple.filesystems.autofs    3.0
    com.apple.filesystems.ntfs    3.8
    com.apple.driver.AGPM    100.12.40
    com.apple.driver.AppleMikeyHIDDriver    122
    com.apple.driver.AppleMikeyDriver    2.1.1f11
    com.apple.driver.AppleHDA    2.1.1f11
    com.apple.driver.AppleUpstreamUserClient    3.5.9
    com.apple.driver.AppleMCCSControl    1.0.24
    com.apple.driver.SMCMotionSensor    3.0.1d2
    com.apple.driver.ACPI_SMC_PlatformPlugin    4.7.0b2
    com.apple.driver.AudioAUUC    1.59
    com.apple.GeForce    7.0.2
    com.apple.iokit.IOUserEthernet    1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X    7.0.0
    com.apple.driver.AudioIPCDriver    1.2.0
    com.apple.driver.AppleSMCLMU    2.0.1d2
    com.apple.driver.AppleMuxControl    3.0.8
    com.apple.driver.AppleLPC    1.5.1
    com.apple.driver.AppleUSBTCButtons    220.8
    com.apple.driver.AppleUSBTCKeyboard    220.8
    com.apple.driver.AppleIRController    309
    com.apple.driver.AppleUSBCardReader    3.0.0
    com.apple.iokit.SCSITaskUserClient    3.0.0
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless    1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib    1.0.0d1
    com.apple.BootCache    32
    com.apple.iokit.IOAHCIBlockStorage    2.0.0
    com.apple.driver.AppleFWOHCI    4.8.6
    com.apple.driver.AirPort.Brcm4331    500.20.6
    com.apple.driver.AppleUSBHub    4.4.0
    com.apple.driver.AppleAHCIPort    2.1.8
    com.apple.nvenet    2.0.17
    com.apple.driver.AppleUSBEHCI    4.4.0
    com.apple.driver.AppleUSBOHCI    4.4.0
    com.apple.driver.AppleEFINVRAM    1.5.0
    com.apple.driver.AppleRTC    1.4
    com.apple.driver.AppleHPET    1.6
    com.apple.driver.AppleSmartBatteryManager    161.0.0
    com.apple.driver.AppleACPIButtons    1.4
    com.apple.driver.AppleSMBIOS    1.7
    com.apple.driver.AppleACPIEC    1.4
    com.apple.driver.AppleAPIC    1.5
    com.apple.driver.AppleIntelCPUPowerManagementClient    166.0.0
    com.apple.nke.applicationfirewall    3.0.30
    com.apple.security.quarantine    1
    com.apple.driver.AppleIntelCPUPowerManagement    166.0.0
    com.apple.kext.triggers    1.0
    com.apple.driver.DspFuncLib    2.1.1f11
    com.apple.driver.AppleSMBusController    1.0.10d0
    com.apple.driver.AppleSMBusPCI    1.0.10d0
    com.apple.driver.IOPlatformPluginFamily    4.7.0b2
    com.apple.iokit.IOFireWireIP    2.2.3
    com.apple.iokit.IOSurface    80.0
    com.apple.iokit.IOBluetoothSerialManager    2.5f17
    com.apple.iokit.IOSerialFamily    10.0.5
    com.apple.iokit.IOAudioFamily    1.8.3fc11
    com.apple.kext.OSvKernDSPLib    1.3
    com.apple.driver.AppleSMC    3.1.1d2
    com.apple.driver.AppleHDAController    2.1.1f11
    com.apple.iokit.IOHDAFamily    2.1.1f11
    com.apple.driver.AppleGraphicsControl    3.0.8
    com.apple.driver.AppleBacklightExpert    1.0.3
    com.apple.nvidia.nv50hal    7.0.2
    com.apple.NVDAResman    7.0.2
    com.apple.iokit.IONDRVSupport    2.3
    com.apple.iokit.IOGraphicsFamily    2.3
    com.apple.driver.BroadcomUSBBluetoothHCIController    2.5f17
    com.apple.driver.AppleUSBBluetoothHCIController    2.5f17
    com.apple.iokit.IOBluetoothFamily    2.5f17
    com.apple.driver.AppleUSBMultitouch    220.23
    com.apple.iokit.IOUSBHIDDriver    4.4.0
    com.apple.iokit.IOSCSIBlockCommandsDevice    3.0.0
    com.apple.iokit.IOUSBMassStorageClass    3.0.0
    com.apple.driver.AppleUSBMergeNub    4.4.0
    com.apple.driver.AppleUSBComposite    3.9.0
    com.apple.iokit.IOSCSIMultimediaCommandsDevice    3.0.0
    com.apple.iokit.IOBDStorageFamily    1.6
    com.apple.iokit.IODVDStorageFamily    1.6
    com.apple.iokit.IOCDStorageFamily    1.7
    com.apple.driver.XsanFilter    403
    com.apple.iokit.IOAHCISerialATAPI    2.0.0
    com.apple.iokit.IOSCSIArchitectureModelFamily    3.0.0
    com.apple.iokit.IOFireWireFamily    4.4.3
    com.apple.iokit.IO80211Family    400.40
    com.apple.iokit.IOUSBUserClient    4.4.0
    com.apple.iokit.IOAHCIFamily    2.0.6
    com.apple.iokit.IONetworkingFamily    2.0
    com.apple.iokit.IOUSBFamily    4.4.0
    com.apple.driver.NVSMU    2.2.9
    com.apple.driver.AppleEFIRuntime    1.5.0
    com.apple.iokit.IOHIDFamily    1.7.0
    com.apple.iokit.IOSMBusFamily    1.1
    com.apple.security.sandbox    165
    com.apple.kext.AppleMatch    1.0.0d1
    com.apple.security.TMSafetyNet    7
    com.apple.driver.DiskImages    326
    com.apple.iokit.IOStorageFamily    1.7
    com.apple.driver.AppleKeyStore    28.18
    com.apple.driver.AppleACPIPlatform    1.4
    com.apple.iokit.IOPCIFamily    2.6.5
    com.apple.iokit.IOACPIFamily    1.4

  • I am desperate for help!

    I recently purchased an iMac (October 2013) and my computer knowledge is very limited. The computer has two user areas, one for my wife and one for me. Our iTunes account and photos are in my user area. My wife wants to access our photos and music from her user area. We have now had three separate one to one meetings at our local apple store (Liverpool England ) to sort out our requirements. At each meeting we have been told three completely different ways of achieving this. None have worked or are reasonable. The last recommendation was to copy our iTunes and photos to an external hard drive( which the apple employee did for my wife) and when she wishes to to look at our photos or listen to music plug the hard drive into the computer and upload her requirements.
    Unfortunately I was not at this meeting. This last suggestion seems ridiculous to me!
    Could anyone please help us and give us directions suitable for novices to follow. Many thanks in anticipation. We are rapidly losing faith in apple employees.

    This is Apple's solution for sharing photos on iPhoto using an external hard drive.
    In reality, it maybe a lot easier just purchasing an external hard drive and move both your iTunes library and iPhoto libraries to the external drive for sharing.
    http://support.apple.com/kb/HT1198
    http://support.apple.com/kb/ht1449

  • DESPERATE FOR HELP since downloading a separate outlook (from fast hosts) as addition to office mac 11 I can no longer access any Microsoft aps or documents including outlook - error messages 'can not change to identity for outlook'

    I had office 2011 installed on my computer without outlook - been working fine.
    I was given a trial of outlook decided against it at time due to cost - however my server provider fasthost have been offering outlook for free with a busines mail package. Trying to install it wouldn't due to the trail versions - so they gave me a step by step guide to remove outlook files.
    Once i completed this the new outlook worked fine for 24 hours - however then we noticed all of our office programmes had been removed aka can not access any data and we are a management consultancy. Then fasthost recommended we reinstall out orginal office CD which I did and then all of sudden when download was completed everything now is inaccessable.
    When I open outlook the message relays ' can not change to that idenity' I have tried to set up a new idenity and change permissions and even rebuilding it as per on line guides but when rebuilding it fails at the first step
    Rest of office IE WORD, EXCEL I just get microsforft has encountered a problem and needs to close unexpectidly everytime I try and click into it.
    I am now despirate as this is the second day we have had no access to anything and 6 day we have had no access to our documents \
    FASTSHOST do everything via email and no incoming phone line (which they will give anyway) so I really need help
    Any options advice greatly recieved
    I am also using the most recent software and have been doing regular software updates OS X Lion.

    I, too am wondering if it's the download site. I am not aware of any way to download Outlook Mac 2011 alone from any site including Microsoft's.
    It is common for unscrupulous sites to offer desirable but pirated software for a modest price, but serve it up with a dose malware. They get you money, possible a credit card number, your e-mail, your IP address, and all you get is pain.
    There was an "Outlook Express" for Mac that was freely distrubuted but I'll pretty sure that it never ran natively under OSX. The first OSX native version fo Office:Mac was Office X, and it introduced Entourage as the Mac mail client.
    IF Fast Hosts is your ISP, I'd certainly talk to them to figure out what you downloaded.

Maybe you are looking for

  • Payment term Block

    Hi, can any one let me know in detail, the use of the fields <b>Block Key</b> & <b>Payment Method</b> in payment term configuration ? thank you. Hi experts, any answer ? Message was edited by:         deb hari Message was edited by:         deb hari

  • Can't Use Built-in Ethernet-HELP!!!

    I am trying to connect a slot loading 350 mhz imac to the internet through the built-in ethernet for a friend that needs it, but the network status pane (OSX.3 Panther) keeps saying the ethernet cable is not plugged in. I've tried several different C

  • How to handle xml CDATA string element when OSB calling a webservice

    Hi Right, I'm new to OSB so bear with me. The following is a response from am operation in a webservice. As you can see there is a CDATA string in "<m:return>" element. I want to transform the CDATA string to XML. I have searched the forum and found

  • Connecting my Ipod to my new Macbookpro

    Hello, my macbook was stolen! I have lots of info on my ipod video. Now, I bought a new Mac book Pro. How do I transfer all the info from my ipod without losing it? Thanks Orit

  • I would like upgrade a 16-bit dll that was developed for 16-bit windows to a 32-bit dll

    I have an 16-bit dll library that was used for talking to a DAQ through Labview version 4 for windows 3.1. I would like to upgrade it so that I can make these calls through Labview version 4.0.1(32-bit). Can anybody do it for me Attachments: Megadac.