Help needed getting contacts page to work

Hi there,
I’m new to flash programming, so please bear with me.
I bought a flash template to customise to use for our wedding
website. I’ve got pretty much most of it done, all except the
contacts page, which I can’t get to work.
I think I’ve narrowed the problem down to the feed into
send_mail.php script, but any suggestions would be greatly
appreciated (before my future wife kills me for wasting so much
time on this when we could have got a simple html website –
but where would be the fun in that?!)
I've attached the Action script behind the contacts page
(please excuse the Spanish – for some reason the scripts are
littered with it – for those who need to know, boton =
button, listo = ready, nombre = name, cuadro = picture).
From what I can gather, the first bit deals with what happens
when you click on the buttons (name and email), the second bit is
for error checking what’s entered, such as whether the email
address has a @ or .com. The last bit is to feed the results into a
php file, which should forward the contents of the contacts page to
me.
Here’s my send_mail.php file
<?php
$nombre=$_POST['name'];
$email=$_POST['email'];
$phone=$_POST['company'];
$comentarios=$_POST['msg'];
$to="[email protected]";
$subject="From flash form";
$headers="From: \"$name\" <$email>";
$message = "Company: $company\n\n";
$message .= $msg;
mail($to,$subject,$message,$headers);
?>
And I've put this php file in the same directory of my
website as all the other swf and fla files – is that correct?
Should this work? Or have I made a mistake anywhere?
Many thanks
DM

Okay is the php script you have included here, THE actual
script that is on your website? (unchanged in it's contents)
Because where it says:
$to="[email protected]";
You have to change that to your email, or the email you want
the form contents to send to.
-Yes you will put the .php file in the same directory as the
.swf file-
Also you need to check that the variable and instance names
in the flash file match the names in the .php file.
Example:
"mail.nombre = nombre.text;
mail.email = email.text;
mail.phone = phone.text;
mail.comentarios = comentarios.text;
mail.Submit = true;"
-This is what you have provided for the form, which does not
match the .php file provided.
If the instance name of the email section is "email" the php
file will read like this:
email=$_POST['email'];
The name inside the apostrophes is the instance name of that
box.
Looking at the scripts you have provided the instances and
variables in the form do not match the ones in the .php file.
If I am wrong, you can send me the original file if you wish
and I can most likely find the problem for you and fix it.
Or if you need help assessing this, I can do it for you! =P
my email is [email protected]
Hope I helped.
Cheers!

Similar Messages

  • Help getting contact page to work.

    I get this upon hitting submit in my email:
    1234567
    message
    27419257.1214274758.1.1.utmccn=(direct)|utmcsr=(direct)|utmcmd=(none)
    27419257
    27419257.445274696.1214274758.1214275312.1214793930.3
    Thanks for looking, and thank you for looking.

    and...
    ------------------Contact.php-----------------------
    <?php
    Error_Reporting(E_ALL & ~E_NOTICE);
    while ($request = current($_REQUEST)) {
    if (key($_REQUEST)!='recipient') {
    $pre_array=split ("&777&", $request);
    $post_vars[key($_REQUEST)][0]=preg_replace
    ("/<[^>]*>/", "", $pre_array[0]);
    $post_vars[key($_REQUEST)][1]=preg_replace
    ("/<[^>]*>/", "", $pre_array[1]);
    next($_REQUEST);
    reset($post_vars);
    $subject="From: ".$post_vars['your_name'][0];
    $headers= "From: ".$post_vars['your_email'][0] ."\n";
    $headers.='Content-type: text/html; charset=iso-8859-1';
    $message='';
    while ($mess = current($post_vars)) {
    if ((key($post_vars)!="i") &&
    (key($post_vars)!="your_email") &&
    (key($post_vars)!="your_name")) {
    $message.="<strong>".$mess[1]."</strong>   ".$mess[0]."<br>";
    next($post_vars);
    mail($_REQUEST['recipient'], $subject, "
    <html>
    <head>
    <title>Contact letter</title>
    </head>
    <body>
    <br>
    ".$message."
    </body>
    </html>" , $headers);
    echo ("Your message was successfully sent!");
    ?>
    <script>
    resizeTo(300, 200);
    </script>
    -------------------email received when Using "Submit"
    button------------------------------------------
    Return-path: <thehosting info>
    Envelope-to: [email protected]
    Delivery-date: Mon, 30 Jun 2008 07:52:49 -0700
    Received: from thehostinginfo with local (Exim 4.68)
    (envelope-from <thehostinginfo>)
    id 1KDKkL-0002sk-5U
    for [email protected]; Mon, 30 Jun 2008 07:52:49 -0700
    To: [email protected]
    Subject: From: 123
    X-PHP-Script: domain.net/contact.php for 74.229.41.89
    From: [email protected]
    Content-type: text/html; charset=iso-8859-1
    Message-Id: <hostinginfo>
    Date: Mon, 30 Jun 2008 07:52:49 -0700
    <html>
    <head>
    <title>Contact letter</title>
    </head>
    <body>
    <br>
    <strong></strong>   <br><strong></strong>   1234567<br><strong></strong>   message<br><st rong></strong>   27419257.1214274758.1.1.utmccn=(direct)|utmcsr=(direct)|utmcmd=(none)<br> <strong></strong>   27419257<br><strong></strong>   27419257.445274696.1214274758.12142753 12.1214793930.3<br>
    </body>
    </html>
    or (in the body)
    1234567
    message
    27419257.1214274758.1.1.utmccn=(direct)|utmcsr=(direct)|utmcmd=(none)
    27419257
    27419257.445274696.1214274758.1214275312.1214793930.3

  • Help needed: getting jar files to work.

    Right, to start off, i have been doing php and mysql for a long time and i thought it's time to start using java.
    So now im trying to create an application. I use eclipse. All works well if i run the program from eclipse. But i want to create and executable or a jar file first. I used JSmooth but with that i get an error "Could not find the main class".
    While exporting the project as a jar i specified the main class in manifest specification.
    So these are my classes:
    the Main.class
    public class Main{
         public static void main(String[] args)  {
              PageFrame page = new PageFrame();
              page.show();
    }and the PageFrame.class
    import java.net.*;
    import java.io.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.*;
    class PageFrame extends JFrame implements ActionListener,MouseListener{
         String[] skillnames = {"attack","hitpoints","mining","strength","agility","smithing","defence","herblore","fishing","ranged","thieving","cooking",
                   "prayer","crafting","firemaking","magic","fletching","woodcutting","runecraft","slayer","farming","construction","hunter","summoning"};
         JTextField username = new JTextField("",12);
         JTextArea box = new JTextArea(10,12);
         JButton search = new JButton("Search");
         int[] differences = {0,83,174,276,388,512,650,801,969,1154,1358,1584,1833,2107,2411,2746,3115,3523,3973,4470,5018,5624,6291,7028,7824,
                   8740,9730,10824,12031,13363,14833,16456,18247,20224,22406,24815,27473,30408,33648,37224,41171,45529,50339,55649,61512,67983,
                   75127,83014,91721,101333,111945,122660,136594,150872,166636,184040,203254,224466,247886,273742,302288,333804,368599,407015,
                   449428,496254,547953,605032,668051,737627,814445,899257,992895,1096278,1210421,1336443,1475581,1629200,1798808,1986068,2192818,
                   2421087,2673114,2951373,3258594,3597792,3972294,4385776,4842295,5346332,5902831,6517253,7195629,7944614,8771558,9684577,10692629,
                   11805606,13034431,14567891};
         URL page;
         static String name;
         JLabel[] skills  = new JLabel[24];
         JLabel skillicons  = new JLabel();
         public PageFrame(){
              super("Stats Lookup");
              setSize(800,600);
              setResizable(false);
              try{
                   UIManager.setLookAndFeel(UIManager.getCrossPlatformLookAndFeelClassName());
                   SwingUtilities.updateComponentTreeUI(this);
              }catch (Exception e){
                   System.err.println("Yo" + e);
              //teen labelid;
              for (int i = 0; i < skills.length;i++){
                   ImageIcon icon = new ImageIcon(PageFrame.class.getResource("images/skillimages/" + skillnames[i] + ".gif"));
                   skills[i] = new JLabel("00",icon,JLabel.CENTER);
              JPanel pane = new JPanel();
              GridBagLayout maingrid = new GridBagLayout();
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              GridBagConstraints constraints = new GridBagConstraints();
              JPanel skillPane = new JPanel();
              GridBagLayout levelslyo = new GridBagLayout();
              GridBagConstraints sConstraints = new GridBagConstraints();
              sConstraints.ipadx = 15;
              sConstraints.ipady = 10;
              skillPane.setLayout(levelslyo);
              int k = 0;
              int m = 1;
              buildconstraints(sConstraints,12,4,1,1,2,2);
              skillPane.add(skillicons);
              for (int i = 0; i < skills.length;i++){
                   buildconstraints(sConstraints,m,k,1,1,2,2);     
                        levelslyo.setConstraints(skills, sConstraints);
                        //skills[i].setText(" 0 ");
                        skillPane.add(skills[i]);
                        skills[i].addMouseListener(this);
                        m+=2;                    
                        if (m == 7){
                             m = 1;
                             k +=1;
              /*m = 0;
              k = 0;
              for (int i = 0; i < skills.length;i++){          
                   System.out.println("Paremale: " + m + " Alla: " + k);
                   buildconstraints(sConstraints,m,k,1,1,2,2);     
                   levelslyo.setConstraints(skillicons, sConstraints);
                   skillicons = new JLabel(icon);
                   skillPane.add(skillicons);
                        m+=2;                    
                        if (m == 6){
                             m = 0;
                             k +=1;
              buildconstraints(constraints,0,0,1,1,100,100);
              maingrid.setConstraints(username, constraints);
              buildconstraints(constraints,1,0,1,1,100,100);
              maingrid.setConstraints(search, constraints);
              buildconstraints(constraints,0,1,1,1,100,100);
              maingrid.setConstraints(skillPane, constraints);
              pane.setLayout(maingrid);
              constraints.fill = GridBagConstraints.BOTH;          
              search.addActionListener(this);
              box.setEditable(false);
              buildconstraints(constraints,1,1,2,1,120,100);
              maingrid.setConstraints(box, constraints);
              pane.add(username);
              pane.add(search);
              pane.add(box);
              pane.add(skillPane);
              setContentPane(pane);
              //getContentPane().add(scroll);
              pack();
              setVisible(true);
              WindowListener l = new WindowAdapter(){
                   public void windowClosing(WindowEvent evt){
                        System.exit(0);
              addWindowListener(l);
         void buildconstraints(GridBagConstraints gbc, int gx, int gy, int gw, int gh, int wx,int wy){
              gbc.gridx = gx;
              gbc.gridy = gy;
              gbc.gridwidth = gw;
              gbc.gridheight = gh;
              gbc.weightx = wx;
              gbc.weighty = wy;
         /*Vector ranks = new Vector();
         Vector levels = new Vector();
         Vector exp = new Vector();*/
         class Stats{
              int[] levels = new int[34];
              int[] experience = new int[34];
              int[] ranks = new int[34];
         Stats stats = new Stats();
         public void getStats(URL url){          
              URLConnection conn = null;
              InputStreamReader in;
              BufferedReader data;
              String line;          
              StringBuffer buf = new StringBuffer();
              try{
                   conn = this.page.openConnection();
                   conn.connect();
                   //box.setText("Connection opened");
                   in = new InputStreamReader(conn.getInputStream());
                   data = new BufferedReader(in);
                   //box.setText("Reading data...");
                   int ts=0;
                   while ((line = data.readLine()) != null){
                        buf.append(line + "\n");
                        StringTokenizer tokenize;
                        tokenize = new StringTokenizer(line.toString(),",");
                        int[][] paarid = {{1,0},{2,3},{3,6},{4,1},{5,9},{6,12},{7,15},{8,11},{9,17},{10,16},{11,8},{12,14},{13,13},
                                  {14,5},{15,2},{16,7},{17,4},{17,10},{19,19},{20,20},{21,18},{22,22},{23,21},{24,23}};
                        if (ts < 25 && ts > 0){
                             int slot = paarid[ts-1][1];
                                  stats.ranks[slot] = Integer.parseInt(tokenize.nextToken());
                                  int yo = Integer.parseInt(tokenize.nextToken());
                                  stats.levels[slot] =yo;
                                  stats.experience[slot] = Integer.parseInt(tokenize.nextToken());                         
                        ts++;
                   for (int i = 0; i < skills.length;i++){
                        String text = ""+stats.levels[i];//testings[i];//
                        skills[i].setText(text);
              }catch(IOException e){
                   box.setText("Insert a username \nfirst!");
         public String getNextXp(int level, int currxp){
              String nextXp;
              if (level > 98){
                   nextXp = "N/A";
              }else{
                   nextXp = ""+(differences[level] - currxp);
              return nextXp;
         public void actionPerformed(ActionEvent evt){
                   String newuser = username.getText().toString();
                   name = newuser;
                   String address = "http://hiscore.runescape.com/index_lite.ws?player="+name;
                   try{
                        page = new URL(address);               
                        getStats(page);
                   }catch(MalformedURLException e){
                        box.setText("Insert a username");
                   repaint();
         public void mouseEntered(MouseEvent e) {
              //if (experience[].isEmpty()){          
                   Object s = e.getSource();
                   for (int i = 0; i < skills.length;i++){
                        if (s == skills[i]){
                             box.setText("Rank: " + stats.ranks[i] + "\nExperience: " + stats.experience[i] + "\nExp until next: " + getNextXp(stats.levels[i],stats.experience[i]));
         public void mouseExited(MouseEvent e) {
    box.setText("");
         public void mouseClicked(MouseEvent e) {
         public void mousePressed(MouseEvent e) {
         public void mouseReleased(MouseEvent e) {
    This is just a little project i thought i'd make for learning.
    But can anyone help me make a working jar or an exe file?
    The Jar i created does nothing, no error or anything.
    Thanks for Help.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    How should i run the jar file then? I am double clicking it yes.
    EDIT: i ran the program through command line and i got an error:
    Exception in thread "main" java.lang.NullPointerException
    at javax.swing.ImageIcon.<init>(Unknown Source)
    at PageFrame.<init>(PageFrame.java:41)
    at Main.main(Main.java:4)OK - so it looks like you've found a command line!
    You read these stack traces from the top down. Often the most interesting line is the first line that refers to your code. In this case line 41 of PageFrame.java which, I guess is this:
    ImageIcon icon = new ImageIcon(PageFrame.class.getResource(
            "images/skillimages/" + skillnames[i] + ".gif"));The ImageIcon constructor is grumbling about being told to construct an icon from a null resource. getResource() will return null if it cannot find the resource that you specify.
    The first thing to do is check that the .gif image is where it should be. You have specified it as "images/skillimages/etc" so use the command line to view the contents of the .jar file (or maybe Eclipse will let you do this). Next to PageFrame.class there should be a folder "images" and within it a folder "skillimages" and within that the image file. If not then your jar export has been seen up wrongly and is not including the required resource files.
    (The "View" command is explained here: [http://java.sun.com/docs/books/tutorial/deployment/jar/view.html].)
    Next check the case of the file names. On Windows getResource() will not worry about the cAsE of filenames so the resources will be located fine when running the program unjarred (including within Eclipse). But it does worry about the case of jar entry names. Bottom line: keep the file names all lower case because you use them that way in the code.
    Finally, in case it is a particular image resource that's causing the problem you could add some code to print out its name just before you try and create the icon.
    for (int i = 0; i < skills.length;i++){
        System.out.println(
                "About to make icon from " + "images/skillimages/" + skillnames[i] + ".gif");
        ImageIcon icon = new ImageIcon(PageFrame.class.getResource(
                "images/skillimages/" + skillnames[i] + ".gif"));
        skills[i] = new JLabel("00",icon,JLabel.CENTER);
    }

  • Help needed getting Zen Micro to work on new

    Hi there, I am having a tough time getting my new PC to interact with my Zen Micro
    I have installed all the required software, I have done all the updates (or at least I think I have)
    I have upgraded my firmware to ver. ..0 and yet i still have the problem.
    The organiser seems to see the files in the player, but it cannot transfer them to the PC (or the PC to the Player). I cannot seem to access the player while it is connected either.
    So in short, I cannot transfer any of my music to my PC (4Gb worth).
    I have sent support requests, and I got an auto response to upgrade all the software versions, and the firmware, which I did. I have gone through the auto-detection process on the Creative site, and it recognises my player, and its newly updated firmware version, and only gives me recommended update options, nothing essential, or critical.
    So I'm pretty much stuck. also, how do i know that firmware ver. ..0 is the most updated for my product, as the support mail seems to talk about ver. 2.xx.xx which I'm nervous to start downloading as my player is now over a year old, and i fear that it may not support the newest technologies.
    Any help would be greatyl appreciated
    Thanks in advance
    Sparky
    P.S. I am still running my old family PC (Windows 98, with all the creative software original purchase versions running), and when I connect my Zen to this machine it works fine, so I guess that means that the files are not corrupted thankfully

    For the Zen Xtra right?
    I went to and chose MP3 Players > Zen (Hard Disk Dri've/MicroDri've) > Zen Xtra, then <EM>Get Files</EM>.
    The driver was listed there, but you want to download:
    Jukebox Driver version .26.02</LI>
    Creative MediaSource Software Update version 2.03.29</LI>
    NOMAD JukeBox Type 2 Version .0.03 (English) Web Release</LI>
    Creative NOMAD Explorer (Version 3.0.0) (if you want to use Nomad Explorer)</LI>
    You then want to:
    install the driver</LI>
    turn the Xtra on and connect to the PC and let the driver install (should be automatic)</LI>
    with the Zen still connected to the PC install MediaSource (it needs a Creative product present to validate the install)</LI>
    install the Nomad Jukebox Type 2 version (this is required to get MediaSoruce to work with the player)</LI>
    If you want, install Nomad Explorer</LI>
    That's all you should need to do.

  • Contact page not working, please help

    Hi,
    I have a problem with my contact page,when I fill in the fileds,and click on SEND, the information is supposed to clear from the fields, and send to the specific email address,
    BUT
    what happens is the fields dont clear and nothing sends,
    I am hosting with spry.com, they support php, but for some reason they tried to say they cant do it for spam reasons??? I have given the read,write permissions  as per image
    <?php
    $sendTo = "[email protected]";
    $subject = "Enquiry from Your Website";
    $headers = "From: " . $_POST["name"] . "<" . $_POST["email"] .">\r\n";
    $headers .= "Reply-To: " . $_POST["email"] . "\r\n";
    $headers .= "Return-path: " . $_POST["email"];
    $message = "Company: " . $_POST["message"] . "\r\n" . "Subject: " . $_POST["message2"]. "\r\n" . "Message: " . $_POST["message3"];
    mail($sendTo, $subject, $message, $headers);
    ?>
    if i cant use this php code, is there any other way to use my flash contact page to send enquiries ?????
    any ideas would be highly appreciated,

    I dont have the button opened for editing, I was only looking for any other places where code might be,forget about the button being open,this is the right place where the code is, I've tried everything,
    Im getting to the point now where i dont think there is much i can do to get it working,
    As I described it my original post, I am with SPRY as my hosting,
    They have mentioned something about SPAM AND NOT ALLOWING php OR something,
    Besides using PHp for my contact page , is there any other way i can try the contact form but using some other way to parse my form????
    Thanks

  • Indie Musician Needs Help Integrating ASP Contact Page Into iWeb

    Hello Fellow Mac Users. (I just switched from PC to the iMac last month and I am SO happy with it!) The iWeb program is great! I had originally planned to hire someone to create my new music site, but I think what I've figured out how to do in iWeb will work for the time being.
    One problem... I want to use a legit contact page (my friend helped design this one for me) which is actually an ASP page. (www.aldenmusic.com/contact.asp) Does anyone know how I can replace my current contact page with the .asp one? I am hosting on another server (Crystaltech) rather than on .mac, if that matters.
    I was thinking maybe there is a way to go in and replace the HTML code manually on each page or maybe there is some way to trick iWeb into accepting the .ASP page? I have no idea how this stuff works.
    Here is my current site:
    www.aldenmusic.com
    Any help would be much appreciated!
    Thanks in advance for your help!
    Nichole ALDEN

    I don't think there is any way you can integrate an .asp page into an iWeb site other than by creating a hyperlink to it.

  • Contact Page not working

    Hi can any one help me please, I have down loaded a contact page,I built on the net, I have done everything they said, the instructions said if I had my own page that I was to put it in, then I needed to put this Line in my markup    <iframe src="contactform_medium.php" width="480" height-"1500" frameborder="0">  so I did, in Design view it had no effect in live view every thing below it disappeared, and in the box directly above live view it says, Live view cannot display non-html files like pdf, doc, or ppt.

    <iframe src="contactform_medium.php" width="480" height="1500" frameborder="0"> </iframe>
    Note code changes above in RED. 
    PHP files are parsed by servers.  To test, upload page to your web server. 
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com/

  • Help needed - Captivate 7 Audio not working in Safari/Chrome in html5

    I think I am going slightly mad. For the life of me I can not get the audio to work in either Chrome or Safari (both versions are up to date) on an ipad and android tablet.
    I have created a 1 slide project which just consists of a blank slide plus an audio mp3 file I have imported to the slide.  I have turned off all the button click sounds and not scaled the html.
    I then publish to html5, uplaod it to my LMS and try and view it.  Works fine in IE on a desktop. But when I try and view it in Chrome and Safari there's no audio. In Chrome it seems to default to mute, so I unmute it but still nothing,  In Safari the mute button is not even there, even through it is enabled in the skin.
    Anyone have any ideas as it's driving me mad?  Unfortunate thing is I downloaded Articulate storyline and after 10 mins I had uploaded a html 5 zip file and it working great on the ipad, with audio.

    Hi
    Sorry to hear that you are having trouble with audio in Captivate's HTML5 output.
    What LMS are you using? There are certain LMS that are known to have problem serving HTML5 content. Also, the content server inside the LMS can choose to send different responses based on the client being a desktop device or a mobile device.
    What is the IOS version in the iPad? IOS6 is preferrable.
    Can you please try the following?
    1. Instead of hosting the output in an LMS, try hosting the content in a local web server running on your machine. Mongoose is a quick and free option to try out (https://mongoose.googlecode.com/files/mongoose-tiny-4.1.exe) and then try accessing the same from iPad
    2. If that works, then we can start suspecting the LMS that you are using. If it still does not work, you can connect the iPad to a Mac machine's USB port. Launch Safari on the Mac machine. Make sure that the option to "Show Developer Menu" is turned on in Safari's preferences. From the develop menu, select the menu specific to the iPad device and webpage. You may have to open and close the develop menu in case your iPad is not listed in the menu. Once you select the iPad+page menu, a web-inspector window is opened. Open the console messages if not already open. Refresh the webpage in the iPad. Look at the console output messages in the web-inspector. Any errors or warnings encountered will be printed there. For example, network error messages might hint that the http request for the mp3 file was rejected by the server for some reason.
    3. If there are no messages in the console, audio does not play when published output is hosted in local webserver, then please share the published output. We can investigate why it does not work.
    Cheers
    Siva

  • Help needed- Reg: Display page number in SQL Reports

    Hi,
    I need to display page number in " page no: X of Y " format where X is current page & Y is total number of pages. Now I am able to display only the current page using ' sql.pno '. but not able to display in ' X of Y ' format.
    Any inputs in this regard will be helpful.
    Thanks & Regards,
    Anilkumar.

    Hello Anil,
    If you have the above requirement for Oracle Reports then follow the steps:
    1.In the Paper Layout view or Paper Design view, choose InsertPage Number.
    2. In the Insert Page Number dialog box, choose from the list the location for the page number.
    3.Click the desired page number format: Page Number Only or Page Number and Total Pages.
    Cheers,
    Suresh

  • Actionscript help needed with getting Next Page to work

    I just have a simple question (hopefully).
    Question is:
    I have a web page that displays a flash file that zooms and
    pans, but I cant get the Next Page link to display. (will also want
    1st, last and previous page)
    1. Can the next page work and load the next or previous
    numbered file?
    2. Does it have to have all pages in one file, then it calls
    the next frame?
    Snippet below, or I can e-mail example files.
    Please help, Thank you, Mike
    ============SNIPPET==========
    <!--[if IE]>
    <object id="movie" type="application/x-shockwave-flash"
    width="300" height="500">
    <param name="movie" value="1.swf">
    </object>
    <![endif]--><!--[if !IE]> <-->
    <embed name="movie" type="application/x-shockwave-flash"
    src="1.swf" width="300" height="500">
    </embed>
    <!--> <![endif]-->
    <form name="f" onsubmit="return false;">
    <button name="button" onclick="next()">Next
    Page</button>
    <button onclick="zoom()">Zoom In</button>
    <button onclick="zoom2()">Zoom Out</button>
    <button onclick="pan()">Pan</button>
    <button onclick="setzoomrect()">Rect</button>
    </form>
    function next() {
    var flash = window.movie || document.movie; // Get Flash
    object.
    flash.Zoom(50);

    Use the same method you are currently using. The Zoom and Pan
    methods just happen to be exposed to the ActiveX control and
    Plug-in. So to use the the GotoFrame() method for example, just
    change your code from:
    function next() {
    var flash = window.movie || document.movie; // Get Flash
    object.
    flash.nextpage();
    To this:
    function next() {
    var flash = window.movie || document.movie; // Get Flash
    object.
    flash.GotoFrame(20); // This will jump to frame 19 of your
    main timeline.
    It goes to frame 19 because the method you are using is
    zero-based. Meaning to get to the first frame of your movie you
    would pass the number zero.
    To use the TCallLabel() method it would look like this:
    function next() {
    var flash = window.movie || document.movie; // Get Flash
    object.
    // to target the main timeline, use
    flash.TCallLabel("/", "labelName");
    // to target a movieclip on the main timeline use:
    flash.TCallLabel("/MovieClip", "lableName");
    Also, just so you know. These methods are getting antiquated.
    To keep up with the current versions and methods of communicating
    between JS and Flash you should really look into the
    ExternalInterface class in Flash 8.
    Tim

  • Please, I need some help! my contact form stopped working

    My client called to tell me the form on her site (or at least the "submit" stopped working. I'm too new at this to figure it out.
    here's the link:
    http://www.hickersonbrothers.com/Contact_Us/contact_hickerson_brothers_electric.php
    Does anyone know what I need to do? Thank you in advance.
    jeff

    Thank you for taking the time to re-write the code so it'll work. That's over and above all expectations for help.
    But before I replace the old code with your new code, I just wanted to know if it's an exact replacement for the excerpt I pasted above or does it somehow fit within the whole page of code?
    Here's the whole page:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>hickerson_brothers_contact_us</title>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <META NAME="keywords" CONTENT="Electrical Service, Northern Virginia, VA, Residential Service, Affordable, Fully Trained Professionals, Electric, Service, Electrical, Commercial Service, Residential, Commercial">
    <META NAME="description" CONTENT="Hickerson Brothers Electric Service is a family owned and operated business whose members have serviced the Northern Virginia area for over 30 years.We believe in making our customer’s comfort our number one priority. 100% satisfaction guarenteed.">
    <style type="text/css">
    <!--
    body,td,th {
    font-family: Times New Roman, Times, serif;
    font-size: medium;
    color: #000011;
    #apDiv1 {
    position:absolute;
    width:202px;
    height:125px;
    z-index:1;
    left: 13px;
    top: 33px;
    #apDiv2 {
    position:absolute;
    width:210px;
    height:125px;
    z-index:1;
    left: 14px;
    top: 19px;
    #apDiv3 {
    position:absolute;
    width:258px;
    height:222px;
    z-index:2;
    left: 11px;
    top: 152px;
    #apDiv5 {
    position:absolute;
    width:231px;
    height:88px;
    z-index:3;
    left: 656px;
    top: 38px;
    #apDiv4 {
    position:absolute;
    width:181px;
    height:122px;
    z-index:1;
    left: 51px;
    top: 381px;
    #apDiv6 {
    position:absolute;
    width:496px;
    height:312px;
    z-index:1;
    left: 336px;
    top: 452px;
    .style2 {font-size: 14px;
    font-weight: bold;
    #apDiv10 {
    position:absolute;
    width:534px;
    height:72px;
    z-index:7;
    left: 316px;
    top: 698px;
    #apDiv {
    position:absolute;
    width:601px;
    height:72px;
    z-index:7;
    left: 287px;
    top: 386px;
    #apDiv13 {
    position:absolute;
    width:235px;
    height:191px;
    z-index:10;
    left: 272px;
    top: 170px;
    #apDiv7 { position:absolute;
    width:271px;
    height:212px;
    z-index:2;
    left: 14px;
    top: 152px;
    #apDiv8 {
    position:absolute;
    width:527px;
    height:334px;
    z-index:0;
    left: 273px;
    top: 367px;
    background-color: #EEEEEE;
    #apDiv9 {
    position:absolute;
    width:630px;
    height:332px;
    z-index:0;
    left: 272px;
    background-color: #DDDDDD;
    top: 368px;
    #apDiv11 {
    position:absolute;
    width:200px;
    height:115px;
    z-index:11;
    left: 13px;
    top: 506px;
    #apDiv21 {
    position:absolute;
    width:236px;
    height:98px;
    z-index:13;
    left: 27px;
    top: 697px;
    #apDiv18 {
    position:absolute;
    width:298px;
    height:34px;
    z-index:12;
    left: 651px;
    top: 113px;
    -->
    </style>
    <script type="text/javascript">
    <!--
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_nbGroup(event, grpName) { //v6.0
      var i,img,nbArr,args=MM_nbGroup.arguments;
      if (event == "init" && args.length > 2) {
        if ((img = MM_findObj(args[2])) != null && !img.MM_init) {
          img.MM_init = true; img.MM_up = args[3]; img.MM_dn = img.src;
          if ((nbArr = document[grpName]) == null) nbArr = document[grpName] = new Array();
          nbArr[nbArr.length] = img;
          for (i=4; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
            if (!img.MM_up) img.MM_up = img.src;
            img.src = img.MM_dn = args[i+1];
            nbArr[nbArr.length] = img;
      } else if (event == "over") {
        document.MM_nbOver = nbArr = new Array();
        for (i=1; i < args.length-1; i+=3) if ((img = MM_findObj(args[i])) != null) {
          if (!img.MM_up) img.MM_up = img.src;
          img.src = (img.MM_dn && args[i+2]) ? args[i+2] : ((args[i+1])? args[i+1] : img.MM_up);
          nbArr[nbArr.length] = img;
      } else if (event == "out" ) {
        for (i=0; i < document.MM_nbOver.length; i++) {
          img = document.MM_nbOver[i]; img.src = (img.MM_dn) ? img.MM_dn : img.MM_up; }
      } else if (event == "down") {
        nbArr = document[grpName];
        if (nbArr)
          for (i=0; i < nbArr.length; i++) { img=nbArr[i]; img.src = img.MM_up; img.MM_dn = 0; }
        document[grpName] = nbArr = new Array();
        for (i=2; i < args.length-1; i+=2) if ((img = MM_findObj(args[i])) != null) {
          if (!img.MM_up) img.MM_up = img.src;
          img.src = img.MM_dn = (args[i+1])? args[i+1] : img.MM_up;
          nbArr[nbArr.length] = img;
    //-->
    </script>
    </head>
    <body onload="MM_preloadImages('../Assets/Navigation/contactus_up.gif','../Assets/Navigation/pl uggedin_up.gif','../Assets/Navigation/aboutus_down.gif','../Assets/Navigation/aboutus_over .gif','../Assets/Navigation/aboutus_overdown.gif','../Assets/Navigation/residentialservice _down.gif','../Assets/Navigation/commercialservice_down.gif','../Assets/Navigation/commerc ialservice_over.gif','../Assets/Navigation/testimonials_overdown.gif','../Assets/Navigatio n/pluggedin_down.gif','../Assets/Navigation/pluggedin_over.gif','../Assets/Navigation/plug gedin_overdown.gif','../Assets/Navigation/contactus_over.gif','../Assets/Navigation/contac tus_overdown.gif','../Assets/Navigation/commercialservice_overdown.gif','../Assets/Navigat ion/testimonials_down.gif','../Assets/Navigation/testimonials_over.gif','../Assets/Navigat ion/residentialservice_over.gif','../Assets/Navigation/residentialservice_overdown.gif')">
    <table width="892" height="571" cellpadding="0" cellspacing="0">
    </table>
    <table width="892" height="669" cellpadding="0" cellspacing="0">
      <caption align="left"> 
      </caption>
      <tr>
        <th width="890" height="667" scope="row"><div id="apDiv13"><img src="../Assets/Photography/E_phone.jpg" alt="Call Eileen Hickerson Now" title="Call Eileen Hickerson Now" width="255" height="193" /></div>
          <div id="apDiv3"><br />
            <a href="/About_us/about_us.html" target="_top" onclick="MM_nbGroup('down','group1','Aboutus','../Assets/Navigation/aboutus_down.gif',1)" onmouseover="MM_nbGroup('over','Aboutus','../Assets/Navigation/aboutus_over.gif','../Asse ts/Navigation/aboutus_overdown.gif',1)" onmouseout="MM_nbGroup('out')"><img src="../Assets/Navigation/aboutus_up.gif" alt="About Hickerson Brothers Electric" title="About Hickerson Brothers Electric" name="Aboutus" width="250" height="30" border="1" id="Aboutus" onload="" /></a><br />
              <a href="../Residential_service/residential_service.html" target="_top" onclick="MM_nbGroup('down','group1','Residential','../Assets/Navigation/residentialservic e_down.gif',1)" onmouseover="MM_nbGroup('over','Residential','../Assets/Navigation/residentialservice_ove r.gif','../Assets/Navigation/residentialservice_overdown.gif',1)" onmouseout="MM_nbGroup('out')"><img src="../Assets/Navigation/residentialservice_up.gif" alt="Hickerson Brothers Electric Residental" title="Hickerson Brothers Electric Residental" name="Residential" width="250" height="30" border="1" id="Residential" onload="" /></a><br />
              <a href="../Commercial_service/commercial_service.html" target="_top" onclick="MM_nbGroup('down','group1','Commercial','../Assets/Navigation/commercialservice_ down.gif',1)" onmouseover="MM_nbGroup('over','Commercial','../Assets/Navigation/commercialservice_over. gif','../Assets/Navigation/commercialservice_overdown.gif',1)" onmouseout="MM_nbGroup('out')"><img src="../Assets/Navigation/commercialservice_up.gif" alt="Hickerson Brothers Electric Commercial" title="Hickerson Brothers Electric Commercial" name="Commercial" width="250" height="30" border="1" id="Commercial" onload="" /></a><br />
              <a href="../Testimonials/testimonials.html" target="_top" onclick="MM_nbGroup('down','group1','Testimonials','../Assets/Navigation/testimonials_dow n.gif',1)" onmouseover="MM_nbGroup('over','Testimonials','../Assets/Navigation/testimonials_over.gif ','../Assets/Navigation/testimonials_overdown.gif',1)" onmouseout="MM_nbGroup('out')"><img src="../Assets/Navigation/testimonials_up.gif" alt="Hickerson Brothers Electric Reputation" title="Hickerson Brothers Electric Reputation" name="Testimonials" border="1" id="Testimonials" onload="" /></a><br />
              <a href="../Plugged_in/plugged_in.html" target="_top" onclick="MM_nbGroup('down','group1','Pluggedin','../Assets/Navigation/pluggedin_down.gif' ,1)" onmouseover="MM_nbGroup('over','Pluggedin','../Assets/Navigation/pluggedin_over.gif','../ Assets/Navigation/pluggedin_overdown.gif',1)" onmouseout="MM_nbGroup('out')"><img src="../Assets/Navigation/pluggedin_up.gif" alt="Green electricity Plus" title="Green Electricity Plus" name="Pluggedin" width="250" height="30" border="1" id="Pluggedin" onload="" /></a><br />
    <a href="/Contact_Us/contact_hickerson_brothers_electric.php" target="_top" onclick="MM_nbGroup('down','group1','Contactus','../Assets/Navigation/contactus_down.gif' ,1)" onmouseover="MM_nbGroup('over','Contactus','../Assets/Navigation/contactus_over.gif','../ Assets/Navigation/contactus_overdown.gif',1)" onmouseout="MM_nbGroup('out')"><img src="../Assets/Navigation/contactus_down.gif" alt="Contact Hickerson Brothers Electric" title="Contact Hickerson Brothers Electric" name="Contactus" border="1" id="Contactus" onload="MM_nbGroup('init','group1','Contactus','../Assets/Navigation/contactus_up.gif',1) " /></a><br />
              <br />
              <br />
              <br />
              <br />
          </div>
          <br /></th>
      </tr>
    </table>
    <div id="apDiv18">
      <div align="center">24 Hour Emergency Service</div>
    </div>
    <div id="apDiv11"><img src="../Assets/Photography/lady_on_phone.jpg" alt="Hickerson Brothers trusted service for over 30 years" title="Hickerson Brothers trusted service for over 30 years" width="254" height="193" /></div>
    <div id="apDiv9"></div>
    <div id="apDiv6">
    <?php
    $to = "[email protected]";
    $subject = "Online Request for Electrical Problem";
    // This is displayed when the email has been sent
    $thankyou_message = "<br>
    <b>THANK YOU $CustomerName!</b><br><br>
    We'll contact you soon.
    <p> </p>";
    $from_email = "$EmailAddress";
    $message = "Customer Name: $CustomerName\n
    Email Address: $EmailAddress\n
    Primary Phone#: $Primary\n
    Secondary Phone#: $Secondary\n
    Problem: $Problem\n";
    if (!isset($_POST['CustomerName'])) {
    ?>
      <form id="form1" name="form1" method="post" action="<?php echo $PHP_SELF;?>">
        <table width="0" cellspacing="0" cellpadding="0">
          <tr>
            <td><label for="CustomerName">Customer Name:</label></td>
            <td><label for="CustomerName"></label>
                <input type="text" name="CustomerName" id="CustomerName" /></td>
          </tr>
          <tr>
            <td><label for="EmailAddress">Email Address:</label></td>
            <td><label for="EmailAddress"></label>
                <input type="text" name="EmailAddress" id="EmailAddress" /></td>
          </tr>
          <tr>
            <td><Primary>Primary Phone#</primary></td>
            <td><label for="Primary"></label>
                <input type="text" name="Primary" id="Primary" /></td>
          </tr>
          <tr>
            <td><label for="Secondary">Secondary Phone#</label></td>
            <td><label for="Secondary"></label>
                <input type="text" name="Secondary" id="Secondary" /></td>
          </tr>
          <tr>
            <td><label for="Problem">
              <Problem>Electrical Problem:</problem>
            </label></td>
            <td><label for="Problem"></label>
                <textarea name="Problem" id="Problem" cols="45" rows="5"></textarea>
                <label for="Problem"></label>
            </td>
          </tr>
          <tr>
            <td> </td>
            <td><input type="submit" name="reset" id="reset" value="Clear Form" /> <input type="submit" name="Submit" id="Submit" value="Submit" /></td>
          </tr>
          <tr>
            <td> </td>
            <td> </td>
          </tr>
          <tr>
            <td> </td>
            <td> </td>
          </tr>
          <tr>
            <td> </td>
            <td> </td>
          </tr>
          <tr>
            <td height="16"> </td>
            <td> </td>
          </tr>
        </table>
        <br />
        <br />
        <br />
        <br />
        <br />
      </form>
    <?php
    else {
        mail("$to", "$subject", "$message", "From:$EmailAddress\r\nReply-to:$EmailAddress");
    // Display the thankyou message
        echo $thankyou_message;
    ?>
    </div>
    <div id="apDiv4"><img src="../Assets/Logos/Slogan.jpg" alt="familytag" width="171" height="116" /></div>
    <div class="style2" id="apDiv">Drop us a line and describe what electrical problem you're having. If you're experiencing an emergency, please don't hesitate to call us immediately at: (703) 594-3913. Our phones are answered 24/7. Thank you. And sorry for the inconvenience.</div>
    <div class="style2" id="apDiv10">
      <p align="center">If you're experiencing an emergency, please don't hesitate to call us immediately at: (703) 594-3913. Our phones are answered 24/7. Thank you.</p>
    </div>
    <div id="apDiv2">
      <div id="apDiv5">
        <h1 align="right">(703) 594-3913</h1>
      </div>
    <a href="../index.html"><img src="../Assets/Logos/Hickerson_bros_hr.jpg" alt="Hickerson Brothers Electric Service" title="Hickerson Brothers Electric Service" width="213" height="126" /></a></div>
    </body>
    </html>
    Thank's for not giving up on me. I will look into a more secure form after this fix - good idea.
    jeff

  • Urgent help needed... Survey works - how do I get email to display correctly?

    I have a survey and the results are emailed to me, how do I format email to hard return answers in correct order?  Getting ready to send out to our subscribers and I need help fast, thanks. Including links of survey and email direction page.
    http://www.thedogpress.com/SURVEY/7-Puppy-Evaluation-2011a.asp and mail code http://www.thedogpress.com/SURVEY/7-Puppy-Evaluation.asp

    I think I figured it out. I downloaded all the email in my wife's hotmail account(500) to the iphone and then deleted 350 of the emails on the iphone. then I set the iphone to look for the 200 most recent messages. When I did this the iphone updates all the new emails and the old ones that I deleted on the iphone are still in hotmail.
    Mike

  • Help needed getting a USB to serial adaptor to work

    I have a new Mac Mini  but an not getting my serial adaptors to be seen by the OS  (10.7)
    Any ideas please

    Here’s a way to get you PL2303-based Serial-USB adapter working with OS X Lion (10.7). Based on the osx-pl2303 project on github, I’ve built a kernel extension that works with OS X Lion. You can grab the kext file here or from the link below.
    Installing the kext file can be done in a few easy steps:
    download and extract
    cd /path/to/osx-pl2303.kext
    cp -R osx-pl2303.kext /System/Library/Extensions/
    next you need to fix permissions and execute bits:
    cd /System/Library/Extensions
    chmod -R 755 osx-pl2303.kext
    chown -R root:wheel osx-pl2303.kext
    cd /System/Library/Extensions
    kextload ./osx-pl2303.kext
    kextcache -system-cache
    Good luck!

  • Need helps with getting ODI CDC to work

    Hi, I'm new to ODI. I'm trying to get the ODI CDC to work and for now I'm only interested in seeing that the changes are captured correctly.
    I've set the d/b to archivelog mode and granted all the rights I can think of to the d/b user. I've defined the CDC in Consistent Mode for the model, defined the CDC for my tables, started the journal, etc.
    When I right-click on the table and do Change Data Capture/Journal Data... I get ORA-00904 Table or View not found (stack trace below)
    What is missing? Thanks for your assistance.
    See com.borland.dx.dataset.DataSetException error code: BASE+62
    com.borland.dx.dataset.DataSetException: Execution of query failed.
         at com.borland.dx.dataset.DataSetException.a(Unknown Source)
         at com.borland.dx.dataset.DataSetException.queryFailed(Unknown Source)
         at com.borland.dx.sql.dataset.QueryProvider.a(Unknown Source)
         at com.borland.dx.sql.dataset.JdbcProvider.provideData(Unknown Source)
         at com.borland.dx.dataset.StorageDataSet.refresh(Unknown Source)
         at com.borland.dx.sql.dataset.QueryDataSet.refresh(Unknown Source)
         at com.sunopsis.graphical.frame.a.jb.dj(jb.java)
         at com.sunopsis.graphical.frame.a.jb.<init>(jb.java)
         at com.sunopsis.graphical.frame.a.jd.<init>(jd.java)
         at com.sunopsis.graphical.frame.a.je.<init>(je.java)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
         at java.lang.reflect.Constructor.newInstance(Unknown Source)
         at com.sunopsis.graphical.frame.bb.b(bb.java)
         at com.sunopsis.graphical.tools.utils.swingworker.v.call(v.java)
         at edu.emory.mathcs.backport.java.util.concurrent.FutureTask.run(FutureTask.java:176)
         at com.sunopsis.graphical.tools.utils.swingworker.l.run(l.java)
         at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:665)
         at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:690)
         at java.lang.Thread.run(Unknown Source)
    Chained exception:
    java.sql.SQLException: ORA-00942: table or view does not exist
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:125)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:316)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:282)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:639)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:185)
         at oracle.jdbc.driver.T4CPreparedStatement.execute_for_describe(T4CPreparedStatement.java:503)
         at oracle.jdbc.driver.OracleStatement.execute_maybe_describe(OracleStatement.java:965)
         at oracle.jdbc.driver.T4CPreparedStatement.execute_maybe_describe(T4CPreparedStatement.java:535)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1051)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:2984)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3026)
         at com.borland.dx.sql.dataset.o.f(Unknown Source)
         at com.borland.dx.sql.dataset.QueryProvider.e(Unknown Source)
         at com.borland.dx.sql.dataset.JdbcProvider.provideData(Unknown Source)
         at com.borland.dx.dataset.StorageDataSet.refresh(Unknown Source)
         at com.borland.dx.sql.dataset.QueryDataSet.refresh(Unknown Source)
         at com.sunopsis.graphical.frame.a.jb.dj(jb.java)
         at com.sunopsis.graphical.frame.a.jb.<init>(jb.java)
         at com.sunopsis.graphical.frame.a.jd.<init>(jd.java)
         at com.sunopsis.graphical.frame.a.je.<init>(je.java)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
         at java.lang.reflect.Constructor.newInstance(Unknown Source)
         at com.sunopsis.graphical.frame.bb.b(bb.java)
         at com.sunopsis.graphical.tools.utils.swingworker.v.call(v.java)
         at edu.emory.mathcs.backport.java.util.concurrent.FutureTask.run(FutureTask.java:176)
         at com.sunopsis.graphical.tools.utils.swingworker.l.run(l.java)
         at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:665)
         at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:690)
         at java.lang.Thread.run(Unknown Source)
    java.sql.SQLException: ORA-00942: table or view does not exist
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:125)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:316)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:282)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:639)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:185)
         at oracle.jdbc.driver.T4CPreparedStatement.execute_for_describe(T4CPreparedStatement.java:503)
         at oracle.jdbc.driver.OracleStatement.execute_maybe_describe(OracleStatement.java:965)
         at oracle.jdbc.driver.T4CPreparedStatement.execute_maybe_describe(T4CPreparedStatement.java:535)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1051)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:2984)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3026)
         at com.borland.dx.sql.dataset.o.f(Unknown Source)
         at com.borland.dx.sql.dataset.QueryProvider.e(Unknown Source)
         at com.borland.dx.sql.dataset.JdbcProvider.provideData(Unknown Source)
         at com.borland.dx.dataset.StorageDataSet.refresh(Unknown Source)
         at com.borland.dx.sql.dataset.QueryDataSet.refresh(Unknown Source)
         at com.sunopsis.graphical.frame.a.jb.dj(jb.java)
         at com.sunopsis.graphical.frame.a.jb.<init>(jb.java)
         at com.sunopsis.graphical.frame.a.jd.<init>(jd.java)
         at com.sunopsis.graphical.frame.a.je.<init>(je.java)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknown Source)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Unknown Source)
         at java.lang.reflect.Constructor.newInstance(Unknown Source)
         at com.sunopsis.graphical.frame.bb.b(bb.java)
         at com.sunopsis.graphical.tools.utils.swingworker.v.call(v.java)
         at edu.emory.mathcs.backport.java.util.concurrent.FutureTask.run(FutureTask.java:176)
         at com.sunopsis.graphical.tools.utils.swingworker.l.run(l.java)
         at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:665)
         at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:690)
         at java.lang.Thread.run(Unknown Source)

    Update...
    I traced it to the Start Journal step issue. The Operator shows that step 8 - Journalizing - xxxx - Create Change Set, produces Oracle error ORA-00600. What does this means? The SQL that it tries to execute is:
    ==============================================
    BEGIN
         DBMS_CDC_PUBLISH.CREATE_CHANGE_SET(
         change_set_name     => 'TID_SOURCE',
         description     => 'Sunopsis change set for model : TID_SOURCE',
         change_source_name     => 'HOTLOG_SOURCE',
         begin_date     => sysdate
    END;
    ==============================================
    The strack trace is as follows:
    600 : 60000 : java.sql.SQLException: ORA-00600: internal error code, arguments: [kcbgcur_9], [8388665], [23], [25165824], [8388608], [], [], []
    ORA-06512: at "SYS.DBMS_CAPTURE_ADM_INTERNAL", line 121
    ORA-06512: at line 1
    ORA-06512: at "SYS.DBMS_CDC_PUBLISH", line 560
    ORA-06512: at line 1
    java.sql.SQLException: ORA-00600: internal error code, arguments: [kcbgcur_9], [8388665], [23], [25165824], [8388608], [], [], []
    ORA-06512: at "SYS.DBMS_CAPTURE_ADM_INTERNAL", line 121
    ORA-06512: at line 1
    ORA-06512: at "SYS.DBMS_CDC_PUBLISH", line 560
    ORA-06512: at line 1
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:125)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:316)
         at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:282)
         at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:639)
         at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:185)
         at oracle.jdbc.driver.T4CPreparedStatement.execute_for_rows(T4CPreparedStatement.java:633)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1086)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:2984)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:3057)
         at com.sunopsis.sql.SnpsQuery.executeUpdate(SnpsQuery.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.execStdOrders(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTaskTrt(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSqlC.treatTaskTrt(SnpSessTaskSqlC.java)
         at com.sunopsis.dwg.dbobj.SnpSessTaskSql.treatTask(SnpSessTaskSql.java)
         at com.sunopsis.dwg.dbobj.SnpSessStep.treatSessStep(SnpSessStep.java)
         at com.sunopsis.dwg.dbobj.SnpSession.treatSession(SnpSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandSession.treatCommand(DwgCommandSession.java)
         at com.sunopsis.dwg.cmd.DwgCommandBase.execute(DwgCommandBase.java)
         at com.sunopsis.dwg.cmd.e.i(e.java)
         at com.sunopsis.dwg.cmd.g.y(g.java)
         at com.sunopsis.dwg.cmd.e.run(e.java)
         at java.lang.Thread.run(Unknown Source)

  • I NEED HELP TO GET "TEXT TWIST" TO WORK with your Firefox thing.

    How do I get the game "Text Twist" to work with Mozilla Firefox?
    When I go to play "Text Twist" I get a message that says :
    'This game uses Active X controls or Java and can't be viewed in Firefox. Many games on the MSN Games site can be played using Firefox. To view a list of the top games you can play using Firefox, click here.'
    Why can't I access this game?

    Firefox doesn't do ActiveX.
    [https://support.mozilla.com/en-US/kb/ActiveX]

Maybe you are looking for

  • Return products in a diffrent country?

    Is it possible to buy something from an apple retail store in the US and then return it in a retail store in Canada or another country? If not is there another way to return it besides going back to te US (ex by mail). Thanks im advance for answers.

  • Value not visible in combo box

    Hi all, I have a control bar with 5 combo boxes. As the user set the value on a box the others are refined to include only those items that are relative to the user selection. All works well with one exception in one list the value is present bu not

  • Dutch Map from Photoshop to Flash

    Hello everyone, I encountered a problem. I made a map of holland in Photoshop and made a sepirate layer of each province (background is transparant). I load it in Flash and now I find out that the selection of each province is square....... meaning s

  • I believe in J2ME...but....

    I strongly believe in J2ME. I've read on the NTT Docomo site how J2ME is used in Japan (http://www.nttdocomo.com/html/imode04_1.html). Very interesting. I think J2ME could play an important role esp. when I look at the intention of all the companies

  • GR FOR CONSUMABLES

    Hi, For Consumables & Services, I have maintained valuation class against the material groups in Entry aid w/o material master. Also neccessary settings have been done in OBYC. For service i have maintained valuation class as blank & corresponding ac