HTML 5 Contact Form "Placeholder" instead of label makes form validation not work

Hi,
I am trying to implement a HTML 5 contact form which uses a "placeholder" within the field instead of a label. But now the form validation does not work.
The site is at http://www.partnerrealestate.ch/avenuedefrance23/index.html and it is not using any workflows from BC as the person receiving it is an external person and the process does not require a workflow.
Would appreciate any input into this.
Kindest Regards,
corina

There is no label on input fields. The form does not work because you have edited the names. BC needs the ID and names to be as it is issue when you create the form so it knows what to use for the validation and what information to pass into the database.
So where you have edited these, you need to restore those.
You have some invalid html on some input's as well one has input="" inside of it when rendered so that is not right.
It is not to do with placeholder use. So fix up your HTML errors, correct the name and ID changes and it will work fine.

Similar Messages

  • Why cant I add contacts on the iphone4? the mail contacts calendars button unders settings, the contacts button, the add a contacts button under message and the phone button will not work to add a contact.

    Why cant I add contacts on the iphone4? the mail contacts calendars button unders settings, the contacts button, the add a contacts button under message and the phone button will not work to add a contact.

    Have you attempted a restore?

  • HT204150 Following problem: I have around 600 contacts on my iphone and Ipad and would like to sync with contact list on my mac book air but its not working and whatever I do I get stuck on the 44 contacts I have on my mac  contact-list. Please Help!!!! 

    ollowing problem: I have around 600 contacts on my iphone and Ipad and would like to sync with contact list on my mac book air but its not working and whatever I do I get stuck on the 44 contacts I have on my mac  contact-list. Please Help!!!!  thanks

    First, be sure that the contacts on the devices are in the "icloud" section and not the "On my iPhone" (or iPad) section of the contact listings/groups.
    Missing contacts:
    Here's a test to perform - using a computer's browser, log into icloud.com and go to the Contacts page.  If most of them are gone, then they are gone. 
    If they show up, then the problem is that your device is not connecting to the Contacts database on icloud. 
    On the device, go to Settings>icloud.  Be sure icloud is on and using the right ID.  If not, scroll to the bottom of the page and tap Delete Account - this just disconnects the device from that account, no data is lost.  Then log back in using the correct ID.  ALSO - be sure the Contacts are turned on (on the same screen).
    Note:  Contacts are not part of an iCloud backup, since they are part of contacts database on iCloud's servers.   So performing a restore will not help.
    Contacts are gone from icloud.com.
    Then they have been deleted.  There are many reasons for this.  One possibility is that someone else is using the same iCloud account (family member, etc.) and they deleted contacts, thinking they did want them on THEIR device.  How to get them back?  Unfortunately, an iCloud backup does not include any of the sync databases, like contacts, notes, calendars, reminders, etc. because the data is already stored in these databases.  Your only hope for restoring the data is if you had that data on a computer (like a mac's Contacts, Calendars, etc.) and that data was backed up using whatever backup software you typically use (e.g. Time Machine on a mac).  Just restore the data files back to the computer.  Other than that, I'm afraid the data is gone.

  • Form function security (how to make form Updatable)

    Hi...friends...
    I have one standard oracle form. Data of that form is updatable in 11.5.7 instances...I can insert,update and delete.
    But, we had upgraded Apps to 11.5.10...so, now the same form data is not updatable..I can insert, but cant delete or update...
    So, is there any thing like form function security attached with that form or responsibilities in previous version... which are not in new 11.5.10 ??
    How can I make that form contents updatable through Sys. Admin. concept.
    (not through Form Builder Design)
    Thanks in advance....

    Thank you guys..
    actually, it was a bug with 11.5.7 oracle versions specific to one check box value.
    it was treating check box values as,
    i) checked then 'Y
    ii) Null then 'Null' ------- the problem was here...due to null, query was not fetching data and that form is having flag which understands only 'Y' or 'N'
    iii) not checked then 'N'
    anyway thanks to u all...

  • PHP email form with Validation - not working

    Hello;
    I am new to using php. I usually use coldfusion or asp but this site requires me to write in php. I have a form I am trying to get to work and right now.. it doesn't do anyhting but remember what you put in the fields. It doesn't want to send, and it won't execute the validation script for the fields that are required. Can anyone help me make this work? I'm confused and a definate newbie to PHP.
    Here is my code:
    <?php    
                  $PHP_SELF = $_SERVER['PHP_SELF'];   
                  $errName    = "";   
                  $errEmail    = "";
                  $errPhone    = "";        
                  if(isset($_POST['submit'])) {        
                          if($_POST["ac"]=="login"){            
                        $FORMOK = TRUE;    // $FORMOK acts as a flag. If you enter any of the conditionals below,                             // it gets set to FALSE, and the e-mail will not be sent.
                        // First Name           
                        if(preg_match("/^[a-zA-Z -]+$/", $_POST["name"]) === 0) {               
                            $errName = '<div class="errtext">Please enter you name.</div>';               
                            $FORMOK = FALSE;           
                        // Email           
                    if(preg_match("/^[a-zA-Z]\w+(\.\w+)*\@\w+(\.[0-9a-zA-Z]+)*\.[a-zA-Z]{2,4}$/", $_POST["email"]) === 0) {                                                    $errEmail = '<div class="errtext">Please enter a valid email.</div>';               
                            $FORMOK = FALSE;           
                        // Phone           
                        if(preg_match("/^[a-zA-Z -]+$/", $_POST["phone"]) === 0) {               
                            $errPhone = '<div class="errtext">Please enter your phone number.</div>';               
                            $FORMOK = FALSE;           
                        if($FORMOK) {               
                                $to = "[email protected]";  
                                $subject = "my. - Contact Form";                  
                                $name_field = $_POST['name'];               
                                $email_field = $_POST['email'];               
                                $phone_field = $_POST['phone'];
                                $city_field = $_POST['city'];
                                $state_field = $_POST['state'];               
                                $message = $_POST['comment'];                
                                $message = "               
                                Name: $name_field               
                                Email: $email_field
                                Phone: $phone_field   
                                City: $city_field   
                                State: $state_field               
                                Message: $message";                
                                $headers  = 'MIME-Version: 1.0' . "\r\n";               
                                $headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";                
                                // Additional headers               
                                $headers .= 'To: <[email protected]>' . "\r\n";               
                                $headers .= '[From] <$email_field>' . "\r\n";                
                                // Mail it               
                                mail($to, $subject, $message, $headers);                
                                header("Location: thankyou.php")
                                // I have no idea what these next 3 lines are for. You may just want to get rid of them.                   
    ini_set("sendmail_from","[Send from]");
    ini_set("SMTP","[mail server]");
    mail($to, $subject, $message, $headers);
                                } else {               
                                echo "Error!";              
                        ?>
    <form method="post" action="<?php $PHP_SELF ?>" id="commentForm">
    <input name="name" size="40" value="<?php echo $_POST["name"]; ?>" type="text">
                         <?php  if(isset($errName)) echo $errName; ?>
    <input name="email" size="40" value="<?php echo $_POST["email"]; ?>"  type="text">
            <?php  if(isset($errEmail)) echo $errEmail; ?>
    <input name="phone" size="40" value="<?php echo $_POST["phone"]; ?>" type="text" id="phone">
            <?php  if(isset($errPhone)) echo $errPhone; ?>
    <input name="city" size="40" value="<?php echo $_POST["city"]; ?>" type="text" id="city">
    <input name="state" size="40" value="<?php echo $_POST["state"]; ?>" type="text" id="state">
    <textarea name="comment" cols="30" rows="10" id="comment"><?php echo $_POST["comment"]; ?></textarea>
    <input type="submit" value="Submit" name="submit" class="contact-submit" />
    </form>
    It seems pretty simple.. but it's not working at all. I would also like this page to submit to it's self, and when it actually does send an email, to just make the form disappear and replace it with the thank you text instead of sending you to another page. I also do not need to use an smtp server, it goes directly to the network server when sent.
    I'm really sorry to ask all of this, I'm trying to learn this language and need to make this work.
    Thank you for anyones help in advance.

    .oO(BarryGBrown)
    > I have a php file which generates an email from a form
    in a website I have
    >designed. I just want to make some areas of the final
    generated email in bold
    >text. I know if people have plain text only selected in
    their email client they
    >won't see the bold text, but at least it will reach a
    certain percentage of
    >users.
    You can't do bold text in a normal email. Plain text is just
    that -
    plain text. For anything more you need HTML. _If_ you should
    need it.
    Usually plain text serves pretty well and is the most
    efficient way.
    > the line in question is -
    >
    > $body ="Booking request details from website:\n\n";
    >
    > I have tried putting  and ,
    syntax is used in some forum software, but besides that it
    has
    no meaning whatsoever.
    >inside the inverted commas, outside
    >etc, plus tried different declarations within the
    <head>, nothing works! What
    >am I doing wrong?
    You would have to create an entire HTML email with all the
    required
    headers and boundaries. Quite difficult to do by hand with
    PHP's mail()
    function.
    > I am a beginner with this php stuff, please be kind!
    Then you should start simple with plain text. There are some
    classes out
    there which make it easy to generate text and HTML emails
    (phpmailer for
    example), but you should be familiar with PHP coding if you
    want to use
    them.
    Micha

  • Has anyone been able to contact Adobe to learn why their Flash Player does not work on Mac OS 10.6.8, no matter how many updates you install?  This seems like a big error by Adobe.

    I have thee Mac computers with Mac OS 10.6.8, one of which is a Mac Pro.  No matter how many updates I install from Adobe, their Flash Player does not work on any of these 3 computers.  I don't know how to contact Adobe Systems about this problem, but I think it is their responsibility to make sure that their so-called "universal" software works proplerly on a relatively recent operating system like OS 10.6.8 that is still in widespread use.  When you install the updates, nothing happens -- not even an error message.  What is the point of a universal player that is not universal?  It works fine on my MacBook Pro with OS 9 Mavericks, but it does not work at all -- indeed, has never worked -- on my 3 Macs with OS 10.6.8.  Has anyone contacted Adobe Systems to find out why the Flash Player does not work with OS 10.6.8 and what they plan to do about it?

    Where are you getting Flash from?
    Get the appropriate dmg installer here and then run it.
    http://www.adobe.com/products/flashplayer/distribution3.html
    If it still won't install, do these two things: First uninstall any Flash by going into the second level Hard Drive Library>Internet Plug-ins, and trash the Flash Player.plugin and flashplayer.xpt. Then boot into Safe Boot, Shift at the startup chime (give it much longer than a usual boot) and run the installer while booted in Safe Boot.

  • HTML links in Vibe Feed and digest e-mails do not work on GW 8.0.3client

    I have GroupWise 8.0.3hp1 on NetWare 6.5.8 and a Vibe 3.3 install on
    SUSE 11 (the downloadable Vibe demo virtual machine from Novell's site).
    I have recently started upgrading GroupWise clients on Windows 7 PCs
    (64bit), and have been testing Vibe. I have run into a problem with
    HTML links in GW clients not working on PCs where the GW client has been
    upgraded.
    This problem occurs using the GroupWise 8.0.3hp2 and 8.0.3hp3 clients,
    but does not occur on a 8.0.2hp2 client, so it appears to be GroupWise
    client related. I haven't tested any other client versions.
    1. When using the GW 8.0.3 client, if I select any of the "Novell Vibe
    OnPrem", "Favorites", or "My Teams" folders, I can see the Vibe Feed
    display showing entries for sites I'm following. But clicking on the
    links in these entries does nothing, so I cannot use the Vibe Feed to go
    directly to files, profiles, etc. The same Vibe Feed links from the
    Vibe web browser interface or from a GW8.0.2hp2 client works fine.
    2. If I have e-mail digest notifications setup to let me know when
    changes are made to a folder or file in Vibe, the e-mails are delivered
    to me just fine. But once again, none of the links in the e-mails work
    when using the GW8.0.3 client. Clicking on them does nothing. If I
    look at the e-mail message source, I can copy-and-paste the URLs
    directly into a browser and they work fine, so the URLs themselves are
    correct. Again, these links work fine if I use the GroupWise WebAccess
    or a GW8.0.2hp2 client.
    Is the GW 8.0.3 client is blocking these HTML links? I receive no
    notification from the client asking whether to "unblock" any
    links/scripts/images when viewing messages with these Vibe links.
    Any suggestions for getting these to work on GW 8.0.3 client?
    Thanks,
    -Greg
    former e-mail for posting:
    [email protected]

    Greg,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://forums.novell.com/

  • Click the lock to make changes is not working. Lion 10.7.2

    I cannot make any preferences' changes that require clicking on the lock. When I try to click on the lock it simply does nothing and remains locked. I've tried doing a permission repair using disk utility and I cannot create another admin account because that requires opening the lock in Users&Groups. Also, when I login into root, then the lock is also locked.
    The problem began when I updated to Lion.
    I've had no luck finding a solution in forums.

    i have the same issue,
    summary : at mine clicking the lock at any kind of program does not work at all, not working in system pref,
    not working at ''get info'' window, not working in any other kind of lock, i tried defragging via idefrag but that couldn't work because it needed a lock to be opened as well, i can't move my files to some folders, getting the ''The operation can’t be completed because an unexpected error occurred (error code 100022).''
    plus when i log out, cannot log in because when i type my password it accepts it but then nothing happens, i had a root account as well but i can't enter it and can't create again because of the lock, but when i log in with guest account(no pass required) i can make changes via clicking the lock and filling in admin username and password in system preferences. and i created a new admin account in guest account by filling admin info for authorization in system preferences > users&groups , set no password, logged out but could not log into that account as well. my system is set to login to my account when the system starts.
    so this is what i get with the clean display in console, opening system pref, then clicking users&groups, then clicking the lock. this is system.log
    Jun  6 04:46:06 idiyot System Preferences[4902]: kCGErrorIllegalArgument: CGSDeviceCreate: Invalid window
    Jun  6 04:46:06 idiyot System Preferences[4902]: kCGErrorFailure: Set a breakpoint @ CGErrorBreakpoint() to catch errors as they are logged.
    Jun  6 04:46:06 idiyot System Preferences[4902]: Failed to create window context device
    Jun  6 04:46:06 idiyot System Preferences[4902]: CGWindowContextCreate: failed to create window context delegate.
    Jun  6 04:46:06 idiyot [0x0-0x90090].com.apple.systempreferences[4902]: Jun  6 04:46:06 idiyot.local System Preferences[4902] <Error>: Failed to create window context device
    Jun  6 04:46:06 idiyot [0x0-0x90090].com.apple.systempreferences[4902]: Jun  6 04:46:06 idiyot.local System Preferences[4902] <Error>: CGWindowContextCreate: failed to create window context delegate.
    Jun  6 04:46:06 idiyot System Preferences[4902]: _initWithWindowNumber: error creating graphics ctxt object for ctxt:0x16bdb, window:0x0
    Jun  6 04:46:06 idiyot System Preferences[4902]: CGPixelAccessLock failed!
    Jun  6 04:46:07 idiyot System Preferences[4902]: Error loading /Library/Audio/Plug-Ins/HAL/TASCAM_US122L_US144.plugin/Contents/MacOS/TASCAM_US 122L_US144:  dlopen(/Library/Audio/Plug-Ins/HAL/TASCAM_US122L_US144.plugin/Contents/MacOS/TA SCAM_US122L_US144, 262): no suitable image found.  Did find:
                        /Library/Audio/Plug-Ins/HAL/TASCAM_US122L_US144.plugin/Contents/MacOS/TASCAM_US 122L_US144: no matching architecture in universal wrapper
    Jun  6 04:46:07 idiyot System Preferences[4902]: Cannot find function pointer CreateAudio for factory DB8AEA2A-E42F-11DA-B71D-000A95B009DC in CFBundle/CFPlugIn 0x400b38f00 </Library/Audio/Plug-Ins/HAL/TASCAM_US122L_US144.plugin> (bundle, not loaded)
    then after, i do the same with var/log/secure.log
    Jun  6 04:48:29 idiyot authorizationhost[5064]: in od_record_check_pwpolicy(): retval: 0
    Jun  6 04:48:29 idiyot authorizationhost[5064]: in od_record_attribute_create_cfstring(): returned 2 attributes for dsAttrTypeStandard:AuthenticationAuthority
    Jun  6 04:48:29 idiyot authorizationhost[5064]: in pam_sm_setcred(): Establishing credentials
    Jun  6 04:48:29 idiyot authorizationhost[5064]: in pam_sm_setcred(): Got user: alicankaralar
    Jun  6 04:48:29 idiyot authorizationhost[5064]: in pam_sm_setcred(): Context initialised
    Jun  6 04:48:29 idiyot authorizationhost[5064]: in pam_sm_setcred(): Got euid, egid: 0 0
    Jun  6 04:48:29 idiyot authorizationhost[5064]: in pam_sm_setcred(): Done getpwnam()
    Jun  6 04:48:29 idiyot authorizationhost[5064]: in pam_sm_setcred(): Done setegid() & seteuid()
    Jun  6 04:48:29 idiyot authorizationhost[5064]: in pam_sm_setcred(): pam_sm_setcred: krb5 user alicankaralar doesn't have a principal
    Jun  6 04:48:29 idiyot authorizationhost[5064]: in pam_sm_setcred(): Done cleanup3
    Jun  6 04:48:29 idiyot authorizationhost[5064]: in pam_sm_setcred(): Done seteuid() & setegid()
    Jun  6 04:48:29 idiyot authorizationhost[5064]: in pam_sm_setcred(): Done cleanup4
    Jun  6 04:48:29 idiyot authorizationhost[5064]: in pam_sm_setcred(): pam_sm_setcred: ntlm
    Jun  6 04:48:29 idiyot authorizationhost[5064]: in pam_sm_setcred(): pam_sm_setcred: no domain found skipping
    Jun  6 04:48:29 idiyot com.apple.SecurityServer[29]: UID 501 authenticated as user alicankaralar (UID 501) for right 'system.preferences.accounts'
    i tried repairing disk, permissions, both in system and recovery volume, and i just upgraded to 10.7.4, but the problem was present in 10.7.3, i noticed it two days ago and i just upgraded hoping that would solve the problem.
    edit: i have found out that my problem is best described here, not the real concern of the OP but at the 4th option they say its a netinfo database problem, and diagnostics are the same problems that occur to me of that option but the system they're talking about is 10.1.5, i guess things have changed since then, but the problem is the same . http://macosx.com/forums/mac-os-x-system-mac-software/20630-cant-click-click-loc k-make-changes-button-when-installing.html
    hope you can help
    thanks in advance

  • Only display first form URL in formsweb.cfg . mutiple URL does not work

    Hi Friends,
    I have 4 form application with 4 URL.
    app. server as 10g in window 2003.
    URL like as:
    http://salerpt.com/forms/frmservlet?config=emis-srmenu
    fmx file Location as C:\OraMid\forms\salerpt-Forms fmx name as srmenu.fmx in same directory
    fmb file location as C:\OraMid\forms\salerpt-Forms_source fmx name as srmenu.fmb in same directory
    # Single Sign-On OID configuration parameter
    oracle_home=C:\OraMid
    in formweb.cfg file
    baseHTMLjinitiator=basejini.htm
    workingDirector : workingDirectory= blank. but C:\OraMid\forms\salerpt-Forms right now
    # Forms runtime argument: which form module to run
    ##form=test.fmx
    ## i moved bottom section of form section in here and before
    ##line as Forms runtime argument: database connection details
    comment two line
    #jinit_exename=jinit.exe
    #jinit_mimetype=application/x-jinit-applet;version=1.3.1.22
    I create 4 sections as
    form=srmenu.fmx
    width=1200
    height=700
    pageTitle=Sale Information System (SIS)
    form=regsale.fmx
    form=salefinincial.fmx
    form=rptinfo.fmx
    However it only display first srmenu form interface that i put in( 4 different URL. only display first URL)
    It seems that one formsweb.cfg, it doesn not support multip form setting application.
    I have 4 small forms application with 4 URL for one formsweb.cfg.
    What should I need to do? I think that i miss some set up in configuration.
    I am waiting for your help!
    JIm

    Hi Bgrant,
    Please review my formsweb,cfg.
    Thanks
    I am looking for your help.
    # $Id: formsweb.cfg 15-apr-2005.13:17:30 pkuhn Exp $
    # formsweb.cfg defines parameter values used by the FormsServlet (frmservlet)
    # This section defines the Default settings. Any of them may be overridden in the
    # following Named Configuration sections. If they are not overridden, then the
    # values here will be used.
    # The default settings comprise two types of parameters: System parameters,
    # which cannot be overridden in the URL, and User Parameters, which can.
    # Parameters which are not marked as System parameters are User parameters.
    # SYSTEM PARAMETERS
    # These have fixed names and give information required by the Forms
    # Servlet in order to function. They cannot be specified in the URL query
    # string. But they can be overridden in a named configuration (see below).
    # Some parameters specify file names: if the full path is not given,
    # they are assumed to be in the same directory as this file. If a path
    # is given, then it should be a physical path, not a URL.
    # USER PARAMETERS
    # These match variables (e.g. %form%) in the baseHTML file. Their values
    # may be overridden by specifying them in the URL query string
    # (e.g. "http://myhost.mydomain.com/forms/frmservlet?form=myform&width=700")
    # or by overriding them in a specific, named configuration (see below)
    [default]
    # System parameter: default base HTML file
    baseHTML=base.htm
    # System parameter: base HTML file for use with JInitiator client
    baseHTMLjinitiator=basejini.htm
    # System parameter: base HTML file for use with Sun's Java Plug-In
    baseHTMLjpi=basejpi.htm
    # System parameter: delimiter for parameters in the base HTML files
    HTMLdelimiter=%
    # System parameter: working directory for Forms runtime processes
    # WorkingDirectory defaults to <oracle_home>/forms if unset.
    workingDirectory= C:\OraMid\forms\sales-Forms
    # System parameter: file setting environment variables for the Forms runtime processes
    envFile=default.env
    # Forms runtime argument: whether to escape certain special characters
    # in values extracted from the URL for other runtime arguments
    escapeparams=true
    # Forms runtime argument: which form module to run
    #form=test.fmx
    [[srmenu]]
    form=srmenu.fmx
    width=1200
    height=700
    pageTitle=Sale Management Information System
    [[regsale]]
    form=regsale.fmx
    width=1200
    height=1500
    pageTitle=Sale Management Information System
    [[salefinincial]
    form=salefinincial.fmx
    width=1200
    height=1300
    pageTitle=Sale Management Information System
    [[rtpinfo]]
    form=rptinfo.fmx
    width=1200
    height=1000
    pageTitle=Sale Management Information System
    # Forms runtime argument: database connection details
    userid=scott/tigerd@oracleapp
    # Forms runtime argument: whether to run in debug mode
    debug=no
    # Forms runtime argument: host for debugging
    host=
    # Forms runtime argument: port for debugging
    port=
    # Other Forms runtime arguments: grouped together as one parameter.
    # These settings support running and debugging a form from the Builder:
    otherparams=buffer_records=%buffer% debug_messages=%debug_messages% array=%array% obr=%obr% query_only=%query_only% quiet=%quiet% render=%render% record=%record% tracegroup=%tracegroup% log=%log% term=%term%
    # Sub argument for otherparams
    buffer=no
    # Sub argument for otherparams
    debug_messages=no
    # Sub argument for otherparams
    array=no
    # Sub argument for otherparams
    obr=no
    # Sub argument for otherparams
    query_only=no
    # Sub argument for otherparams
    quiet=yes
    # Sub argument for otherparams
    render=no
    # Sub argument for otherparams
    record=
    # Sub argument for otherparams
    tracegroup=
    # Sub argument for otherparams
    log=
    # Sub argument for otherparams
    term=
    # HTML page title
    pageTitle=Oracle Application Server Forms Services
    # HTML attributes for the BODY tag
    HTMLbodyAttrs=
    # HTML to add before the form
    HTMLbeforeForm=
    # HTML to add after the form
    HTMLafterForm=
    # Forms applet parameter: URL path to Forms ListenerServlet
    serverURL=/forms/lservlet
    # Forms applet parameter
    codebase=/forms/java
    # Forms applet parameter
    imageBase=DocumentBase
    # Forms applet parameter
    #width=750
    width=1024
    # Forms applet parameter
    #height=600
    height=768
    # Forms applet parameter
    separateFrame=false
    # Forms applet parameter
    splashScreen=
    # Forms applet parameter
    background=
    # Forms applet parameter
    lookAndFeel=Oracle
    # Forms applet parameter
    colorScheme=teal
    # Forms applet parameter
    logo=
    # Forms applet parameter
    restrictedURLparams=HTMLbodyAttrs,HTMLbeforeForm,pageTitle,HTMLafterForm,log,allow_debug,allowNewConnections
    # Forms applet parameter
    formsMessageListener=
    # Forms applet parameter
    recordFileName=
    # Forms applet parameter
    serverApp=default
    # Forms applet archive setting for JInitiator
    archive_jini=frmall_jinit.jar
    # Forms applet archive setting for other clients (Sun Java Plugin, Appletviewer, etc)
    archive=frmall.jar
    # Number of times client should retry if a network failure occurs. You should
    # only change this after reading the documentation.
    networkRetries=0
    # Page displayed to Netscape users to allow them to download Oracle JInitiator.
    # Oracle JInitiator is used with Windows clients.
    # If you create your own page, you should set this parameter to point to it.
    jinit_download_page=/forms/jinitiator/us/jinit_download.htm
    # Parameter related to the version of JInitiator
    jinit_classid=clsid:CAFECAFE-0013-0001-0022-ABCDEFABCDEF
    # Parameter related to the version of JInitiator
    #jinit_exename=jinit.exe
    #Version=1,3,1,22
    # Parameter related to the version of JInitiator
    #jinit_mimetype=application/x-jinit-applet;version=1.3.1.22
    # Page displayed to users to allow them to download Sun's Java Plugin.
    # Sun's Java Plugin is typically used for non-Windows clients.
    # (NOTE: you should check this page and possibly change the settings)
    jpi_download_page=http://java.sun.com/products/archive/j2se/1.4.2_06/index.html
    # Parameter related to the version of the Java Plugin
    jpi_classid=clsid:CAFEEFAC-0014-0002-0006-ABCDEFFEDCBA
    # Parameter related to the version of the Java Plugin
    jpi_codebase=http://java.sun.com/products/plugin/autodl/jinstall-1_4_2-windows-i586.cab#Version=1,4,2,06
    # Parameter related to the version of the Java Plugin
    jpi_mimetype=application/x-java-applet;jpi-version=1.4.2_06
    # EM config parameter
    # Set this to "1" to enable Enterprise Manager to track Forms processes
    em_mode=1
    # Single Sign-On OID configuration parameter
    oid_formsid=formsApp_sales.com_0Axxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
    # Single Sign-On OID configuration parameter
    oracle_home=C:\OraMid
    # Single Sign-On OID configuration parameter
    formsid_group_dn=cn=Logical Application Group, orclApplicationCommonName=formsApp_sales.com_0A4911717Fxxxxxxxxxx, cn=forms, cn=Products, cn=OracleContext
    # Single Sign-On OID configuration parameter: indicates whether we allow
    # dynamic resource creation if the resource is not yet created in the OID.
    ssoDynamicResourceCreate=true
    # Single Sign-On parameter: URL to redirect to if ssoDynamicResourceCreate=false
    ssoErrorUrl=
    # Single Sign-On parameter: Cancel URL for the dynamic resource creation DAS page.
    ssoCancelUrl=
    # Single Sign-On parameter: indicates whether the url is protected in which
    # case mod_osso will be given control for authentication or continue in
    # the FormsServlet if not. It is false by default. Set it to true in an
    # application-specific section to enable Single Sign-On for that application.
    ssoMode=false
    # The parameter allow_debug determines whether debugging is permitted.
    # Administrators should set allow_debug to "true" if servlet
    # debugging is required, or to provide access to the Forms Trace Xlate utility.
    # Otherwise these activities will not be allowed (for security reasons).
    allow_debug=false
    # Parameter which determines whether new Forms sessions are allowed.
    # This is also read by the Forms EM Overview page to show the
    # current Forms status.
    allowNewConnections=true
    # EndUserMonitoring
    # EndUserMonitoringEnabled parameter
    # Indicates whether EUM/Chronos integration is enabled
    EndUserMonitoringEnabled=
    # EndUserMonitoringURL
    # indicates where to record EUM/Chronos data
    EndUserMonitoringURL=
    # Example Named Configuration Section
    # Example 1: configuration to run forms in a separate browser window with
    # "generic" look and feel (include "config=sepwin" in the URL)
    # You may define your own specific, named configurations (sets of parameters)
    # by adding special sections as illustrated in the following examples.
    # Note that you need only specify the parameters you want to change. The
    # default values (defined above) will be used for all other parameters.
    # Use of a specific configuration can be requested by including the text
    # "config=<your_config_name>" in the query string of the URL used to run
    # a form. For example, to use the sepwin configuration, your could issue
    # a URL like "http://myhost.mydomain.com/forms/frmservlet?config=sepwin".
    [sepwin]
    separateFrame=False
    lookandfeel=Generic
    # Example Named Configuration Section
    # Example 2: configuration forcing use of the Java Plugin in all cases (even if
    # the client browser is on Windows)
    [jpi]
    baseHTMLJInitiator=basejpi.htm
    # Example Named Configuration Section
    # Example 3: configuration running the Forms ListenerServlet in debug mode
    # (debug messages will be written to the servlet engine's log file).
    [debug]
    serverURL=/forms/lservlet/debug
    # Sample configuration for deploying WebUtil. Note that WebUtil is shipped with
    # DS but not AS and is also available for download from OTN.
    [webutil]
    WebUtilArchive=frmwebutil.jar,jacob.jar
    WebUtilLogging=off
    WebUtilLoggingDetail=normal
    WebUtilErrorMode=Alert
    WebUtilDispatchMonitorInterval=5
    WebUtilTrustInternal=true
    WebUtilMaxTransferSize=16384
    baseHTMLjinitiator=webutiljini.htm
    baseHTMLjpi=webutiljpi.htm
    archive_jini=frmall_jinit.jar
    archive=frmall.jar
    lookAndFeel=oracle

  • Feedback form validation not working

    Hi all,
    My feedback form i am put form validation its not working, please help me,
    my entire code is given below
    <?php
              /* ========================= CODE WILL EXECUTE WHEN FORM WILL SUBMIT =====================*/
                        if($_GET["formFilledStatus"]=="t")
                                  $name = $_GET['txtName'];
                                  $email = $_GET['txtEmail'];
                                  $phone          =          $_GET['txtPhone'];
                                  $dateofappoitment          =          $_GET['txtDOA'];
                                  $timeofappoitment          =          $_GET['txtTA'];
                                  $userRequirement = $_GET['txtSuggestion'];
                                  $to= "[email protected]";
                                  $subject = "FEEDBACK & ENQUIRY FORM";
                                  $message = "<BR><B> User Name:- </B>".$name."<BR><BR><B> Email:- </B>".$email."<BR><BR><B> Phone:- </B>".$phone."<BR><BR><B>Date of Appoitment:-</B><BR>".$dateofappoitment."<BR><BR><B> Time of Appoitment:- </B>".$timeofappoitment."<BR><BR>                                <B> Address:- </B>".$userRequirement;
                                  $headers  = "MIME-Version: 1.0\r\n";
                                  $headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
                                  $headers .= "From:".$email;
                                  // Additional headers
                                  //$headers .= 'Bcc: [email protected]' . "\r\n";
                                  $mailStatus=mail($to, $subject, $message, $headers);
                        /* ========================= END CODE =====================*/
    ?>
    <script language="javascript">
    function isEmail(email)
                        if(email.indexOf("@") != "-1" && email.indexOf(".") != "-1")
                        return true;
                        else
                        return false;
              function validate()
                        if(document.enquiryForm.txtName.value=="")
                                  alert("Name required!");
                                  document.enquiryForm.txtName.focus();
                                  return false;
                        if(document.enquiryForm.txtPhone.value=="")
                                  alert("Please Enter your Phone!");
                                  document.enquiryForm.txtPhone.focus();
                                  return false;
                        if(document.enquiryForm.txtDOA.value=="")
                                  alert("Please Select your date of appoitment!");
                                  document.enquiryForm.txtDOA.focus();
                                  return false;
                        if(document.enquiryForm.txtTA.value=="")
                                  alert("Please Enter time of appoitment!");
                                  document.enquiryForm.txtTA.focus();
                                  return false;
                        if(document.enquiryForm.txtSuggestion.value=="")
                                  alert("Please Enter your address!");
                                  document.enquiryForm.txtSuggestion.focus();
                                  return false;
    </SCRIPT>
    <style type="text/css">
    <!--
    .home_page_font {
              font-family: Verdana, Arial, Helvetica, sans-serif;
              font-size: 11px;
              font-style: normal;
              line-height: normal;
              font-weight: bold;
              font-variant: normal;
              text-transform: none;
              color: #333333;
              text-align: justify;
    .home_page_font1 {          font-family: Verdana, Arial, Helvetica, sans-serif;
              font-size: 11.6px;
              font-style: normal;
              line-height: normal;
              font-weight: normal;
              font-variant: normal;
              text-transform: none;
              color: #333333;
              text-align: justify;
    .home_page_font1 {          font-family: Verdana, Arial, Helvetica, sans-serif;
              font-size: 11px;
              font-style: normal;
              line-height: normal;
              font-weight: normal;
              font-variant: normal;
              text-transform: none;
              color: #868d98;
              text-align: justify;
    .style6 {color: #000000}
    -->
    </style>
            <FORM ACTION="" METHOD="GET" NAME="enquiryForm1" ONSUBMIT=" return validate()">
                        <INPUT TYPE="HIDDEN" NAME="formFilledStatus" VALUE="t">
                   <DIV ALIGN="LEFT">
            <TABLE WIDTH="100%" BORDER="0" ALIGN="CENTER" CELLPADDING="3" CELLSPACING="0" BORDERCOLOR="#F1D6D6" class="home_page_font1" STYLE="border-collapse:collapse;">
            <?php
                        /* ============ CODE IF MAIL SUCCESSFULLY SENT ====================== */
                        if($mailStatus)
                        ?>
                  <TR>
                <TD COLSPAN="2" HEIGHT="25">
                <DIV class="c-text1" ALIGN="CENTER"><b>
                <h3 class="style6">Your Enquiry Has Been Successfully Sent.<b></h3>
                </DIV></TD>
              </TR>
                          <?
                          /*================== CODE END ====================================== */
    ?>
                          <TR>
                <TD COLSPAN="2" HEIGHT="25">
                <DIV class="home_page_font" ALIGN="CENTER">
                  <div align="left">Suggestion &amp; Feedback Form</div>
                </DIV></TD>
              </TR>
              <TR>
                <TD class="power-com1"><FONT COLOR="#FF0000">* </FONT> <STRONG>Your
                Name :</STRONG></TD>
                <TD><INPUT NAME="txtName" SIZE="35" MAXLENGTH="48" VALUE="" class="txtfld"></TD>
              </TR>
              <TR>
                <TD class="power-com1"> </TD>
                <TD> </TD>
              </TR>
              <TR>
                <TD class="power-com1"><STRONG>Your
                E-Mail : </STRONG></TD>
                <TD><INPUT NAME="txtEmail" MAXLENGTH="48" SIZE="35" VALUE="" class="txtfld"></TD>
              </TR>
              <TR>
                <TD class="power-com1"> </TD>
                <TD> </TD>
              </TR>
              <TR>
                <TD class="power-com1"><FONT COLOR="#FF0000">* </FONT><STRONG>Phone/Mobile
                :</STRONG><br>(Include Country/Area Code)</TD>
                <TD><INPUT TYPE="TEXT" NAME="txtPhone" SIZE="22" MAXLENGTH="60" VALUE="" class="txtfld"></TD>
              </TR>
              <TR>
                <TD class="power-com1"> </TD>
                <TD> </TD>
              </TR>
              <TR>
                <TD class="power-com1"><STRONG><font color="#FF0000">*</font>Date of Appoitment :</STRONG><br>(Include Country/
                Area Code)</TD>
                <TD><INPUT TYPE="TEXT" NAME="txtDOA" SIZE="22" MAXLENGTH="60" VALUE="" class="txtfld" id="txtDOA"></TD>
              </TR>
              <TR>
                <TD class="power-com1"> </TD>
                <TD> </TD>
              </TR>
              <TR>
                <TD class="power-com1"><STRONG><font color="#FF0000">*</font>Time of Appoitment : </STRONG></TD>
                <TD><INPUT NAME="txtTA" SIZE="35" VALUE="" class="txtfld" id="txtTA"></TD>
              </TR>
              <TR>
                <TD class="power-com1"> </TD>
                <TD> </TD>
              </TR>
              <TR>
                <TD VALIGN="TOP" class="power-com1"> </TD>
                <TD> </TD>
              </TR>
              <TR>
                <TD VALIGN="TOP" class="power-com1"><FONT COLOR="#FF0000">* </FONT> <STRONG>Address</STRONG></TD>
                <TD><TEXTAREA NAME="txtSuggestion" ROWS="3" COLS="29" WRAP="Virtual" class="txtfld"></TEXTAREA></TD>
              </TR>
              <TR>
                <TD COLSPAN="2">
                <CENTER><INPUT TYPE="SUBMIT" NAME="" VALUE="Submit Query">
                <INPUT TYPE="RESET" NAME="Reset1"></CENTER></TD>
              </TR>
            </TABLE>
              </DIV></FORM>

    Rather than reinventing the wheel, I tend to use SpryValidation widgets to validate the form using JavaScript. However, to ensure that no validation is untouched, you also need to validate the inputs using serverside script.
    The example that you have shown is valiadtion in JavaScript. This means that anyone with JS turned off will bypass your validation.
    Gramps

  • Spry Validations not working javascript:Spry.Widget.Form.destroyAll() in popup

    iam using spry to validate controls in a popup.in that
    validations are working fine but the problem is when we click
    cancel button also thse validations are firing...
    i am using
    javascript:Spry.Widget.Form.destroyAll() to destroy
    validations...but it is not working.
    when we click on cancel button how to destroy the validations
    as well as hide the popup...
    can anyone help me...

    Thanks! (While I'm REALLY not comfortable with code yet (working on it :-) I atleast understood that it was a PHP issue (yay).
    Studied the code in the examples in the book. And added:
    <pre>
    <?php if ($_POST) {print_r($_POST);} ?>
    </pre>
    It worked.  (I'm local testing, with no connection to a database yet. Just trying to get the basic pages to work first.)
    Hopefully the more I work on all of this, the more I'll begin to "get it"! And I'm almost up to the Chapter on PHP. So, I'm hoping to will become clearer as I read on.
    Thanks for the help in pointing me in the right direction!!!
    -- Jami

  • I tried to inport a bookmark html which was exported from Google Chrome. but it did not work

    I exported the file from Google Chrome and tried to import it into Firefox as advised using FireFox help
    It Did not work
    Help!
    vcoli26

    Try the 'report a problem' page to contact iTunes Support : http://reportaproblem.apple.com
    If the 'report a problem' link doesn't work then you can try contacting iTunes support via this page : http://www.apple.com/support/itunes/contact/- click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • HT201401 What you sent me does not help me right My problem is the hardware of the iPhone and its settings I have a problem I Cmtor Home is not where his curve and let's make noise and not working

    Hello my name is and I'm from Israel Lidor My home button on the iPhone 5 does not pass he makes heads and crooked, I bought it from Apple in Spain Barcelona If you can do something with this issue Nora will thank you.!
    What you sent me does not help me right
    My problem is the hardware of the iPhone and its settings
    I have a problem I Cmtor Home is not where his curve and let's make noise and not working

    The warranty is NOT international. The exception is the E.U.
    Since Spain is an E.U. Member country, you can take it back to an Apple Store in any EU country for service. It can not be serviced outside of the E.U.

  • Thought Firefox upgrade would fix problem of not being able to download YouTube videos. It did not. May I suggest that you use Explorer instead. Firefox live chat is not working either.

    Firefox and YouTube do not work well together. USE EXPLORER INSTEAD to download videos.

    Carolyn:
    I just now did exactly as you recommended. Result? No change.
    Even after trashing the files and restarting and everything else, the Activity Window and YouTube behave exactly as they did before.
    (I had actually previously tried something very similar to your recommendation, and it didn't have any effect then either.)
    In case it's helpful, here's an example of what one of the mystery components that load endlessly in the Activity Window is listed as:
    http://s.youtube.com/s?rendering=software&lact=102489&decoding=&rt=112.382&et=11 0.829&tsphab=1&st=69.939&tspne=0&tspfdt=262&nsiabblmin=62945.000&nsidf=2&tabsb=1 &ad_flags=0&h=360&nsiabblmean=72646.865&md=1&docid=zPxFu7taftE&bc=15194849&csipt =watch5ad&ad_event=3&el=detailpage&hasstoryboard=1&vid=72A5TVVpDgRoXDV3HvMeKPjLx BFdU61DC&fmt=34&cr=US&sd=BD075E8E6HH1336502192683396&vtmp=1&nsiabblmax=79054.000 &hl=en_US&ns=yt&nsivbblmax=774478.000&referrer=None&sidx=0&hbd=7790924&w=480&hbt =2.751&cid=6&sendtmp=1&sst=0&cfps=25.974025974025974&screenw=1440&mt=0.6&vq=auto &playerw=640&playerh=390&slots=sst~0;sidx~0;at~2_3&scoville=1&at=2_3&volume=100& art=1.842&mos=0&plid=AAS_iqoqfi0mjNc0&fs=0&nsivbblc=208&nsivbblmin=561638.000&bd =931267&allowed=1_1,1_3,2_1,2_3&bt=7.441&fvid=bNz97ILtwqc&screenh=900&len=127.92 &vw=480&nsivbblmean=668895.024&nsiabblc=208&vh=360&fexp=912001,914050,913539,919 306,907217,901802,906507
    And here's one of the 1.7MB components:
    http://o-o.preferred.comcast-lax1.v11.lscache8.c.youtube.com/videoplayback?range =1781760-3563519&expire=1336524839&id=ccfc45bbbb5a7ed1&burst=40&cm2=0&sver=3&upn =I_VxE0Lmh4Y&keepalive=yes&ipbits=8&algorithm=throttle-factor&itag=34&sparams=al gorithm%2Cburst%2Ccp%2Cfactor%2Cid%2Cip%2Cipbits%2Citag%2Csource%2Cupn%2Cexpire& source=youtube&signature=6F9B5B2CA58ACBA6AFE02FB8A54F1F74EE2B0F16.8E421BC37C3019 E806C22CF3E8866847D033565C&factor=1.25&ip=71.0.0.0&cp=U0hSS1VNUl9IU0NOMl9NR1ZJOm lxNTVmbm1vcDlO&key=yt1&fexp=912001%2C914050%2C901802%2C906507%2C907217%2C919306% 2C913539

  • HT5267 why "make" command is not working anymore with OS X 10.8?

    After the installation of Mountain Lion I am no more able to complire my c++ programs, to install packages with "make" command through the terminal. How this can be solved?

    Is the problem that you can't find make or is make failing in some way?
    If the former have you installed the command line tools. If the later post what you are trying to compile, what you have done and what errors you are getting.

Maybe you are looking for

  • Sales document report for all open documents

    hi i need the code for sales document report for all open documents is sd ...      can anyone help me out.                                  thanks in advance

  • Syncing promblems!!!

    when i go to sync my music this window pops up "songs in the ipod cannot be synced because all of the playlists selected for syncing have been deleted." i think i deleted a few smartlists not knowing what they do

  • Pixelated Object when placing in Indesign

    Hi everyone! I hope you can help me. I am designing a business card and need to do the background in photoshop to get the effects that I want. I want to do a large letter with some extra effects also that I can't recreate in Indesign or Illustrator.

  • Trying to use Airport Extree in Time Capsule nned error code help

    I am a log time apple supporter but I have been messing with this since last night trying to get the @^#&# thing to work. I got conencted erlier to the internet now when i come back from dinner i can;t connect and and i get error code 6765. Earlier i

  • Test connection of application server

    Hi, How will i know if i have successfully created and connected an application server to my .NET project? I'm not seeing any BOR node coming down from it... And when i click Add New Item > SAPProxyWizard, i get an error "Automation server can't crea