Don't understand error message.

Update: I'm looking for any ideas on this. I know it's hard without the full script. I'm more than happy to send it to you, but it is over 450 lines. All of the database functions work fine, as does an earlier version of this script from which there are only small changes to this version. I have searched through the the changes for several days.
I'm getting the following error message on a script that I briefly changed from one that worked fine. All the database manipulations work fine. This exists only on my computer right now. The messages are:
Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at C:\xampp\htdocs\lorianorg01\ssregister\ss07-finalregis.php:4) in C:\xampp\htdocs\lorianorg01\ssregister\ss07-finalregis.php on line 76
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at C:\xampp\htdocs\lorianorg01\ssregister\ss07-finalregis.php:4) in C:\xampp\htdocs\lorianorg01\ssregister\ss07-finalregis.php on line 76
Here is the code, beginning at line 75:
//Establish session variables
session_start();
$_SESSION['ss_id'] = $regis_ss_id;
$_SESSION['ss_name'] = $regis_ss_name;
$_SESSION['ss_nomonths'] = $regis_ss_nomonths;
$_SESSION['ss_cost'] = $regis_ss_cost;
$_SESSION['ss_homelink'] = $regis_ss_link;
$_SESSION['email_address'] = $regis_email_address;
$_SESSION['first_name'] = $regis_first_name;
$_SESSION['last_name'] = $regis_last_name;

Thanks for the reply!
What follows is first 135 lines of code.  As I mentioned, this code in another script, works fine. I copied that code and pasted it into a new folder. I have made sure the links are still good and the database manipulations are all good using a new table. I believe that the problem is in the combination of copying the code and the changes I made. I have done a compare of the original and the changed scripts and studied it for hours to see if I can find an error. I've also put the code in Aptana to see if it picks anything up. Nothing.
<?php  require_once('../Connections/classlist.php'); ?>
<?php require_once('../Connections/ssrecords.php'); ?>
<?php
// [07] This script finalizes the registration and produces letters to Lorian and the registrant.
//The above connections provide links to the LorianSchool database for classlist and ssrecords.
//This function, generated by Dreamweaver, determines the type of information being retrieved from the database.
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;
?>
<?php
//Pick up the "record ID" (SS ID)
$colname_DetailRS1 = "-1";
if (isset($_GET['recordID'])) {
  $colname_DetailRS1 = $_GET['recordID'];
//Get SS info from ssrecords table
mysql_select_db($database_classlist, $classlist);
$query_DetailRS1 = sprintf("SELECT * FROM ssrecords WHERE ssrecords.ss_id = %s", GetSQLValueString($colname_DetailRS1, "text"));
$DetailRS1 = mysql_query($query_DetailRS1, $classlist) or die(mysql_error());
$row_DetailRS1 = mysql_fetch_assoc($DetailRS1);
$totalRows_DetailRS1 = mysql_num_rows($DetailRS1);
$regis_ss_id = $row_DetailRS1['ss_id'];
$regis_ss_name = $row_DetailRS1['ss_name'];
$regis_ss_nomonths = $row_DetailRS1['ss_nomonths'];
$regis_ss_cost = $row_DetailRS1['ss_cost'];
$regis_ss_link = $row_DetailRS1['ss_homelink'];
// Pick up the email address
$colname_classentry = "-1";
if (isset($_GET['email_address'])) {
  $colname_classentry = $_GET['email_address'];
//Get the registrant information from the nameregistration table
mysql_select_db($database_classlist, $classlist);
$query_classentry = sprintf("SELECT * FROM nameregistration WHERE nameregistration.email_address = %s", GetSQLValueString($colname_classentry, "text"));
$classentry = mysql_query($query_classentry, $classlist) or die(mysql_error());
$row_classentry = mysql_fetch_assoc($classentry);
$totalRows_classentry = mysql_num_rows($classentry);
$regis_email_address = $row_classentry['email_address'];
$regis_first_name = $row_classentry['first_name'];
$regis_last_name = $row_classentry['last_name'];
//Establish session variables
session_start();
$_SESSION['ss_id'] = $regis_ss_id;
$_SESSION['ss_name'] = $regis_ss_name;
$_SESSION['ss_nomonths'] = $regis_ss_nomonths;
$_SESSION['ss_cost'] = $regis_ss_cost;
$_SESSION['ss_homelink'] = $regis_ss_link;
$_SESSION['email_address'] = $regis_email_address;
$_SESSION['first_name'] = $regis_first_name;
$_SESSION['last_name'] = $regis_last_name;
//Prepare to write the class registration record in SSregis table
mysql_select_db($database_ssrecords, $ssrecords);
$query_registration = "SELECT * FROM ssregis";
$registration = mysql_query($query_registration, $ssrecords) or die(mysql_error());
$row_registration = mysql_fetch_assoc($registration);
$totalRows_registration = mysql_num_rows($registration);
$editFormAction = $_SERVER['PHP_SELF'];
if (isset($_SERVER['QUERY_STRING'])) {
  $editFormAction .= "?" . htmlentities($_SERVER['QUERY_STRING']);
//On clicking Submit, insert a new record in the ssregis table   
if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "form1")) {
  $regis_paid_code = $_POST["submit"];
  $insertSQL = sprintf("INSERT INTO ssregis (email_address, ss_id, ss_cost, reg_date, paid_code) VALUES (%s, %s, %s, %s, %s)",
        GetSQLValueString($regis_email_address, "text"),
                       GetSQLValueString($regis_ss_id, "text"),
                       GetSQLValueString($regis_ss_cost, "double"),
        GetSQLValueString($regis_reg_date, "date"),
        GetSQLValueString($regis_paid_code, "text"));                   
  mysql_select_db($database_ssrecords, $ssrecords);
  $Result1 = mysql_query($insertSQL, $ssrecords) or die(mysql_error());
  $regis_regid = mysql_insert_id();
  //Get ID of registration record just written in ssregis
  mysql_select_db($database_ssrecords, $ssrecords);
  $query_registration = "SELECT * FROM ssregis WHERE reg_id = '$regis_regid'";
  $registration = mysql_query($query_registration, $classlist) or die(mysql_error());
  $new_row = mysql_fetch_assoc($registration);
  //If using PayPal go to Paypalregis.php
  if ($regis_paid_code == "PayPal")  {
  $insertGoTo = "\ssregister\ss08-ppregis.php";
  if (isset($_SERVER['QUERY_STRING'])) {
    $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
    $insertGoTo .= $_SERVER['QUERY_STRING'];
$insertGoTo .= "&reg_id=".$new_row['reg_id'];
  else  {
  //If not using PayPal go to Lorian Home page.
  $insertGoTo = "lorianorg01/index.html";
  if (isset($_SERVER['QUERY_STRING'])) {
    $insertGoTo .= (strpos($insertGoTo, '?')) ? "&" : "?";
    $insertGoTo .= $_SERVER['QUERY_STRING'];
$insertGoTo .= "&reg_id=".$new_row['reg_id'];
header(sprintf("Location: %s", $insertGoTo));

Similar Messages

  • Don't understand error messages and how to resolve them

    I am having error messages that are confusing. I thought any fonts I used that were not web safe or in Typekit would turn to images, and there would be no problem. What are these errors about? When I view the site in Safari everything looks the way it should.
    Thanks for your help.
    Here is the site:
    http://marystephens.businesscatalyst.com/index.html

    Hi
    As you guess i 'am a newbie!
    I don't understand Inner Classes, particulary
    members(methods & fields) that an Inner method is
    able to manipulate.
    So I know that the methods of an Inner class
    (respectively Outer Class) instance can access
    members (private or public) of an instance of the
    Outer Class (respectively Inner Class).
    I tried to answer to a quizz :
    http://java.sun.com/developer/onlineTraining/new2java/
    supplements/quizzes/January03.html
    In the following class definition, which variables
    are inaccessible within the method of the inner
    class?
    class Test1 {
    public static int a = 1;
    private static int b = 2;
    public int c = 3;
    private int d = 4;
    public static class Inner {
    int e = 5;
    public void aMethod(int f) {
    int g = 6;
    // What can't be accessed here?
    }A.      b, c, d
    B.      c, d
    C.      b, c, d, f
    D.      None of them
    In my opinion members (public or private) of the
    Outer Class can be accessed by methods of the Inner
    Class; e.g: a, b, c,d thus for me the answer is
    D.
    Obviously i'm wrong, but why?Inner class method can access all the private members of the class. But the inner class is static. So the non-static members cannot be accessed directly (i.e. c and d).
    ***Annie***

  • Don't understand error message from HTML parser?

    I've written a simple test program to parse a simple html file.
    Everything works fine accept for the <img src="test.gif"> tag.
    It understands the img tag and the handleSimpleTag gets called.
    I can even pick out the src attribute. But I get a very strange error message.
    When I run the test program below on the test.html file (also below) I get the following output:
    handleError(134) = req.att srcimg?
    What does "req.att srcimg?" mean?!?!?
    /John
    This is my test program:
    import javax.swing.text.html.*;
    import javax.swing.text.*;
    import javax.swing.text.html.parser.*;
    import java.io.*;
    public class htmltest extends HTMLEditorKit.ParserCallback
    public htmltest()
       super();
    public void handleError(String errorMsg, int pos)
       System.err.println("handleError("+pos+") = " + errorMsg);
    static public void main (String[] argv) throws Exception
        Reader reader = new FileReader("test.html");
        new ParserDelegator().parse(reader, new htmltest(), false);
    This is the "test.html" file
    <html>
    <head>
    </head>
    <body>
    This is a plain text.<br>
    This is <b>bold</b> and this is <i>itallic</i>!<br>
    <img src="test.gif">
    "This >is also a plain test text."<br>
    </body>
    </html>
    ----------------------------------------------------------------------

    The handleError() method is not well documented any more than whole javax.swing.text.html package and its design structure. You can ignore the behavior of the method if other result of the parser and your HTML file are proper.

  • Don not understand error message

    Hi Community,
    since I updated my Developer Studio from 2.0.5 to 2.0.8
    I'm permantly faced to a strange error message I can not deal with.
    Error stacktrace:
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Failed to create delegate for View com.sap.knutsidea.AdminView.
         at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.<init>(DelegatingView.java:50)...
    Would somebody be so kind and explain this to me? Thank's a lot for your always good help, Robert.

    Hi,
    now It's running. You were right. But I got another problem now. The Behaviour of my WD Application changed.
    I got a View which contains a tree control. For this tree control I implemented the method onActionSelect.
    public void onActionSelect(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent, com.sap.tut.wd.tree.wdp.IPrivateTreeView.ITreeNodeElement selectedElement )
        //@@begin onActionSelect(ServerEvent)
        if( selectedElement == null)
             wdContext.currentContextElement().setLabelname("Element = null");
        //wdThis.wdFirePlugToDispatcherView(selectedElement);
        //@@end
    If I check the parameter selectedElement now for null, I get true. That means this structure isn't filled out automatically anymore.
    Do you know something about API changes or how to fix this problem? Regards and thank's a lot, Robert.

  • Publish fails in Frame 12. Where do I go to understand error messages?

    Using Publish pad in Frame 12, I get an error message:
    MIF: "C:\Users\...\AppData\Local\Temp\TPUBTMP\FileName_A01.mif" (5239): Value of Separation out of range (10)
    Is there somewhere where these issues are listed?
    Thanks in advance.

    Hi Jeff,
    I'm not sure if that link shows the cause or not. So far in the Settings file I have mapped:
    HeadingBook to h1 (Heading 1)
    HeadingVolume to h2 (Heading 2)
    Heading0 to h3 (Heading 3)
    Heading1 to h3 (Heading 3)
    Heading2 to h4 (Heading 4)
    Heading3 to h5 (Heading 5)
    all the Heading...TOC files to h6 (Heading 6)
    and
    BodyBegin to p.BodyLevel1
    BodyContent to p.BodyLevel2
    I haven’t mapped any other paragraph tags or character tags because I’m trying to see if I’m understanding this process correctly.
    Since I still don’t understand most of this, in ALL of the Style Mappings of paratags, NONE of the other tickboxes have been selected.
    Advice, oh Great Wizard?
    Thanks,
    Theresa

  • Understanding error messages from console...help please

    Hi,
    I am getting there...almost...my classes compiled...so far so good...
    However, when I hit the "Submit" button (class Booking) the program seems to get stuck on something ...and I don't how to understand the error message:
    Here is the error message, underneath are the two classes involved (code):
    D:\JBuilder8\jdk1.4\bin\appletviewer.exe Booking.html
    java.lang.NumberFormatException: null
         at java.lang.Integer.parseInt(Integer.java:394)
         at java.lang.Integer.parseInt(Integer.java:476)
         at Order.getPeople(Order.java:57)
         at ConfirmationPopup.<init>(ConfirmationPopup.java:72)
         at DetailsPopup.actionPerformed(DetailsPopup.java:152)
         at java.awt.Button.processActionEvent(Button.java:381)
         at java.awt.Button.processEvent(Button.java:350)
         at java.awt.Component.dispatchEventImpl(Component.java:3598)
         at java.awt.Component.dispatchEvent(Component.java:3439)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:450)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:197)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:144)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:136)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:99)
    import java.awt.*;
    import java.awt.event.*;
    import java.util.StringTokenizer;
    public class DetailsPopup extends Frame implements ActionListener,ItemListener
      TextField SName;
      TextField FName;
      TextField Email;
      TextField CCard;
      Choice ChoiceExpMonth;
      Choice ChoiceExpYear;
      Color LightBlue = new Color(180,180,255);
      String a6;
      String a7;
      String a8;
      String a4 = "1";
      String a5 = "2003";
      public DetailsPopup(String f,String co,String pr,String pe)
        super(f);
        a6 = co;
        a7 = pr;
        a8 = pe;
        Button b3 = new Button ("Submit");
        b3.addActionListener(this);
        Panel panel = new Panel();
        panel.setBackground(Color.yellow);
        panel.add(b3);
        add("South", panel);
        Panel fieldPanel = new Panel();
        fieldPanel.setBackground(LightBlue);
        fieldPanel.setLayout(new GridLayout(0,1));
        panel = new Panel();
        panel.add(new Label("Surname"));
        SName = new TextField(15);
        panel.add(SName);
        fieldPanel.add(panel);
        panel = new Panel();
        panel.add( new Label("First Name"));
        FName = new TextField(15);
        panel.add(FName);
        fieldPanel.add(panel);
        panel = new Panel();
        panel.add( new Label("E-mail"));
        Email = new TextField(15);
        panel.add(Email);
        fieldPanel.add(panel);
        panel = new Panel();
        panel.add( new Label("Credit/Debit Card"));
        CCard = new TextField(16);
        panel.add(CCard);
        fieldPanel.add(panel);
        panel = new Panel();
        panel.add( new Label("Expiry Date"));
        panel.add( new Label("Month"));
        ChoiceExpMonth = new Choice();
        ChoiceExpMonth.addItemListener(this);
        panel.add(ChoiceExpMonth);
        fieldPanel.add(panel);
        int i = 1;
        while (i < 13)
          ChoiceExpMonth.addItem(new Integer(i).toString());
          i++;
        panel = new Panel();
        panel.add(new Label("Year"));
        ChoiceExpYear = new Choice();
        ChoiceExpYear.addItemListener(this);
        panel.add(ChoiceExpYear);
        fieldPanel.add(panel);
        int j = 2003;
        while (j < 2008)
          ChoiceExpYear.addItem(new Integer(j).toString());
          j++;
        add(fieldPanel, "Center");
        setSize(400, 300);
        setLocation(320,240);
        setVisible(true);
        //addWindowListener(new WindowAdapter() {
          //public void windowClosing(WindowEvent e) {
            //System.exit(0);
      public void itemStateChanged(ItemEvent e) //read choice from ChoiceExpMonth and/or ChoiceExpYear DropDowns
       if (e.getSource().equals (ChoiceExpMonth))
         a4 = (String) e.getItem();  // When ChoiceExpMonth is modified
       if (e.getSource().equals (ChoiceExpYear))
         a5 = (String) e.getItem();  // When ChoiceExpYear is modified
      public void actionPerformed( ActionEvent e)
        String Name = "";
        String First = "";
        String Card = "";
        String Mail = "";
        String TestEmail = Email.getText();
        StringTokenizer st = new StringTokenizer(TestEmail,"@");
        if (SName.getText().length() == 0)
          Name = "bad";
        if (FName.getText().length() == 0)
          First = "bad";
        if (CCard.getText().length() != 16)
          Card = "bad";
        if(TestEmail.indexOf("@") == -1)
          System.out.println("TestEmail has no '@' symbol");
        if (st.countTokens() != 2)
          Mail = "bad";
        if (Name.equals("bad") || First.equals("bad") || Card.equals("bad") || Mail.equals("bad"))
         Dialog Err = new Erratum (new Frame (),Name,First,Card,Mail);
        else
         dispose();
         String a0 = SName.getText();
         String a1 = FName.getText();
         String a2 = Email.getText();
         String a3 = CCard.getText();
         ConfirmationPopup Conf = new ConfirmationPopup(new Frame(),a0,a1,a2,a3,a4,a5,a6,a7,a8);
        //System.out.println("Name = " + Name + "\n" +
                           //"First = " + First + "\n" +
                           //"Card = " + Card + "\n" +
                           //"Mail = " + Mail);
      //public static void main(String[] args) {
        //new DetailsPopup("Chaos!");
    class ConfirmationPopup
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    import java.awt.Dialog.*;
    class ConfirmationPopup extends Dialog implements ActionListener
    Dialog Confirmation;
    Color LightBlue = new Color(180,180,255);
    ConfirmationPopup(Frame f,String a0,String a1,String a2,String a3,String a4,String a5,String a6,String a7,String a8)
       super(f);
       String SName = a0;
       String FName = a1;
       String Email = a2;
       String CCard = a3;
       String ExpMonth = a4;
       String ExpYear = a5;
       String Course = a6;
       String Price = a7;
       String People = a8;
       String[] c = {SName,FName,Email,CCard,ExpMonth,ExpYear,Course,Price,People};
       Order order1 = new Order(c);  
       Button b6 = new Button ("OK"); //OK
       b6.addActionListener(this);
       Panel panel = new Panel();
       panel.setBackground(LightBlue);
       panel.add(b6);
       add("South", panel);
       Panel Datapanel = new Panel();
       Datapanel.setBackground(LightBlue);
       Datapanel.setLayout(new GridLayout(0,1));
       panel = new Panel();
       panel.add( new Label("Surname:"));
       panel.add( new Label(order1.getSName()));
       Datapanel.add(panel);
       panel = new Panel();
       panel.add( new Label("First Name:"));
       panel.add( new Label(order1.getFName()));
       Datapanel.add(panel);  
       panel = new Panel();
       panel.add( new Label("E-mail:"));
       panel.add( new Label(order1.getEmail()));
       Datapanel.add(panel);
       panel = new Panel();
       panel.add( new Label("Credit/Debit Card:"));
       panel.add( new Label(order1.getCCard()));
       Datapanel.add(panel);
       panel = new Panel();
       panel.add( new Label("Expiry Date:"));
       panel.add( new Label(order1.getExpMonth() +"/" +order1.getExpYear()));
       Datapanel.add(panel);
       panel = new Panel();
       panel.add( new Label("Course booked:"));
       panel.add( new Label(order1.getCourse()));
       Datapanel.add(panel);
       panel = new Panel();
       panel.add( new Label("Number of persons:"));
       panel.add( new Label(new Integer(order1.getPeople()).toString()));
       Datapanel.add(panel);
       panel = new Panel();
       panel.add( new Label("Total Cost of your order"));
       panel.add( new Label(new Integer(order1.getTotal()).toString()));
       Datapanel.add(panel);
       add(Datapanel, "Center");
       setSize(400,300);
       setLocation(320,240);
       setTitle("Order Confirmation");
       pack();
    public void actionPerformed( ActionEvent e)
       dispose();

    here is also the class Order
    import java.util.*;
    public class Order
    private String[] OrderDetails = new String[9]; //create array 9 elements
    Order(String[] c)
       this.OrderDetails = c;
    String getSName()  //return Surname
       String s = OrderDetails[0];
       return s;
    String getFName()  //return First Name
       String f = OrderDetails[1];
       return f;
    String getEmail() //return E-mail
       String email = OrderDetails[2];
       return email;
    String getCCard() //return CCard number
       String cc = OrderDetails[3];
       return cc;
    String getExpMonth() //return CCard Expiry Month
       String expm = OrderDetails[4];
       return expm;
    String getExpYear() //return CCard Expiry Year
       String expy = OrderDetails[5];
       return expy;
    String getCourse() //return Course's name
       String course = OrderDetails[6];
       return course;
    int getPrice() //return Price (Full-Time, Part-Time, Concessions)
       String price1 = OrderDetails[7];
       int price = Integer.parseInt(price1);  
       return price;
    int getPeople() //return number of participants
       String people1 = OrderDetails[8];
       int people = Integer.parseInt(people1);
       return people;
    int getTotal() //return total cost of booking
       int Total = getPrice()*getPeople();
       return Total;
    }

  • Blog entries on my web site don't show, error message

    Hi everyone,
    I'm fully aware that my question may be off topic since it is possible that my problem has to do with my internet provider rather than with iWeb. If so, I would like to apologise.
    Now this is what is puzzling me. I made my first web site using iWeb, and it looks pretty promising. When I click on the index file, my browser starts and shows me that everything works. I even managed to publish the site to a folder and to send the files via FTP to my provider. Everything seems to work just fine, all the pages show up, except for one thing - the blog page. What happens is this - online with my browser, I can see the blog overview with the first ten lines of each article. However, when I click on one of the blog entries to see the whole thing, I get a 404 error message telling me that the requested URL was not found on the server. But the files are there! Is there a way to "link" the blog entry files with the overview again? Or should I talk to my provider?
    Thanks for your help!
    cu
    Joerg

    Okay, I did some more research (which I should have done beforehand, I know, so sorry for bothering), and it turns out that my problem has indeed to do with my provider. Obviously, iWeb creates file and folder names with german umlaut characters (for instance, "Einträge", which means "entries"). This resulted in conflicts with file name restrictions on the server - something whether Apple nor my provider told me about in the first place. I'm pretty disappointed about this. Anyway, the server could not correctly link to files which were there, but included characters the server did not want to understand.
    The solution: A guy from switzerland has written a little app called iWeb Translator, which does the nasty job of translating "the whole iWeb-Site to match the provider's constraints". This did the trick. The link: http://sschoenb.blogspot.com/2007/08/iweb-and-umlaut-characters.html. Thank you, man!
    cu
    Joerg

  • Firefox keeps asking to update to Firefox 31.2.0esr, although it has been done already without error message

    For some days now Firefox keeps asking me to update to Firefox 31.2.0esr, although I have done this already without receiving any error message.
    The program is on 31.1.0

    Your System Details list shows Firefox 31.
    What does it tell in Help > About?
    Can you attach a screenshot of that window?
    *http://en.wikipedia.org/wiki/Screenshot
    *https://support.mozilla.org/kb/how-do-i-create-screenshot-my-problem
    *Use a compressed image type like PNG or JPG to save the screenshot
    *Make sure that you do not exceed the maximum size of 1 MB
    You can find the full version of the Firefox 31.2.0 ESR release in all languages and for all Operating Systems here:
    *https://www.mozilla.org/en-US/firefox/organizations/all/
    *https://www.mozilla.org/en-US/firefox/31.2.0/releasenotes/
    *https://www.mozilla.org/en-US/firefox/organizations/system-requirements/
    If you do not keep changes after a restart or otherwise have problems with preferences, see:
    *http://kb.mozillazine.org/Preferences_not_saved

  • Satellite L300-H02: DVD/CD drive don't work - Error message 39

    Hi all,
    I just purchased a Toshiba Laptop, running Vista Premium Home Edition, and after a massive Windows update download, the DVD-CD drive didnt work. Error message 39, corrupt or missing driver. The driver isnt missing, so it must be corrupt. Am savvy with regedit regarding removal of upper and lower filters from the registry, except havent action the removal yet, as there doesnt appear to be an upper filter listed. Only the lower filter.
    Also, the information states you may lose functionality in certain programs such as CD recording programs. In this scenario, you must reinstall any affected programs. which is a problem, as Vista etc. was already loaded and no other software came with the laptop.
    Im a little chicken to go ahead and remove the lower filter registry entry, seeing as theres no upper entry to delete, plus I've heard some people can't write to CD after removing the filters in the registry.
    Where can I get information on the CD-rom drive for this model: pslboa-08h022 ?
    There isn't any information on it in the System Information.
    Thanks in advance folks, Anniebird

    Thanks andrej, I appreciate your help.
    This seems to be the only solution I've been able to track down, although I was looking for a better one. I rang Toshiba support, and they said Toshiba could not be held responsible for any advice followed on the Windows website.
    If the filters aren't necessary to the running of the DVD drive, why are they there? I don't want an impaired DVD-OM drive that is unable to function in writing mode.
    Toshiba phone support said to remove the hardware from the Device Manager (CD-Rom Drive with ! displayed), then download a new driver from: http://www.isd.toshiba.com.au/drivers
    I have a feeling this driver is already on my computer, but will follow through with his advice. If this doesn't work, he said the only other thing to do would be a system restore. Which means reinstalling ALL the programs and files I so laboriously installed a few days ago.
    I only purchased this notebook on the 11th September!!! I am fast becoming disillusioned with both Toshiba and Windows Vista. I want a first rate product functioning as it should, not a headache to be endured.

  • Trying to create package and do not understand error message

    What is wrong with this statement. Its say ASH411APPROVALEMAIL_PKG is not declared. I am trying to create it. Whats wrong?
    ERROR MESSAGE
    I get the following error.
    Error at line 1: PLS-00201: IDENTIFIER 'ASH411APPROVALEMAIL_PKG' must be declared1. CREATE OR REPLACE PACKAGE BODY ASH411APPROVALEMAIL_PKG
    2. AS
    3. PROCEDURE ASH411APPROVALEMAIL_async (P_ATS_NO NUMBER
    CODE
    CREATE OR REPLACE PACKAGE BODY ASH411APPROVALEMAIL_PKG
    AS
    PROCEDURE ASH411APPROVALEMAIL_async (P_ATS_NO NUMBER)
    AS
    BEGIN
    DBMS_SCHEDULER.define_program_argument (program_name => 'ASH411APPROVALEMAIL',
    argument_position => 1,
    argument_name => 'P_ATS_NO',
    argument_type => 'NUMBER'
    --,DEFAULT_VALUE => whatever_value
    DBMS_SCHEDULER.ENABLE (NAME => 'ASH411APPROVALEMAIL');
    DBMS_SCHEDULER.create_job (job_name => 'ASH411APPROVALEMAIL_JOBNAME'
    || P_ATS_NO,
    program_name => 'ASH411APPROVALEMAIL',
    enabled => TRUE,
    comments => 'Comments'
    EXCEPTION
         WHEN NO_DATA_FOUND THEN
         null;
    END ASH411APPROVALEMAIL_async;
    end ASH411APPROVALEMAIL_PKG;

    Hi, Howard,
    csphard wrote:
    Now when I go back and create the package again with the procedures it say package body created but does not
    display anything."Package body created" is all it ever says (unless there's an error message).
    How do I see the procedures I just created when I ran the package again with the procedures?If you want to see the source code, look at the CREATE PACKAGE BODY command in the script you just ran, or query the data dictionary view user_source:
    SELECT       text
    FROM       user_source
    WHERE       name     = 'ASH411APPROVALEMAIL_PKG'
    AND       type     = 'PACKAGE BODY'
    ORDER BY  line
    ;

  • TS3694 I've tried to sync my iPhone 3GS, but it'll sync a little and then disconnect when almost done; I get error message 1015, and I don't know what to do. Everything else is fine, my iTunes info is up to date, and so is my OS, ect.

    I've tried syncing my iPhone 3GS, but it'll stop when the sync is nearly complete, and the sync is interrupted with an error message reading "Error 1015". I've already tried all of the other things suggested by iTunes (ensuring that my OS is up-to-date, disconnecting other USB cables, ect.), yet this problem persists. Help...

    5.0.2 has not been released, thus you can not upgrade.
    Stedman

  • Need help understanding error message when syncing iTouch

    I get an error message when I sync my iTouch with my MacBook. The error message reads as follows:
    "iTunes could not sync mail accounts to the iPod...because an error occurred remapping record identifiers."
    First, can anyone tell me what this message actually means? And second, any suggestions on how to resolve the problem?
    Thanks.

    it means a USB adapter. one that is connected to your computer in order to give you more USB ports than are built into your machine.

  • "browser buttons don't work " error message.

    I recently loaded the newer version of Firefox, and now this one site keeps giving me a "browser buttons don't work" message. I've never had a problem until I loaded the new version. I have changed the cookies settings and done a couple of other things but I'm not very computer savvy.

    This error can be tricky.  Follow the excellent advice offered by Pondini in his Time Machine --- Troubleshooting document.
    http://pondini.org/TM/Troubleshooting.html
    See # C17

  • Don't understand Error code

    I was reading a specific channel on a 6025E using the test of the card, i had this error code ;Possible reasons:
    NI-DAQ LV: A channel, port, or counter is out of range for the device type or device configuration; or the combination of channels is not allowed; or the scan order must be reversed (0 last).
    with a multimeter i can read 1,2V dc at this point (the right voltage). Could you help?
    Caroline Paulin
    R&D technician
    Astroflex inc
    Canada

    What comes to mind first is that your reading is being done in differential mode and you have picked a channel that is out of range. remember that in diff mode the channels are in blocks of 8.
    e.g.
    0:7
    16:23
    32:39
    if you are in diff mode and try to read channel 9 for example you will get that error.
    Dan

  • Not understandably error message

    My computer crashed but I have now got it up and running again but this message appears on my screen - what does it mean?
    "Cannot find import;DLL may be missing, corrupt, or wrong version. File "rtl70.bpl", error 126"
    Urgent help would be appreciated.

    Hi Frank,
    Have you recently added or removed any software ? I have come across this error with users of Spyware Doctor in the past.
    regards,

Maybe you are looking for

  • Media Encoder Freezing Up Mac When Exporting

    Hello, Not sure if this has started due to a recent Media Encoder update or from the fact that I've switched out my hard drive for a SSD model. It seems that now I can no longer use my Macbook Pro do do email or browse the web when exporting a video

  • Having multiple Stored procedure in a single Business Service in OSB

    Hi, Please let me know is it possible to have multiple Stored Procedure inside one business service in OSB. Regards, Abdul

  • Urgent Help in Migration of 3.1I system

    Hello, I am in Data Import step running with R3SETUP -f DBMIG.R3S. My R3load process was ending with error after 80% of Installation and I have by mistake deleated all SAP*.logs and I am in big trouble now I am starting my R3SETUP again it is giving

  • Z1 viewfinder colors don't match captured footage on TV and FCP

    Hi. I shoot underwater on a Sony Z1 and white balance using the viewfinder to what seems a satisfactory result. However, once captured, the colors of the footage on both the Z1's LCD and its viewfinder simply do not look like the colors in FCP or on

  • Central storage Problems with iTunes after 10.5 upgrade

    I keep my I tunes Library on a Central 2TB network storage device connected to my Router. After installing 10.5, i have been experiencing trouble, every tim I need to re boot my MAC for a software update, ITunes has to "organize" the same Library aga