Help!  Form is not submitting or doing anything! Any ideas?

I inherited this web application and have zero CF experience and any help is greatly appreciated!  So, the "Forgot Password" form isn't working at all.  The email is sent properly from the referring page and when you click the link it brings up the page right, however, when you fill out the form with "email address" and "username" and hit submit, it does nothing.  I'm not even getting an error.
Is there something I'm missing in the code that is wrong?  I'll post the entire code and what the URL looks like when arriving at this page.  It is still in my dev environment.
Thanks in advance for ANY help!  I'm really lost and confused.
http://<server>/~mld/ForgotPassword/index.cfm?plw=359&qke=995708
<!---
Project: MLD Registry
Page Name: index.cfm
Page Purpose: Home page for Forgot Password pages
Programmer: Eric Savage
--->
<html>
<head>
          <title>Forgot Password</title>
          <link rel="stylesheet" type="text/css" media="screen" href="../StyleSheet_Display.css" />
          <link rel="stylesheet" type="text/css" media="print" href="../StyleSheet_Print.css" />
</head>
<body>
<cfsilent>
<cfparam name="plw" default=""><!--- Registry_ID --->
<cfparam name="qke" default=""><!--- Acct_num_temp --->
<cfparam name="Email" default="">
<cfparam name="UserName" default=""><!--- User Name --->
<cfparam name="CheckEntries" default=""><!--- Check submissions for errors --->
<cfparam name="Error" default="0">
<cfparam name="ErrorMessage_Email" default="">
<cfparam name="ErrorMessage_UserName" default="">
<cfparam name="ksr" default=""><!--- Forgot password: email/new password sent --->
<cfparam name="uca" default="">
<cfif Len(CheckEntries) and Len(UserName) and Len(Email) and Len(plw) and Len(qke)>
          <cftry>
    <cfquery name="CheckIfValidUser" datasource="#Datasource#">
        SELECT                    rid,rid_name,r_email,registry_id,acct_num_temp,r_website_type
        FROM                    registry
        WHERE                    rid_name= <cfqueryparam value="#UserName#" cfsqltype="CF_SQL_VARCHAR"> and r_email= <cfqueryparam value="#Email#" cfsqltype="CF_SQL_VARCHAR"> and registry_id= #plw# and acct_num_temp= #qke#
    </cfquery>
    <cfcatch type="Any">
                    <cfinclude template="../includefiles/inc_EmailWebsiteManager.cfm">
              <cflocation url="ErrorMessage.cfm" addtoken="No">
        <cfabort>
    </cfcatch>
          </cftry>
          <cfif not CheckIfValidUser.RecordCount>
                    <cftry>
                    <cfquery name="UserLog" datasource="#Datasource#">
                              INSERT INTO userlog(http_user_agent,todaysdate,ip_address,user_name,comments)
                              VALUES ('#CGI.http_user_agent#',#CreateODBCDateTime(Now())#,'#remote_addr#','#Email#','ForgotPas sword/index.cfm: failed attempt')
                    </cfquery>
                    <cfcatch type="Any">
                              <cfinclude template="../includefiles/inc_EmailWebsiteManager.cfm">
                    </cfcatch>
                    </cftry>
          </cfif>
          <cfif CheckIfValidUser.RecordCount>
                    <cfinclude template="../includefiles/inc_Password_CreateRandom.cfm"><!--- Creates random password in variable called RandomlyCreated_Password --->
        <cfset Password_To_Check= RandomlyCreated_Password><!--- Pass value of new password to include file --->
                    <cfinclude template="../includefiles/inc_Password_CheckFormat.cfm"><!--- Check password complies with  --->
                    <cfif Len(ErrorMessage_Password_To_Check)>
                  <cfset ErrorMessage= "(" & #CheckIfValidUser.rid# & ") [auto password gen] " &  ErrorMessage_Password_To_Check>
            <cfinclude template="../includefiles/inc_EmailWebsiteManager.cfm">
            <cflocation url="ErrorMessage.cfm" addtoken="No">
            <cfabort>
                    </cfif>
                    <cfif not Len(ErrorMessage_Password_To_Check)>
            <cftry>
            <cfquery name="UpdatePassword" datasource="#Datasource#">
                UPDATE                    registry
                SET                              rid_pass= Password('#RandomlyCreated_Password#')
                WHERE                    rid_name= <cfqueryparam value="#UserName#" cfsqltype="CF_SQL_VARCHAR"> and r_email= <cfqueryparam value="#Email#" cfsqltype="CF_SQL_VARCHAR"> and registry_id= #plw# and acct_num_temp= #qke#
            </cfquery>
            <cfcatch type="Any">
                <cfinclude template="../includefiles/inc_EmailWebsiteManager.cfm">
                <cflocation url="ErrorMessage.cfm" addtoken="No">
                <cfabort>
            </cfcatch>
            </cftry>
            <cftry>
            <cfquery name="UserLog" datasource="#Datasource#">
                INSERT INTO userlog(http_user_agent,todaysdate,ip_address,user,comments)
                VALUES ('#CGI.http_user_agent#',#CreateODBCDateTime(Now())#,'#remote_addr#','#CheckIfValidUser.r id#','ForgotPassword/index.cfm: new password added')
            </cfquery>
            <cfcatch type="Any">
                <cfinclude template="../includefiles/inc_EmailWebsiteManager.cfm">
            </cfcatch>
            </cftry>
            <cfparam name="Subject" default="(Secure) NDRD Clinical Questionnaire">
            <cfif CheckIfValidUser.r_website_type is "MLD"><cfset Subject= "(Secure) MLD Registry"></cfif>
            <cfif CheckIfValidUser.r_website_type is "NFRD"><cfset Subject= "(Secure) NFRD Registry for Rare Genetic Disorders"></cfif>
            <cftry>
            <cfmail
                to="#Email#"
                subject="#Subject#"
                from="#CONTACT.EMAIL_NURSE#"
                server="<SMTP SERVER>"
                type="html">
                <p>Here is the new password you requested: #RandomlyCreated_Password#.</p>
            </cfmail>
            <cfcatch type="Any">
                <cfinclude template="../includefiles/inc_EmailWebsiteManager.cfm">
                <cflocation url="ErrorMessage.cfm" addtoken="No">
                <cfabort>
            </cfcatch>
            </cftry>
            <cfparam name="WebsiteType" default="">
            <cfif CheckIfValidUser.r_website_type is "Clinic"><cfset WebsiteType= "01345"></cfif>
            <cfif CheckIfValidUser.r_website_type is "MLD"><cfset WebsiteType= "04385"></cfif>
            <cfif CheckIfValidUser.r_website_type is "NFRD"><cfset WebsiteType= "03475"></cfif>
            <cflocation url="index.cfm?ksr=30471&dfa=84836&uca=#WebsiteType#" addtoken="No">
        </cfif>
          </cfif>
</cfif>
</cfsilent>
<cfinclude template="inc_PageTitle.cfm"><!--- Page title --->
<div id="Container">
          <cfinclude template="inc_NavBar.cfm">
          <div id="Content">
                    <div id="minheight">
                              <cfoutput>
                              <cfif not Len(ksr)>
                                        <div style="padding: .5em 0 .75em 0; border-style: solid; border-width: 0 0 1px 0;">
                    Please enter your email address and user name.
                                        </div>
                                        <cfform action="index.cfm" method="POST">
                                                  <p>
                                                  <span class="ResponseLabel_10"><label for="Email">Email Address</label></span>
                                                  <cfinput type="Text" name="Email" id="Email" value="#Email#" message="Please enter an email address" required="Yes" size="30" maxlength="40">
                                                  </p>
                                                  <p>
                                                  <span class="ResponseLabel_10">User Name</span>
                                                  <cfinput type="Text" name="UserName" id="UserName" value="#UserName#" message="Please enter a User Name" required="Yes" size="12" maxlength="50">
                                                  </p>
                                                  <p><input type="submit" value="Submit"></p>
                                                  <input type="hidden" name="CheckEntries" value="Check">
                    <cfoutput>
                                                  <input type="hidden" name="plw" value="#plw#"><!--- Registry_ID --->
                                                   <input type="hidden" name="qke" value="#qke#"><!--- Acct_num_temp --->
                    </cfoutput>
                                        </cfform>
                              </cfif>
                              <cfif Len(ksr)>
                                        <cfif Trim(uca) is "01345"><cfset WebsiteType= "Clinic"></cfif>
                <cfif Trim(uca) is "04385"><cfset WebsiteType= "MLD"></cfif>
                <cfif Trim(uca) is "03475"><cfset WebsiteType= "NFRD"></cfif>
                                        <div style="padding: .5em 0 .75em 0;">An email has been sent with your new password.</div>
                <cfif Len(Trim(WebsiteType))><a href="#HTMLPath#/#WebsiteType#/LogIn.cfm">Log in</a></cfif>
                              </cfif>
                              </cfoutput>
                    </div><!--- min-height --->
          </div><!--- Content --->
</div><!--- Containter --->
<cfinclude template="../includefiles/inc_PageFooter.cfm"><!--- Page footer (contains closing tag for Container) --->

<cfform action="index.cfm" method="POST">
This line is going to tell the web browser to submitt the page to the web server and have the web server run the "index.cfm" page.
The web server then expects the "index.cfm" page to expect a post request and do something with the key-value pairs contained in the header of the request.
With a rather generaic file name like "index.cfm" it is not unlikely that the index.cfm page simply ignores the form key-value pairs and does nothing with them.  But with no way to see the server side code of this index.cfm page I can not tell for sure.

Similar Messages

  • My forms do not appear in IE.  Any ideas?  They work fine in Safari.

    I created my forms using iWeb.  They appear and work find in Safari.
    But not in IE.
    I get a cropped message saying Internet Explorer cannot display.....
    and "It appears you are connected to...."
    Ideas?
    see www.INNof8.com/INNof8/Join.html 

    Hi;
    What version of IE (and version of Windows) are you finding that it does not work?  I viewed the form in IE11 on Windows 8 and IE9 on Windows 7 and it is working as expected, let me know which version you saw the issue and I can try there too.
    Thanks,
    Josh

  • My i pod shows the itunes symbol on the screen and will not let me do anything, any ideas?

    I did the iso 6 upgrade and now my ipod shows the itunes symbol and will not do anything else, any one having that problem or know what i can do/

    For that you will need to follow this.
    Passcode Locked or Disabled
    If your device is locked with a passcode or disabled you will have to restore the device within iTunes. You want to use the same computer that you always sync with. This is so that you can restore your apps, data and settings. You can restore it with any other computer, but you will lose all of your info from on the Device.
    Instructions can be found here.
    http://support.apple.com/kb/ht1808

  • My newly bought i pad is not letting me doing anything. it is saying 'this ipad hasn't been backed up. backups happen when this ipad is plugged in, locked, and connected to wifi'. i have tried to powered off by pressing the top right hand button

    my newly bought i pad 4(4gs), ratina display, is not letting me doing anything. it is saying 'this ipad hasn't been backed up. backups happen when this ipad is plugged in, locked, and connected to wifi'. i have tried to powered off by pressing the top right hand button till the red slide comes up. but it is not sliding to the right. could anyone help me out??

    Locked, refers to the device being plugged in with "slide to unlock" being displayed on the screen.  To recap - your device will automatically back up to icloud when it is connected to power, the screen is locked, and it is connected to a wifi network.
    -Wifi is required to limit impact on your data plan.
    -Power is to ensure the device has sufficient power to perform the backup.
    -Screen lock - to make sure the device is not in use - which could slow or stop the backup.
    The initial backup may take some time.  Plug it in to the wall before bed, and make sure it is connected to your wifi network.  The backup SHOULD be completed when you wake up in the morning.
    Hope this helps.

  • Form is not submitting while caling a confrim in from validation.

    Dear All,
    I am getting a typical issue in the application. the code is as shown below.
    <h:form id="registerForm" target="_top">
    <h:inputText id="prmoCode" binding="#{Register_Backing.promoCd}" ></h:inputText>
    <h:commandButton onclick="return validate();" id="submitRegister" type="submit" image="../../../images/btnSubmit.gif" action="# {Register_Backing.createSilverhutUser}" />
    </h:form>
    <Script language="javascript">
    function validate()
         if(document.getElementById('registerForm:prmoCode').value=="")
              return confirm("is it ok to continue registration without the promo_code?");
    return true;
    </script>
    when the user clicks the button I am calling a validate() method, in that one I am calling a javascript confirm() function when the prmocode is empty string.
    if the user is selectig ok in the confirmbox the form is not submitting
    the form is submitting well when the promocode is not empty.
    please provide me some solution to over come this problem.
    Thanks & Regards,
    B.V.SureshBabu

    The form HTML is incorrect.
      <form id="form1" name="form1" method="post" action"registration.php">
    you're missing a  = after action

  • TS1647 My Macbook Pro will not print anything from any program. I've reinstalled the drivers. I get an error message in Word that says, "Word could not communicate with printer." Any ideas?

    My Macbook Pro will not print anything from any program. I've reinstalled the drivers. I get an error message in Word that says, "Word could not communicate with printer." Any ideas?

    Be sure to try restarting, if you have not done so since this problem occurred.  You should also power off the printer while you do the restart...
    If that does not help, you can try resetting the printing system.  Open System Preferences Print & Scan (or Print & Fax) pane.  In the sidebar with list of printers, right (control) click anywhere.  Select Reset printing system.  You will have to add back your printers after you do this.

  • HT204291 Using Azul media player app on my ipad  Apple tv will only display sound but not video from movies.  Any ideas on a fix.  I set mirroring to on but it still does not display video.  It will display photos and video recorded from my iphone.

    Using Azul media player app on my ipad  Apple tv will only display sound but not video from movies.  Any ideas on a fix.  I set mirroring to on but it still does not display video.  It will display photos and video recorded from my iphone.

    Here are the steps for AirPlay:
    Before starting Azul from your (running iOS 5.x/6.x) home screen where have have all your apps we need to turn on mirroring
    On your iPhone 4S/5 or iPad 2 or 3, double-click the Home  Button to view your recently-used apps.
    Swipe all the way to the right to until you see the  icon.
    Note: If the icon does not appear, go to the "If AirPlay Mirroring is not visible or available on your mobile iOS device" section.
    Tap the  icon to see the list of available AirPlay devices.
    Enable AirPlay Mirroring in this menu by tapping on an available Apple TV, then sliding the Mirroring slider to ON.
    Now you should be seeing your iPad/iPhone on your TV.
    Start up Azul now and using the settings icon on the top right corner go to the option that say "TV out" ON.
    When you do that you will see an Orange screen
    Now click "Done" and play the video you want to watch and it will AirPlay

  • When I start firefox, i get this message ( The instruction at "0x7b9c77a9" referenced memory at "0x7b9c77a9". The memory could not be "read" ) hs anyone any idea why? I have scanned with AVG and something simply called 'Trojan Remover' and they both fin

    when I start firefox, i get this message ( The instruction at "0x7b9c77a9" referenced memory at "0x7b9c77a9". The memory could not be "read" ) hs anyone any idea why? I have scanned with AVG and something simply called 'Trojan Remover' and they both find nothing.... any advice would be greatly welcomed.. thanks
    == This happened ==
    Every time Firefox opened
    == this morning 22/07/10

    Lyall,
    I have seen this before, a long time ago (several years), and I cannot
    remember how/if we resolved it.
    If this is an impotant issue to you, I suggest that you open a case with
    BEA support.
    Regards,
    Peter.
    Got a Question? Ask BEA at http://askbea.bea.com
    The views expressed in this posting are solely those of the author, and BEA
    Systems, Inc. does not endorse any of these views.
    BEA Systems, Inc. is not responsible for the accuracy or completeness of
    the
    information provided
    and assumes no duty to correct, expand upon, delete or update any of the
    information contained in this posting.
    Lyall Pearce wrote:
    The title says it all really.
    I see other posts getting replies.
    This is a rather important issue, I have seen another post with a similar problem.
    While not being a show-stopper it certainly raises concerns.
    The application works ok until the application exits (in both development and
    executable form)
    Apparently this did not happen with Tux 7.1
    It does with 8, I do not have 7.1 so I have no workaround.
    ..Lyall

  • I have an iMac 8.1, OSX 10.6.8 with XP running in Boot Camp partition. My USB keyboard (MB110LL/A) was damaged by water. I ordered a new keyboard from the Apple Store. I was sent model MB110LL/B. Special function keys will not work in XP. Any Ideas?

    I have an iMac 8.1, OSX 10.6.8, Boot Camp 3.2 running Windows XP. My original keyboard (MB110LL/A) was damaged by a water spill. I ordered a new one from the Apple Store. They sent me MB110LL/B, function keys need updated drivers (Boot Camp 3.3) which will only install if Windows 7 is installed. I have a large amount of older software that runs under XP but not Windows 7. The Apple support team basically said "too bad". If they replace a keboard model with a new model, they should at least make it backwards compatable or provide a Boot Camp update that will allow this model to work on older iMacs. Reloading Bootcamp 3.3 several times has no effect because it does not detect Windows 7. Any Ideas or help would be appreciated.

    It is free. It is beta. It works well - I use it on mine and two PCs as well...
    MS Security Essentials will no longer install due to compatibiliity issues - that is the idea of a beta - and the RC could be out in June.
    Windows 7 doesn't work great on any Mac, or Apple drivers, fan cvontrol to manage heat, and other issues.
    Put 8 in and get to know it, then when the RC comes out you'll be ready

  • I just upgraded from my 2008 MacBook to a new Macbook Pro. How do I get my time capsule to work on my new MacBook? I did data migration, but the time capsule did not pick it up. Any ideas?

    I just upgraded from my 2008 MacBook to a new Macbook Pro. How do I get my time capsule to work on my new MacBook? I did data migration, but the time capsule did not pick it up. Any ideas?

    If you migrated all the info from time machine to your new MBP. The TM will usually ask to connect to the old backups.. sorry I am not sure is this what you want to do.. Personally I think you start a fresh backup.
    BTW Time Capsule does not do anything.. it is a dumb hard disk in a box.. it is TM that does everything.
    Look at B5 and B6 here about connecting to your backup.
    http://pondini.org/TM/Troubleshooting.html

  • My podcast not showing up in searches, Any Ideas?

    When you search our podcast  "The Media Brothers" in the mobile Itunes app, it pulls up these podcasts that are not even closely related.  Any Ideas on how to get it to search correctly?

    Searching in the iTunes Store on a Mac brings up various podcasts, of which this is the fourth:
    https://itunes.apple.com/podcast/media-brothers-podcast-podcast/id677699096
    Of course I don't know that this is indeed yours, but assuming it is at least it's showing up, though why it doesn't turn up as first I have no idea. I'm afraid the Store's search algorithms are completely opaque and there doesn't appear to be anything you can do about it.

  • I am trying to download the WSJ app the iPad says I have yo sync with my computer...I do not have a computer..any ideas

    I am trying to renew and download my WSJ apple. The iPad tells me I must sync to my computer...I do not have a computer..Any ideas?

    Update your software.  The WSJ app has been updated and requires 4.2 at least.  Your signature says you are running 4.1.
    And you do NOT have to have a computer to buy apps.  I only synch in order to backup once in a while.  But you DO need one to update your iPad software.  So either find a friend or wait until IOS5 for the OTA updates.  I don't know if the Apple store can help you or not.  Someone else might know if they would update your software for you.

  • When I close the lid on my retina MacBook Pro with Thunderbolt and it goes to sleep, I cannot wake it without shutting it down and restarting it.  Called Apple tech and they did not have a solution.  Any ideas?

    When I close the lid on my retina MacBook Pro with Thunderbolt and it goes to sleep, I cannot wake it without shutting it down and restarting it.  Called Apple tech and they did not have a solution.  Any ideas?

    Try these places:
    MacBook Pro
    https://discussions.apple.com/community/notebooks/macbook_pro
    https://discussions.apple.com/community/mac_os?view=discussions 
    http://www.apple.com/support/macbookpro
    Mac OS X Help 
    Isolating Issues in Mac OS
    http://support.apple.com/kb/TS1388
    https://www.apple.com/support/osx/
    https://www.apple.com/support/quickassist/
    http://www.apple.com/support/mac101/help/
    http://www.apple.com/support/mac101/tour/
    Get Help with your Product
    http://docs.info.apple.com/article.html?artnum=304725
    TimeMachine 101
    https://support.apple.com/kb/HT1427
    Mac OS X & Mountain Lion Community
    https://discussions.apple.com/community/mac_os
    https://discussions.apple.com/community/mac_os/os_x_mountain_lion?view=discussio ns
    Recovery Mode
    http://support.apple.com/kb/HT4718 

  • I just downloaded a few tv show and the 'info' / 'description' section has not downloaded for the episodes...on previous items it has downloaded just not the recent few? Any ideas why?

    I just downloaded a few tv show and the 'info' / 'description' section has not downloaded for the episodes...on previous items it has downloaded just not the recent few? Any ideas why?

    Check permissions and ownership of the files. Maybe this helps....
    How to Take Ownership and Grant Permissions in Windows Vista

  • My Printer (samsung clx-3185fw) says it connects to my network but I can't seem to print wirelessly.  I could with my netgear but not with my airport extreme, any ideas?

    My Printer (samsung clx-3185fw) says it connects to my network but I can't seem to print wirelessly.  I could with my netgear but not with my airport extreme, any ideas?
    I have restarted all units, disconnected and reconnected

    Hi ryanfromstockbridge,
    I apologize, I'm a bit unclear on exactly what you are seeing when you try to add the printer or print to the printer. If you continue to have issues printing to this wireless printer, you may find the information and troubleshooting steps outlined in the following articles helpful:
    OS X Yosemite: Printing troubleshooting
    Troubleshooting printer issues in OS X - Apple Support
    OS X Yosemite: Add or remove a printer
    Sincerely,
    - Brenden

Maybe you are looking for