Web form not quite working correctly

I have created a simple web site with iweb and have entered a simple web form on my contact me page. I created the "form" in dreamweaver (an extremely simple form) and copied the html code into iWeb via the html snippet and online instructions. When viewing the page when posted, it appears fine, but whenever a user inputs data into the form and clicks submit, it navigates to a page of just my form HTML code, ie. a white page with just my form fields on it. Also, I downloaded some simple free code for a "date picker" for a date field on my form, and whenever this button is clicked, it opens that same window described before. Any suggestions on what can be wrong?
Extra detail:
I am hosting the site myself through apache.
The forms action attribute is set to results.php
The location of results.php is correct
results.php is suppose to send an email to myself notifying me of the data just inputted.
results.php was created outside of iWeb (since iWeb does not create PHP pages)

Thanks for your suggestions. I got it working somewhat, but now having a slightly different problem. I have the form displayed correctly and when filled out and submit is clicked, the results.php is opened correctly (just a simple page stating "Thank you, we will contact you soon", etc.) I dont remember exactly how I got it working, but I remember it was something with the location of the results.php file itself (althought I still cant get the date picker javascript + swv working correctly, but I'm just going to remove that).
My new problem is that in the results.php file I am using the mail() function to send the data in the form to my email address. Like I stated before, the results.php file displays correctly after hitting submit, with no php errors, but it just wont send me that mail. This problem is not related to iWeb and maybe I should just post it in another section, but does anybody know what could be wrong, or is there some type of setting that needs to be turned on for it to work? Thanks!

Similar Messages

  • Applet not quite working correctly, need second opinion

    I'm sure you guys are getting tired of seeing me post questions, but I have another one. The following code is a simple Card Bet game(High Low). The problem is the score is not accumulating correctly. Sometimes it add when with should subtract, and vice versa. I got tired of trying to figure out my problems with SecretPhrase so I figured I would try another part of my project, only to run into more problems.
    Code:
       import javax.swing.*;
       import java.awt.*;
       import java.awt.event.*;
       import java.util.*;
        public class JCardBet extends JApplet implements ActionListener
          JLabel title = new JLabel("** Bet the Card **");
          JLabel compCard = new JLabel("");
          JLabel playerCard = new JLabel("");
          int compRand, playerRand;
          int total = 10;
          JLabel totalMoney = new JLabel("");
          JLabel gameOver = new JLabel("");
          JButton fiveHigh = new JButton("$5 Higher");
          JButton tenHigh = new JButton("$10 Higher");
          JButton fiveLow = new JButton("$5 Lower");
          JButton tenLow = new JButton("$10 Lower");
          JButton ok = new JButton("OK");
          Font font1 = new Font("Helvetica", Font.BOLD, 34);
          Font font2 = new Font("Helvetica", Font.BOLD, 20);
          String[] deck = {"2 of Spades", "2 of Hearts", "2 of Diamonds", "2 of Clubs",
                                 "3 of Spades", "3 of Hearts", "3 of Diamonds", "3 of Clubs",
                            "4 of Spades", "4 of Hearts", "4 of Diamonds", "4 of Clubs",
                                 "5 of Spades", "5 of Hearts", "5 of Diamonds", "5 of Clubs",
                               "6 of Spades", "6 of Hearts", "6 of Diamonds", "6 of Clubs",
                            "7 of Spades", "7 of Hearts", "7 of Diamonds", "7 of Clubs",
                                 "8 of Spades", "8 of Hearts", "8 of Diamonds", "8 of Clubs",
                            "9 of Spades", "9 of Hearts", "9 of Diamonds", "9 of Clubs",
                            "10 of Spades", "10 of Hearts", "10 of Diamonds", "10 of Clubs",
                            "Jack of Spades","Jack of Hearts", "Jack of Diamonds", "Jack of Clubs",
                            "Queen of Spades", "Queen of Hearts", "Queen of Diamonds", "Queen of Clubs",
                            "King of Spades", "King of Hearts", "King of Diamonds", "King of Clubs",
                            "Ace of Spades", "Ace of Hearts", "Ace of Diamonds", "Ace of Clubs"};
           public void cardGenerator()
             Random generator = new Random();
             compRand = generator.nextInt(52);
             playerRand = generator.nextInt(52);
           public void cardSort()
             Arrays.sort(deck);
           public void init()
             Container con = getContentPane();
             setLayout(new FlowLayout());
             con.add(title);
             title.setFont(font1);
             cardGenerator();
             cardSort();
             con.add(compCard);
             compCard.setText("Computer: " + deck[compRand]);
             compCard.setFont(font2);
             con.add(fiveHigh);
             fiveHigh.addActionListener(this);
             con.add(tenHigh);
             tenHigh.addActionListener(this);
             con.add(fiveLow);
             fiveLow.addActionListener(this);
             con.add(tenLow);
             tenLow.addActionListener(this);
             con.add(playerCard);
             playerCard.setFont(font2);
             con.add(totalMoney);
             totalMoney.setText("Starting with $" + total);
             con.add(ok);
             ok.addActionListener(this);
             ok.setEnabled(false);
             con.add(gameOver);
           public void actionPerformed(ActionEvent e)
             Object source = e.getSource();
             if(source == fiveHigh)
                cardGenerator();
                playerCard.setText("Your card: " + deck[playerRand]);
                cardSort();
                ok.setEnabled(true);
                fiveHigh.setEnabled(false);
                tenHigh.setEnabled(false);
                fiveLow.setEnabled(false);
                tenLow.setEnabled(false);
                if(playerRand > compRand)
                   total = total + 5;
                   totalMoney.setText("Your new total is $" + total);
                else if(playerRand < compRand)
                   total = total - 5;
                   totalMoney.setText("Your new total is $" + total);
             else if(source == tenHigh)
                cardGenerator();
                playerCard.setText("Your card: " + deck[playerRand]);
                cardSort();
                ok.setEnabled(true);
                fiveHigh.setEnabled(false);
                tenHigh.setEnabled(false);
                fiveLow.setEnabled(false);
                tenLow.setEnabled(false);
                if(playerRand > compRand)
                   total = total + 10;
                   totalMoney.setText("Your new total is $" + total);
                else if(playerRand < compRand)
                   total = total - 10;
                   totalMoney.setText("Your new total is $" + total);
             else if(source == fiveLow)
                cardGenerator();
                playerCard.setText("Your card: " + deck[playerRand]);
                cardSort();
                ok.setEnabled(true);
                fiveHigh.setEnabled(false);
                tenHigh.setEnabled(false);
                fiveLow.setEnabled(false);
                tenLow.setEnabled(false);
                if(playerRand < compRand)
                   total = total + 5;
                   totalMoney.setText("Your new total is $" + total);
                else if(playerRand > compRand)
                   total = total - 5;
                   totalMoney.setText("Your new total is $" + total);
             else if(source == tenLow)
                cardGenerator();
                playerCard.setText("Your card: " + deck[playerRand]);
                cardSort();
                ok.setEnabled(true);
                fiveHigh.setEnabled(false);
                tenHigh.setEnabled(false);
                fiveLow.setEnabled(false);
                tenLow.setEnabled(false);
                if(playerRand < compRand)
                   total = total + 10;
                   totalMoney.setText("Your new total is $" + total);
                else if(playerRand > compRand)
                   total = total - 10;
                   totalMoney.setText("Your new total is $" + total);
             else if(source == ok)
                cardGenerator();
                compCard.setText("Next computer card :" + deck[compRand]);
                cardSort();
                ok.setEnabled(false);
                fiveHigh.setEnabled(true);
                tenHigh.setEnabled(true);
                fiveLow.setEnabled(true);
                tenLow.setEnabled(true);
             if(total <= 0 || total >= 100)
                gameOver.setText("Game Over!");
                gameOver.setFont(font1);
                ok.setEnabled(false);
                fiveHigh.setEnabled(false);
                tenHigh.setEnabled(false);
                fiveLow.setEnabled(false);
                tenLow.setEnabled(false);
       }

    See thats just the thing, I don't think my sort() is working correctly, because if it was thensort() is a library method. Whatever it is documented to do, you can rest assured it is doing it correctly.
    playerRand and compRand are ints. You assign to them in the cardGenerator() method with the lines
    compRand = generator.nextInt(52);
    playerRand = generator.nextInt(52);and there is no reason why they should not be equal.
    I don't know if this is the source of the problem or not - basically I don't know what "the score is not accumulating correctly" means.
    Since you have random numbers being generated it can be difficult both to reproduce and describe problems. One way to lessen this difficulty would be to make generator an instance variable and initialise it in the constructor. One of the Random constructors lets you provide a seed value. The effect of this that the numbers generated are still "random", but are also completely reproducible. This is a good thing for testing.
    Also you could split the huge actionPerformed() method - perhaps having a number of action listeners each with a more moderate sized actionPerformed() method whose intent can be documented and whose implemention can be tested.
    Edited by: pbrockway2 on Jul 20, 2008 2:13 PM
    Why do you sort the array of strings anyway? And why, having sorted it, do you periodically sort it again (since at that point it is already sorted)?

  • Web Forms Not working on Client Machines with Separate Win

    Hi friends,
    We deployed all our Forms on web and we are using Developer
    Server 6.0 ,OAS 4.07, Oracle Jinitator 1.1.7.18 ,Netscape 4.7
    Browser
    My problem is we configured forms to open in a separate window
    this is giving problems on Client Machines they are getting a
    blank screen ,previously we used to open forms in the same window
    (browser ) at that time we didn't get any problem.
    We are using Oracle Jinitiator 1.1.7.18 & Netscape 4.7 as
    browser on Client Machines.
    Thanks in Advance...!
    Smita T
    null

    JInitiator will be downloaded only once - the first time when u connect to a web-forms application. After that - no problem. It is true that the first time it takes a little bit longer, but I think forms are working better using JInitiator. However - it is just a matter of settings how u will make your application to run. Oracle did great improvement of the speed introducing the forms servlet listener. I would expect even better performance with Forms9i. And Win2000 is not a problem, but combination between Win2000 and Pentium4 is. There is a way to avoid your (installation) problems however.

  • Frequent updates causing other programs not to work correctly

    I have a fitness computer called Body Bugg. After one of the frequent updates by Firefox, portions of the program stopped working.
    I tried downloading the newest update for Java but the program continues to give me a black screen and displays "done" rather than the normal form that should be displayed.
    I have to completely back out of the internet and go back in for the program to work correctly.
    It doesn't happen in IE. I prefer not to use IE, can you assist with this?
    Thanks,
    Eve E Greditzer

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    * Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    * Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.com/kb/Safe+Mode

  • New custom web form not visible in the menu.

    Hello WPC Experts,
      I created a new web form by following this pdf https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/2041eb17-6001-2b10-b08d-b95ce55fa9b7
    After the "3.2.6 Referencing the XML File in the Document Type" step and restarting the server, I don't see the web form I just created.
    I have the wpc_editor_role assigned. Where should I be looking to access the new web form.

    Hi Anja,
    Thanks for your response. I was working on other issues. I confirmed that I enabled "Generate UI-command" for my new Web Resource Type.
    I deleted the xml/xsl files and recreated them by copying from the how to guide: https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/2041eb17-6001-2b10-b08d-b95ce55fa9b7
    After referencing the xml/xsl files and restarting the portal, where should I check for the new web form I just created ( this is section "4. Result" in the how to guide).
    Thanks
    Srinivas.

  • Web form not updating database with stored procedure

    Hello
    i have a problem with the web form updating the database i have a stored procedure which i need to connect to. If i execute the procedure in the SQL it will update the database but when i run the web form i get my catch error "could not update database".
    I have read so much on the net and my code seem ok but i,m just so lost.
    stored procedure
    PROCEDURE [dbo].[UpdateCustomer]
    @ID INT,
    @Firstname VARCHAR(30),
    @Surname VARCHAR(30),
    @Age INT
    AS
    BEGIN
    UPDATE Customer
    SET Firstname = @Firstname,
    Surname = @Surname,
    Age = @Age
    WHERE CustID = @ID
    END
    update code
    try
    SqlCommand command = new SqlCommand();
    command.Connection = conn;
    command.CommandType = CommandType.StoredProcedure;
    command.CommandText = "UpdateCustomer";
    command.Connection.Open();
    SqlParameter param = new SqlParameter();
    param.ParameterName = "@ID";
    param.SqlDbType = SqlDbType.Int;
    param.Direction = ParameterDirection.Input;
    param.Value = txtCustID.Text;
    command.Parameters.Add(param);
    command.Parameters.AddWithValue("@CustID", txtCustID.Text.ToString());
    command.Parameters.AddWithValue("@Firstname", txtFirstname.Text);
    command.Parameters.AddWithValue("@Surname", txtSurname.Text);
    command.Parameters.AddWithValue("@Gender", Gender.Text.ToString());
    command.Parameters.AddWithValue("@Age" ,txtAge.Text.ToString());
    command.Parameters.AddWithValue("@Address1", txtAddress1.Text.ToString());
    command.Parameters.AddWithValue("@Address2", txtAddress2.Text.ToString());
    command.Parameters.AddWithValue("@City", txtCity.Text.ToString());
    command.Parameters.AddWithValue("@Phone", txtPhone.Text.ToString());
    command.Parameters.AddWithValue("@Mobile", txtMobile.Text.ToString());
    command.Parameters.AddWithValue("@Email", txtEmail.Text.ToString());
    command.ExecuteNonQuery();
    lblMessage.Text = "Your Record(s) Have been Updated";
    command.Connection.Close();
    catch
    lblMessage.Text = "Your Record was not updated please try again";
    Thank you for your help

    To expand on Mike's advice.
    Change your catch to:
    catch(Exception ex)
    { // Break point here
    lblMessage.Text = "Your Record was not updated please try again";
    Put a break point in where the comment says.
    Run it.
    Hover over ex or add a quickwatch ( right click it ) and see what the error and inner exception is.
    I see several problems though.
    You have way too many parameters and Age should be int.
    They are objects  - they have a type.
    It'll be a string with your code there.
    Something more like
    command.Parameters.Add("@Age", SqlDbType.Int);
    command.Parameters["@Age"].Value = Convert.ToInt32(txtAge.Text);
    Although that might not cut and paste, it's air code intended to give you the idea.
    Hope that helps.
    Technet articles: Uneventful MVVM;
    All my Technet Articles

  • Subclips inconsistent behavior; not always working correctly in Premiere Pro CC

    I load a clip into the Source panel.  I set in and out points and then CTRL + U to create a subclip.  I have "Restrict Trim to subclip boundaries" turned off.  (Thank you Adobe, I've been waiting for "soft" subclips forEVER!)  The new subclip appears in my Project panel with the correct name and duration (as well as a white audio icon to indicate that it has not yet been used in my project).  Now, I drag that subclip into my sequence.  But the entire clip (a 5 minute interview), from which the subclip was derived, is loaded onto the timeline.
    This has been working correctly for the last hour, and now it has stopped working.  It appears that for the moment, subclipping is dead to me. 
    Help?!

    Thanks for that, Mark.
    I've done a little more testing, and the problem seems to be related to merged clips where (for me) the audio is longer than the video.
    Here's a screenshot of some testing I did:
    Let me talk you through the project browser:
    - At the top there are the source video and audio
    - I then made bins for a trimmed sequence version and an untrimmed sequence (what I mean by trimmed is that the audio was chopped down to the same duration as the video, after syncing)
    - I did the syncing on both manually. For the untrimmed clip, the audio leads the video by 1:29:04.
    - I then made merges of both
    - I then made subclips of both
    Remarks:
    1) The trimmed versions seem to work fine, though I haven't done serious testing. At least the media start and end make sense.
    2) The untrimmed merge "Merge (untrimmed)" is showing a Media Start of 23:57:04:10, which is just wrong. First of all this is a 'negative' time number (C++ signed/unsigned int math coding error?), secondly, it doesn't seem to match anything because it is an offset of -2:55:14, when the video offset is +1:29:04.
    3) When I open "Untrimmed.Subclip001" (as shown in the Source window) it shows a start time of "23:57:04:10" (the very beginning of the "Merge (untrimmed)" clip) instead of "23:58:33:14" which is where I'd set the in point for the subclip (and is shown in the Media Start column). What plays back is, indeed, the very beginning of the untrimmed clip. This is also the case with "Untrimmed.Subclip002" which had an In point set at 6:00:00.
    4) The Subclip Start times shown are totally broken. I really have no idea where it is getting those numbers from. On the other hand, the End times seem to be ok (if you again ignore the fact that I have an end time of "23+ hours" on a clip that is 1 hour long.
    5) The Audio In and Out Points shown don't make any sense to me. They're all just a little bit off the other numbers that are shown.
    Lastly, the source video is AVCHD 1080p24 from a Panasonic GH2 and the audio is 48kHz 24-bit mono from a Zoom H4n
    I hope this helps with your diagnosis.
    Looking forward to your feedback.

  • My credit card processing in my web form isn't working!

    In the credit card processing section of my web form, the credit card expiration date ranges on my live page are 2007-2015.  I have customers complaining because their cards expire in 2016 and they can't purchase our products.  When I go into business catalyst to edit the web form, the credit card expiration date ranges are 2009 - 2020.  In BC the date ranges say one thing but they won't translate onto the live page.  Please help!

    Hello JonathanMLeatherMilk,
    Is it possible to get a link to the page with the problem?
    With the web form, are you editing/looking it within the Web Forms section or in the Registration - Buy layout withing the Online Shops Module Layouts?  A little more info would help on getting this resolved for you.
    Thanks,
    Chad Smith | http://bcgurus.com/Business-Catalyst-Templates for only $7

  • Tabular form delete button not quite working as it should

    Hello,
    Theres a little problem with the delete button on my tabular form. When I select the rows I want to delete with the checkboxes then click the button, it deletes the checked rows but it ALSO gets rid of all the rows that I haven't yet saved i.e. that I created while I was on that page, the same time I checked the boxes
    If I save the items then go back to the page and select them it works fine, but obviously the end users won't know to do that...
    Is there a way to stop this happening? It happens on all the tabular forms I have in my app...so presumably its a fairly common problem? but I can't find an answer on the interwebs...
    I did think maybe I could run the MRU process before the MRD process when I click the delete button as well as when I click the save button...but I thought I would ask an expert opinion before messing something up. It all works fine other than that...
    Thanks
    abarnybox

    Apple will not repair this problem, they will offer replacement iPhone 4S for $199, it will be exact perfect iPhone just like yours same color, GB everything. If you want to try Virtual Lock Button, tap Settings App > General > Accessibility > Assistive Touch > ON > tap new screen white button > tap Device > Lock. This can be used to turn OFF iPhone. To turn iPhone ON, connect to power, ie charger or USB of computer.

  • PHP web form not working properly

    I am having a problem with writing some PHP script in an attempt to draw info, entered by users, on a form on my site and email it to myself.  The form is on the website page www.highwaytoheavenchurch.com/prayerRequest.php
    In lesson 13 of the textbook "Classroom in a Book for Adobe Dreamweaver CS5" it takes you through the PHP script for emailing forms and gives a great example to follow.  I adapted this example to fit my needs.  Here is the script I have written;
    <?php
    $to = "[email protected]";
    $subject = "Website Prayer Request";
    $message =
    "Name: ". $_POST['name'] . "\r\n" .
    "Email: " . $_POST['email']. "\r\n" . "\r\n" .
    "Prayer Request:" . $_POST['prayerRequest'];
    $from = $_POST['email'];
    $headers = "From: $from" . "\r\n";
    mail($to,$subject,$message,$headers);
    ?>
    The html for the form is:
    <form action="email_form.php" method="post" enctype="multipart/form-data" name="websitePrayerRequest" id="websitePrayerRequest">
      <p>
      </p>
      <fieldset>
        <legend>Name and Email</legend><p>
        <label id="name">Name (not required)
          <input name="name" type="text" id="name" size="30" maxlength="30">
        </label>
      </p>
      <p><span id="email">
        <label for="email">Email</label>
      <input type="text" name="email" id="email">
      <span class="textfieldRequiredMsg">An email address is required.</span><span class="textfieldInvalidFormatMsg">Please enter a valid email address.</span></span></p></fieldset>
      <p>
      </p>
      <p>Enter your prayer request here:</p>
      <p>
        <textarea name="prayerRequest" cols="75" rows="8" id="prayerRequest"></textarea>
      </p>
      <p>
        <label>
          <input type="submit" name="Submit" id="submit" value="Submit">
          Submit Your Request</label>
      </p>
    </form>
    The result is that the form will email me with the sender being the name of my FTP account of my hosting provider (this is acceptable), and the following info in the body of the email:
    Name:
    Email:
    Prayer Request:
    Obviously, it does not draw the information typed into the form text boxes by the user. 
    Do you have any suggestions for me?

    The form is being transmitted from a secure site. The data in the email is not stored on the site. It is transmitted in the email to me and then stored in my personal inbox.
    I have deleted the scriptyou suggested and still get the same reasults. The form HTML now reads:
    <form action="email_form.php" method="post"  name="websitePrayerRequest" id="websitePrayerRequest">
      <p>
      </p>
      <fieldset>
        <legend>Name and Email</legend><p>
        <label id="name">Name (not required)
          <input name="name" type="text" id="name" size="30" maxlength="30">
        </label>
      </p>
      <p><span id="email">
        <label for="email">Email</label>
      <input type="text" name="email" id="email">
      <span class="textfieldRequiredMsg">An email address is required.</span><span class="textfieldInvalidFormatMsg">Please enter a valid email address.</span></span></p></fieldset>
      <p>
      </p>
      <p>Enter your prayer request here:</p>
      <p>
        <textarea name="prayerRequest" cols="75" rows="8" id="prayerRequest"></textarea>
      </p>
      <p>
        <label>
          <input type="submit" name="Submit" id="submit" value="Submit">
          Submit Your Request</label>
      </p>
    </form>

  • Web forms not working completely

    I'm creating this multi step form; this is the first page http://www.angelsjunkremoval.com/book-online-dates-times.php this is the second page http://www.angelsjunkremoval.com/book-online.php .
    I've been able to make the PHP enter the time designated by the radio circle into the secon box of the second page but I haven't been able to figure out how to make the first box of the second page show the day of the the user is booking from the first page. Is there a way I could possibly create a conditional statement using the id# of the radio input or can I get the result I'm looking for some other way?

    Forget about session variables. POST form values only survive the duration of one page load, or action. So you'd have to recycle the value that was passed from the first page to the second page or else they are destroyed once a page is loaded after that. You can recycle variables either through a form field, a URL parameter, or a Session varible. You can also store the value in a database and call it. I'm sure you know that and it wasn't really your original question, so posting a w3schools link won't help much. Your example is recycling the value that's being passed from formpage1.php to formpage2.php so session variables are completely pointless for this discussion thread. Like I've said: forget about session variables. There are times where you might use session variables but for this scenario I do not see any reason to use them.
    I've seen your form page and comprehended your question. For instance: visitor goes to formpage1.php and enters a time for a day. Upon submission of the form you're sent to formpage2.php where the time slot is displayed in a read only text field. You want the day to also be displayed in a separate read only text field. Currently it doesn't matter if visitor enters a time slot for anyday because a variable is not set for the day in formpage1.php and thus passed to display on formpage2.php in the day text field.
    There's a few solutions you can do: either create separate forms for each day on formpage1.php with each submission value the name of the day, then pass the form submission value to formpage2.php and echo the value in the day input filed much like you've already done for the time slot. The other method is to use javascript to append the day value to the time slot radio selection on formpage1.php depending on the time that was selected. Something like if id="22" is checked then add a POST value 'day' value of Wednesday, etc. It's a cumbersome method that's dependent on javascript knowledge of the developer and also the client having javascript enabled so I don't recommend it. The final method is to add the day value into the time slot value then use php function on formpage2.php to separate the conjoined value of time slot and day. This is another cumbersome method but there's no dependancies on the client.
    ***The other alternative is to use drop downs for day and time slot. It'll clean up your form a lot and maintain one submission button without cumbersome code functions. One drop down for the day selection, one drop down for the time slot selection. Then echo the values into the respective read only input fields on formpage2.php That's what I'd do. boom.

  • Dev 6.0(Prod) web forms not running

    hi i am using oracle8 OAS 4.0.7, Developer 6.0 production
    with NT 4.0 and service Pack 3
    when i try to run the form through jinitinator or JDK provided
    with the package i get the following error.
    running with jinitator
    Oracle JInitiator version 1.1.7.11
    Using JRE version 1.1.7.11o
    User home directory = E:\WINNT\Profiles\Administrator
    Proxy Configuration: no proxy
    java.io.FileNotFoundException: \forms60\f60all.jar
    at
    java.io.FileInputStream.<init>(FileInputStream.java:56)
    at
    sun.net.www.protocol.file.FileURLConnection.connect(Compiled
    Code)
    at
    sun.net.www.protocol.file.FileURLConnection.getInputStream(FileUR
    LConnection.java:162)
    at
    sun.net.www.protocol.http.HttpURLConnection.openConnectionCheckRe
    directs(Compiled Code)
    at
    sun.applet.AppletCache.getInputStream(AppletCache.java:588)
    at
    sun.applet.AppletResourceLoader.loadJar(AppletResourceLoader.java
    :171)
    at sun.applet.JinitAppletPanel.loadJarFiles(Compiled
    Code)
    at sun.plugin.AppletViewer.loadJarFiles(Compiled Code)
    at
    sun.applet.JinitAppletPanel.runLoader(JinitAppletPanel.java:500)
    at sun.applet.JinitAppletPanel.run(Compiled Code)
    at java.lang.Thread.run(Thread.java:466)
    and with JDK
    Microsoft (R) VM for Java, 5.0 Release 5.0.0.3165
    ==============================================
    ? help
    c clear
    f run finalizers
    g garbage collect
    m memory usage
    q quit
    t thread list
    ==============================================
    com.ms.security.SecurityExceptionEx[oracle/forms/engine/Main.init
    ]: cannot access file E:\WINNT\Java\.hotjava
    at com/ms/security/permissions/FileIOPermission.check
    at com/ms/security/PolicyEngine.deepCheck
    at com/ms/security/PolicyEngine.checkPermission
    at com/ms/security/StandardSecurityManager.chk
    at com/ms/security/StandardSecurityManager.checkRead
    at java/io/File.exists
    at java/io/File.mkdirs
    at sun/applet/AppletViewer.<clinit>
    at java/lang/ClassLoader.findSystemClass
    at com/ms/vm/loader/URLClassLoader.loadClass
    at java/lang/ClassLoader.loadClassInternal
    at oracle/forms/engine/Main.init
    at com/ms/applet/AppletPanel.securedCall0
    at com/ms/applet/AppletPanel.securedCall
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.run
    at java/lang/Thread.run
    Error getting package information: sun/applet
    com.ms.packagemanager.PackageManagerException: Package not found
    at com/ms/packagemanager/PackageManager.getPackage
    at
    com/ms/security/SecurityClassLoader.getSecurityInfoFromPackage
    at
    com/ms/security/SecurityClassLoader.findPackageManagerClass
    at
    com/ms/security/SecurityClassLoader.findPackageManagerClass
    at com/ms/vm/loader/URLClassLoader.loadClass
    at java/lang/ClassLoader.loadClassInternal
    at oracle/forms/engine/Main.init
    at com/ms/applet/AppletPanel.securedCall0
    at com/ms/applet/AppletPanel.securedCall
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.run
    at java/lang/Thread.run
    java.lang.ClassNotFoundException: sun.applet.AppletViewer
    at com/ms/vm/loader/URLClassLoader.loadClass
    at java/lang/ClassLoader.loadClassInternal
    at oracle/forms/engine/Main.init
    at com/ms/applet/AppletPanel.securedCall0
    at com/ms/applet/AppletPanel.securedCall
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.processSentEvent
    at com/ms/applet/AppletPanel.run
    at java/lang/Thread.run
    what could be the problem have any one encountered this kind of
    problem.
    mobeen.
    null

    mobeen (guest) wrote:
    : hi i am using oracle8 OAS 4.0.7, Developer 6.0 production
    : with NT 4.0 and service Pack 3
    : when i try to run the form through jinitinator or JDK provided
    : with the package i get the following error.
    : running with jinitator
    : Oracle JInitiator version 1.1.7.11
    : Using JRE version 1.1.7.11o
    : User home directory = E:\WINNT\Profiles\Administrator
    : Proxy Configuration: no proxy
    : java.io.FileNotFoundException: \forms60\f60all.jar
    : at
    : java.io.FileInputStream.<init>(FileInputStream.java:56)
    : at
    : sun.net.www.protocol.file.FileURLConnection.connect(Compiled
    : Code)
    : at
    sun.net.www.protocol.file.FileURLConnection.getInputStream(FileUR
    : LConnection.java:162)
    : at
    sun.net.www.protocol.http.HttpURLConnection.openConnectionCheckRe
    : directs(Compiled Code)
    : at
    : sun.applet.AppletCache.getInputStream(AppletCache.java:588)
    : at
    sun.applet.AppletResourceLoader.loadJar(AppletResourceLoader.java
    : :171)
    : at sun.applet.JinitAppletPanel.loadJarFiles(Compiled
    : Code)
    : at sun.plugin.AppletViewer.loadJarFiles(Compiled Code)
    : at
    sun.applet.JinitAppletPanel.runLoader(JinitAppletPanel.java:500)
    : at sun.applet.JinitAppletPanel.run(Compiled Code)
    : at java.lang.Thread.run(Thread.java:466)
    : and with JDK
    : Microsoft (R) VM for Java, 5.0 Release 5.0.0.3165
    : ==============================================
    : ? help
    : c clear
    : f run finalizers
    : g garbage collect
    : m memory usage
    : q quit
    : t thread list
    : ==============================================
    com.ms.security.SecurityExceptionEx[oracle/forms/engine/Main.init
    : ]: cannot access file E:\WINNT\Java\.hotjava
    : at com/ms/security/permissions/FileIOPermission.check
    : at com/ms/security/PolicyEngine.deepCheck
    : at com/ms/security/PolicyEngine.checkPermission
    : at com/ms/security/StandardSecurityManager.chk
    : at com/ms/security/StandardSecurityManager.checkRead
    : at java/io/File.exists
    : at java/io/File.mkdirs
    : at sun/applet/AppletViewer.<clinit>
    : at java/lang/ClassLoader.findSystemClass
    : at com/ms/vm/loader/URLClassLoader.loadClass
    : at java/lang/ClassLoader.loadClassInternal
    : at oracle/forms/engine/Main.init
    : at com/ms/applet/AppletPanel.securedCall0
    : at com/ms/applet/AppletPanel.securedCall
    : at com/ms/applet/AppletPanel.processSentEvent
    : at com/ms/applet/AppletPanel.processSentEvent
    : at com/ms/applet/AppletPanel.run
    : at java/lang/Thread.run
    : Error getting package information: sun/applet
    : com.ms.packagemanager.PackageManagerException: Package not
    found
    : at com/ms/packagemanager/PackageManager.getPackage
    : at
    : com/ms/security/SecurityClassLoader.getSecurityInfoFromPackage
    : at
    : com/ms/security/SecurityClassLoader.findPackageManagerClass
    : at
    : com/ms/security/SecurityClassLoader.findPackageManagerClass
    : at com/ms/vm/loader/URLClassLoader.loadClass
    : at java/lang/ClassLoader.loadClassInternal
    : at oracle/forms/engine/Main.init
    : at com/ms/applet/AppletPanel.securedCall0
    : at com/ms/applet/AppletPanel.securedCall
    : at com/ms/applet/AppletPanel.processSentEvent
    : at com/ms/applet/AppletPanel.processSentEvent
    : at com/ms/applet/AppletPanel.run
    : at java/lang/Thread.run
    : java.lang.ClassNotFoundException: sun.applet.AppletViewer
    : at com/ms/vm/loader/URLClassLoader.loadClass
    : at java/lang/ClassLoader.loadClassInternal
    : at oracle/forms/engine/Main.init
    : at com/ms/applet/AppletPanel.securedCall0
    : at com/ms/applet/AppletPanel.securedCall
    : at com/ms/applet/AppletPanel.processSentEvent
    : at com/ms/applet/AppletPanel.processSentEvent
    : at com/ms/applet/AppletPanel.run
    : at java/lang/Thread.run
    : what could be the problem have any one encountered this kind of
    : problem.
    : mobeen.
    Morbeen,
    There is a document than helps a lot in
    \orant\tools\devdem60\web\readmem.ht. I have exacly the same
    environment and it worked fine with jinitiator (a little bit
    slow) and following this Cookbook.
    Regards,
    Rogerio
    null

  • ITunes 11 home sharing with iPhone not quite working

    This morning I updated iTunes 11 to the newly released iTunes 11.1. I never could get home sharing to work with my iPhone 3GS (iOS 6.0.1). It would start to download the library information and then just stop. I used home sharing all the time so I was eagerly waiting for the fix many people seemed to need.
    So...Now getting the library information seems to take a long time--5 minutes or so, but it does run to completion. But, my lists of Artists and Albums are incomplete. I haven't done a lot of testing but it seems that all of my tracks are listed under Songs, and all of the references in my Playlists open the correct tracks. For example, Charlie Musselwhite is not listed under Artists. His album One Night in America is not listed under Albums, but the song Blues Overtook Me is listed under songs and appears in the Playlists where it belongs and clicking it there plays the correct song with the correct album artwork. Once I'm playing the song, I can switch from the artwork to the album list and all the album's songs are there and are playable.
    I haven't tested every song, but I've done enough to believe that all my tracks are accessible, even though only about 10% of the albums and artists are listed properly.
    BTW: I believe that the Album and Artist lists are the ones I would get if I changed iTunes to share only selected playlists, but I haven't bothered to prove this.
    What was a prohibitive problem has been made into a minor annoyance, but in case anyone form Apple reads this, let me say this. I have been an Apple user and fan from long before Apple made the first iPod or iMac, but I am incrasingly disappointed with the dumb things Apple now releases. In the past I never thought twice about updating the the latest version of anything, because whatever Apple released worked, and if there were a few minor bugs, new software never, never, never went backwards.
    Booooo, Apple.
    From now on I will be letting others do your beta testing for you while I continue to use maps that get me where I want to go and applications that work as advertised without drawing me into spending hours getting back to where I was before an upgrade. The fact that it is no longer possible to revert to a previous, properly working version of iTunes has cemented my feeling that I will remain safely behind the leading edge.

    just found it out after playing around to get itunes 11 to look like the older version go to view ( TOP LEFT )
    and click on show sidebar and then click ON SHOW STATUS BAR ... Then go to file and sign out of home share and then sign in again ... thats it and your import and sttings and other boxs will reapear ...REMEMBER TO REPEAT THIS ON ALL COMPUTERS THAT ARE RUNNING ITUNES .........HOPE YA WIFE IS HAPPY ..MINE WAS ....

  • Web fonts not showing up correctly in safari

    Hi,
    It seems that this is getting worse, but I'm finding ALOT of sites where Safari doesn't render web fonts correctly. They work fine in Firefox, but Safari is my default browser.
    Is there a trick to fixing this?
    I can even copy out the text, paste it somewhere else and it looks fine.
    thanks-
    Dave

    Back up all data.
    Launch the Font Book application and validate all fonts. You must select the fonts in order to validate them. See the built-in help and the support article linked below for instructions. If Font Book finds any issues, resolve them, then boot in safe mode* (by holding down the shift key at the startup chime) to rebuild the font caches. Boot again as usual and test.
    Mac 101: Font Book
    *Note: If FileVault is enabled under OS X 10.7 or later, or if a firmware password is set, or if the boot volume is a software RAID, you can’t boot in safe mode. In that case only, after running Font Book, launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Drag or copy — do not type — the following line into the Terminal window, then press return:
    sudo atsutil databases -remove
    You'll be prompted for your login password, which won't be displayed when you type it. You may get a one-time warning not to screw up. After running the command, reboot as usual.

  • When using a php contact form, the form won't work correctly.

    This is the code that I'm using in the html snippet. The form displays correctly, but when you click submit it trys to go to www.my web site.com//Order_Page/send_form_email. Notice the double / above? How do i make it not do two / but only one?
      First Name *
      Last Name *
      Email Address *
      Telephone Number
      Comments *

    The post method needs to reference the formmail.php script you uploaded to the server.
    Here's some examples and instructions for a simple form...
    http://www.iwebformusicians.com/iweb-snippets/form.html

Maybe you are looking for

  • User status Date and  time

    Hi EXPERTS, In notification when we change user status, system logs date and time in action log I want to know in which table does user status date and time can be found. Regards Anil Kumar

  • Green and blue dots around all the screen

    I have noticed that green and blue dots appear around the screen of my tablet, i have send to sony service, can anyone have this issue too? it has only 1 month of use...

  • Tcp/ip ni-visa commands using visual basic

    what are the dll and bas files i need to communicate with a device via rj45 cable thru visbual basic , i can communicate when i use hyperterminal but i can't via visual basic tcpip::192.168.48.11:: this is where i'm stuck Solved! Go to Solution.

  • Ipod is frozen after updating it

    just recently tried to update my ipod touch, using my computer. a message popped up on my laptop saying the update was complete so i took out the cord from the ipod. it then took me to a complete black screen with the apple logo and a bar that looks

  • Calibration process : inspection lot not created

    Hello, When creating a maintenance order (PM05) , i can not get the inspection lot created . There has been some thread about this process , i believe i followed the instructions : -equipment category is production ressource/tool -master inspection c