Word Verification

Hi All,
How to go about creating word verification, that would exist in the login page or while the user is entering data for registration and stuff.

You mean like this:
http://www.google.com/search?q=java+captcha

Similar Messages

  • Security word verification

    No words show in the space when asked to verify. Help.

    That's something I've not encountered before.
    I'm not really a Mac specialist, but I'll give it a try until someone familiar with this answers it. (It really doesn't like you, does it.)
    1. Click the little blue apple on the desktop top bar and a window will drop down. Click 'System Preferences'. Click 'Security'. Are any of the little boxes checked? Uncheck them.
    2. When you set your browser's 'home page', did you set it to one that requires a password? You can try diagnosing the problem, and learn something of how your Mac works.
    3. If your home page requires a password, open KeyChain, as below, and be sure your 'Access Control' has 'Confirm before allowing access' checked, and 'Always' is the answer in the Pop-up window. Otherwise, (by default) that website's password is never made available.
    4. Try creating a new, non-administrator's account, take the default settings, and see whether it happens.
    Password Philosophy
    Your Mac is designed so you need remember only your login password (and you can bypass even that). Any tine a sneaky person a a cafe might cause some mischief, the Mac asks for a password. When you're about to modify you Mac in a way that will affect all accounts, it will ask you to confirm your Administrator's password (your login password on an administrator's account: the first account created is always an administrator's). When you request access to another computer, by logging into a network or a website, that computer will ask for a consistent password. Here, I like to choose random ones, if Keychain will memorize it. Very low security websites may permit cookies to memorize your password; while not as secure, I do this. Very high security websites, such as my bank, don't permit passwords to be memorized by my Mac. That's how it's supposed to work. You have 'harden' this security with the Security selections above.
    Firefox Passwords
    Safari and Firefox are not security risks. I create a Visitor's account, and let anyone use them. You can see what passwords Firefox has memorized by clicking Preferences > Security. Be sure 'Use a Master Password' is not clicked. Click 'Saved Passwords' to see whether you have any.
    Safari Passwords
    The safer passwords are in KeyChain, in your 'Utility' directory (or 'Applications, I can never remember'). Open it. Click 'Passwords'. If I click the top bar of 'Kind', to sort that column, I see only four 'application passwords'. None is Safari or Firefox. Do you?
    Keychain I can use as follows. I thumb down the list of Web form passwords until I reach 'login.afterdawn.com'. After it is my login name. If I click it, a little window will pop-up. It tells me the exact http address of the website, my account name there (again), and permits comments about this website.
    These are your password's 'attributes'. Because I, too, use two browsers (for security reasons), I might like to access this website from both. So, I click 'access control'. Only 'Confirm before allowing access' is checked. In principal, I can control my password's use in many ways; but I never learned how. When I ask to view my password, I enter my login password and click 'Once', so it will ask for it next time.
    I could never understand the help menu here, so others must help you with variations on these standard settings.
    Best of luck!

  • Trying to add captcha to forum registration page...

    I just put up a site and my forum is getting terrible spam so I need to add a captcha to the registration page.
    Here is the html code with my attempt to add a captcha module with the help of a support agent, it does not work for some reason.
    <h1>Forum Registration</h1>
    <div class="error">{module_error}</div>
    <div class="forum-registration">
    <h2>Existing Users - Login</h2>
    <form method="post" action="{module_pageaddress}" onsubmit="return check_RegistrationForm(this,'login')">
        <div class="form">
        <div class="item">
        <input type="hidden" name="OrderLogin_Info" />
        <label>Username</label><br />
        <input name="Username" maxlength="255" class="cat_textbox" />
        </div>
        <div class="item">
        <label>Password</label><br />
        <input type="password" name="Password" maxlength="255" class="cat_textbox" />
        </div>
        <div class="item">
        <input type="submit" value="Login" class="cat_button" /><a href="#" onclick="document.getElementById('lostpassword').style.display='inline';return false;">Forgot your username/password?</a>
        </div>
        </div>
    </form>
    <form method="post" action="/LostPasswordProcess.aspx" name="catseczonelpform57982" style="display: none;" id="lostpassword">
        <h2>Forgot Password</h2>
        <div class="form">
        <div class="item">
        <label>Enter Username or Email Address</label><br />
        <input name="Username" maxlength="255" class="cat_textbox" />
        </div>
        <div class="item">
        <input type="submit" value="Retrieve" class="cat_button" /><br />
        </div>
        </div>
    </form>
    <hr />
    <h2>New User - Registration</h2>
    <form method="post" action="{module_pageaddress}" onsubmit="return check_RegistrationForm(this,'newuser')">
        <div class="form">
        <div class="item">
        <input type="hidden" name="OrderRegistration_Info" />
        <label>Name</label><br />
        <input name="Registration_Name" value="{module_RegistrationInfo,Name}" class="cat_textbox" />
        </div>
        <div class="item">
        <label>Email</label><br />
        <input name="Registration_Email" value="{module_RegistrationInfo,Email}" class="cat_textbox" />
        </div>
        <div class="item">
        <label>User Name</label><br />
        <input name="Registration_Username" value="{module_RegistrationInfo,Username}" class="cat_textbox" />
        </div>
        <div class="item">
        <label>Password</label><br />
        <input type="password" name="Registration_Password" value="{module_RegistrationInfo,Password}" class="cat_textbox" />
        </div>
        <div class="item">
        <label>Confirm Password</label><br />
        <input type="password" name="Registration_ConfirmPassword" value="{module_RegistrationInfo,ConfirmPassword}" maxlength="255" class="cat_textbox" />
        </div>
        <div class="item">
        <label>Alias</label><br />
        <input name="Registration_Alias" value="{module_RegistrationInfo,Alias}" class="cat_textbox" />
        </div>
        <div class="item">
        <label>Signature</label><br />
        <textarea type="text" rows="4" name="Registration_Signature" class="comment">{module_RegistrationInfo,Signature}</textarea>
        </div>
        <div class="item">
        <label>Enter Word Verification in box below <span class="reg">*</span></label><br />
        {module_recaptcha}</div>
        <div class="item">
        <input type="submit" value="Register" class="cat_button" />
        </div>
        </div>
    </form>
    </div>
    <!-- END .forum-registration -->
    <script type="text/javascript" src="/CatalystScripts/ValidationFunctions.js"></script>
    <script type="text/javascript">
        //<![CDATA[
         function check_RegistrationForm(theForm,name) {  var why = "";  if (name == 'login') {  why += isEmpty(theForm.Username.value, "Username");  why += isEmpty(theForm.Password.value, "Password");  }  else {  why += isEmpty(theForm.Registration_Name.value, "Full Name");  why += isEmpty(theForm.Registration_Email.value, "Email Address");  why += isEmpty(theForm.Registration_Username.value, "Username");  why += isEmpty(theForm.Registration_Password.value, "Password");  why += isEmpty(theForm.Registration_ConfirmPassword.value, "Password Confirmation"); if (theForm,CaptchaV2) why += captchaIsInvalid(theForm, "Enter Word Verification in box below", "Please enter the correct Word Verification as seen in the image");  }  if (why != "") {   alert(why);   return false;  }    return true; }
        //]]>
    </script>

    You can do that on all forms Penny, Does keep them clean.
    It does mean that with no javascript they will never work, but in this day an age that should not be an issue.
    It looks like they were not hitting the registration url, but may have had a cached version of the page and using that to submit Penny.
    Its a good sollution - ideally for properness data- is a html5 attribute so the doctype really needs to be that. In XHML using rel="" on the form with the action in there is a good alternative as well.
    As a note Lynda's code was :
    $('.data-submit').data();
    This woud return all data
    $('.data-submit').data('action');
    Is more specifc and faster, if you had other data elements it would just fetch all or fall over.

  • Refreshing included JSP file

    Hi,
    I've created a simple word-verification login system to stop robots from trying out various password combo's on a user's account.
    I've created a separate JSP page that randomly chooses an image from a database, sets a session variable to the word that is spelt in the image. Then when the user types in the word it simply checks that the word the user typed matches the session variable.
    Here's a snipet from this file: -
    login_image.jsp
    String [] sImageText = {
    "flusessn",
    "mises",
    "appalli",
    "encirs",
    "peromm"
    // create random number between 0-5
    Random rand = new Random();
    int nImageNumber = rand.nextInt(6);
    session.setAttribute( "imageword", sImageText[nImageNumber] );
    response.sendRedirect( "images/login/Captcha" + nImageNumber + ".jpg" );The image is displayed in the login page as follows:
    login.jsp
    <img src="login_image.jsp" />Whe the user enters their username, password and word verification it is processed in a separate JSP file: -
    process_login.jsp
         String sWordVerification = request.getParameter("securitycode");
         String sTheWordVerification = (String)session.getAttribute( "imageword" );
         if ( !sTheWordVerification.equalsIgnoreCase( sWordVerification ) ) {                response.sendRedirect( "login.jsp?worderror=true" );
         } else {     
    .The system works ok. My problem arises if the user enters the wrong word, they are shown an error message on the login.jsp page. However, the login image doesn't change. Any idea how I can make the image refresh each time the login.jsp page is loaded?
    Many thanks

    Thanks.
    I've managed to sort it using javascript. It's a bit messy, but it works. All the changes are made to login.jsp: -
    <script language="JavaScript">
    <!--
    var sURL = unescape(window.location.pathname);
    function doLoad()
        setTimeout( "refresh()", 1 );
    function refresh()
        window.location.href = sURL + "?worderror2=true";
    //-->
    </script>
    <%                                   
    String sError = request.getParameter("worderror");
    if ( sError != null ) {                    
    %>
    <meta http-equiv="refresh" content="1" >
    <script>
         doLoad();
    </script>
    <%
    String sError2 = request.getParameter("worderror2");
    if ( sError2 != null ) {               
         out.println( "<div class=\"redtext\" align=\"center\"><p>The word verification failed.  Please try again.</p></div>" );                              
    %>Here's how it works: -
    - User enters word verification in login.jsp
    - Posted to process_login.jsp
    - If the words don't match then redirect to login.jsp?worderror=true
    - login.jsp detects the worderror=true and runs the following script
    <meta http-equiv="refresh" content="1" >
    <script>
         doLoad();
    </script>
    - The doLoad() method refreshes the login page, including the login image using the refresh method
    - It redirects to window.location.href = sURL + "?worderror2=true";
    posting worderror2=true prevents login.jsp from entering an infinate loop.
    aaaaaaaand relax.....

  • I want to remove the comments section

    hi this is my site http://demo402.businesscatalyst.com/news/company-announces-record-profits
    i want to remove the comments section . how i will do that

    If you're not familiar with HTML make sure you create a backup of the html in a text editor before editing, that way you can replace it later if you need to.
    What you want to do is go into the
    Site settings > Module templates > News Layouts > Detail layout.
    Click the html tab bottom of the editing window.
    Remove  the comment form div code which should look like this: starting with <div class="comment-form"> and ending with </div>
    <div class="comment-form">
    <h5>Comment</h5>
    <form name="catratingform2343" onsubmit="return checkWholeForm2343(this)" method="post" action="/RatingProcess.aspx?OID={module_oid}&amp;OTYPE={module_otype}">
        <div class="form">
        <div class="item">   <label>Was this helpful?</label><br />
        No   <input type="radio" name="Rating" value="1" />   <input type="radio" name="Rating" value="2" />   <input type="radio" name="Rating" checked="checked" value="3" />   <input type="radio" name="Rating" value="4" />   <input type="radio" name="Rating" value="5" />   Very   </div>
        <div class="item">   <label>Name (optional)</label><br />
        <input class="cat_textbox_small" type="text" name="FullName" maxlength="255" />   </div>
        <div class="item">   <label>Website (optional)</label><br />
        <input maxlength="255" name="website" class="cat_textbox_small" />   </div>
        <div class="item">   <label>Email Address (optional)</label><br />
        <input class="cat_textbox_small" type="text" name="EmailAddress" maxlength="255" />   </div>
        <div class="item">   <label>Enter Word Verification in box below</label><br />
        {module_captchav2}   </div>
        <div class="item">   <label>Comment (optional)</label><br />
        <textarea class="cat_listbox_small" name="Feedback"></textarea>   </div>
        <div class="item">   <input class="cat_button" type="submit" value="Submit" />   </div>
        </div>
        <script type="text/javascript" src="/CatalystScripts/ValidationFunctions.js"></script>
        <script type="text/javascript">   //<![CDATA[
       function checkWholeForm(theForm){var why = "";if (theForm.EmailAddress) if (theForm.EmailAddress.value.length > 0) why += checkEmail(theForm.EmailAddress.value);if (theForm.CaptchaV2) why += isEmpty(theForm.CaptchaV2.value, "Enter Word Verification in box below");if (why != ""){alert(why);return false;}return true;}  
    //]]>   </script>
    </form>
    </div>
    Then save.
    If you delete the wrong code, restore from the backup copy.

  • Setting up a minimalist auto-optin

    I'm trying to set up a minimalist automatic opt in to email marketing list.
    While it currently works up to a point (email address is added to the subscriber list), it still sends off the opt-in email.
    This is the form code
    <div class="subscribe-to-the-blog">
    <h4><img src="../images/subscribetotheblog.png" alt="subscribe to the blog" /></h4>
    <div class="subscribe-form">
    <p>Receive an update straight to your inbox every time I publish a new article</p>
    <div class="field-email">
    <form action="http://www.onlineiq.biz/CampaignProcess.aspx?ListID=52458" method="post" onsubmit="return checkWholeForm22196(this)" name="catemaillistform22196">
        <div class="item">
        <input type="hidden" class="cat_textbox_small" name="FullName" id="CLFullName" maxlength="255" value="Blog Lister" />
        <input type="text" name="EmailAddress" id="CLEmailAddress" maxlength="255" placeholder="Your Email Address" />
        <input type="submit" class="joinus_button" value="Join Us" id="catlistbutton" /></div>
    </form>
    </div>
    <script type="text/javascript" src="http://www.onlineiq.biz/CatalystScripts/ValidationFunctions.js"></script>
    <script type="text/javascript">
    //<![CDATA[
    function checkWholeForm22196(theForm){var why = "";if (theForm.EmailAddress) why += checkEmail(theForm.EmailAddress.value);if (theForm.CaptchaV2) why += captchaIsInvalid(theForm, "Enter Word Verification in box below", "Please enter the correct Word Verification as seen in the image"); if (why != ""){alert(why);return false;}theForm.submit();return false;}
    //]]>
    </script>
    </div>
    </div>
    Any ideas about what I am missing?

    Hey there, If this is not on another site do not do an aboslute url, set it releative.
    If you make a custom web form with subscription this is a better option then campaign form.
    What you have with your form is the campain sign up form still with the captcha javascript (so wont submit correctly) and your missing the form paramater for double opt in.
    So..
    1. Make a custom web form and add campaign to it, nothing else. You should just have the security module, name fields and email and the campaign option.
    2. Get the code and put it where it needs to go to be modified.
    3. You can remove the name fields (trust me on this) and title field and make sure you remove the javascript for these as well.
    4. Checked="checked on the input checkbox for the sign up and you can hide that.
    5. You should just have the email field, the submit button and the checkbox and you can style as you need to.
    6. You need to add the opt in true to paramater to your form action:
    &OPTIN=true
    so.. (example only)
    /FormProcessv2.aspx?WebFormID=12807&OID=540285&OTYPE=1&EID=0&CID=0&OPTIN=true

  • BC rating of FAQ's  webb app

    Hi everyone,
    I am trying to fix a Business Catalyst web app to rate FAQ's questions : heres the page were its at:124 YES
    here is the code i just accessed in the web apps module templates :
    {module_ratingrank}{module_ratingfeedback}</p>
    <div class="comment-form">
    <h5>Comment</h5>
    <form name="catratingform79281" onsubmit="return checkWholeForm79281(this)" method="post" action="/RatingProcess.aspx?OID={module_oid}&amp;OTYPE={module_otype}">
        <div class="form">
        <div class="item"><label>Was this helpful?</label><br />
        No <input type="radio" name="Rating" value="1" /><input type="radio" name="Rating" value="2" /><input type="radio" name="Rating" checked="checked" value="3" /><input type="radio" name="Rating" value="4" /><input type="radio" name="Rating" value="5" />Very</div>
        <div class="item"><input type="submit" class="cat_button" value="Submit" /></div>
        </div>
        <script type="text/javascript" src="/CatalystScripts/ValidationFunctions.js"></script>
        <script type="text/javascript">
    //<![CDATA[
    var submitcount79281 = 0;function checkWholeForm79281(theForm){var why = ""; if(why != ""){alert(why);return false;}if(submitcount77393 == 0){submitcount77393++;theForm.submit();return false;}else{alert("Form submission is in progress.");return false;}}
    //]]>
    </script>
    </form>
    </div>
    the code above doesnt submint or do anything,
    and here is the original code for this webb app:
    <div class="comment-form"><h3>Comment</h3><form name="catratingform6237" onsubmit="return checkWholeForm6237(this)" method="post" action="/RatingProcess.aspx?OID={module_oid}&OTYPE={module_otype}"><div class="form"><div class="item"><label>Was this helpful?</label><br />No <input type="radio" name="Rating" value="1" /><input type="radio" name="Rating" value="2" /><input type="radio" name="Rating" checked="checked" value="3" /><input type="radio" name="Rating" value="4" /><input type="radio" name="Rating" value="5" />Very</div><div class="item"><label id="RFeedback">Do you have feedback? (Optional)</label><br /><textarea class="comment" name="Feedback" id="RFeedback" cols="10" rows="4"></textarea></div><div class="item"><label id="RFullName">Name (Optional)</label><br /><input class="cat_textbox_small" type="text" name="FullName" id="RFullName" maxlength="255" /></div><div class="item"><label id="RWebsite">Website (Optional)</label><br /><input class="cat_textbox_small" type="text" name="Website" id="RWebsite" maxlength="255" /></div><div class="item"><label id="REmailAddress">Email Address (Optional)</label><br /><input class="cat_textbox_small" type="text" name="EmailAddress" id="REmailAddress" maxlength="255" /></div><div class="item"><label>Enter Word Verification in box below &bull;</label><br />{module_captchav2}</div><div class="item"><input class="cat_button" type="submit" value="Submit" /></div></div><script type="text/javascript" src="/CatalystScripts/ValidationFunctions.js"></script><script type="text/javascript">
    //<![CDATA[
    function checkWholeForm6237(theForm){var why = "";if (theForm.EmailAddress) if (theForm.EmailAddress.value.length > 0) why += checkEmail(theForm.EmailAddress.value);if (theForm.CaptchaV2) why += captchaIsInvalid(theForm, "Enter Word Verification in box below", "Please enter the correct Word Verification as seen in the image"); if (why != ""){alert(why);return false;}theForm.submit();return false;}
    //]]>
    </script></form></div>""
    I supose someone tried to remove the fields of optional name, email adress, recaptcha etc, and then the form didnt work ,
    how can i do it, remove all the fields and just leave the "was this helpful" radio buttons and the submit button"?

    Hi everyone,
    I am trying to fix a Business Catalyst web app to rate FAQ's questions : heres the page were its at:124 YES
    here is the code i just accessed in the web apps module templates :
    {module_ratingrank}{module_ratingfeedback}</p>
    <div class="comment-form">
    <h5>Comment</h5>
    <form name="catratingform79281" onsubmit="return checkWholeForm79281(this)" method="post" action="/RatingProcess.aspx?OID={module_oid}&amp;OTYPE={module_otype}">
        <div class="form">
        <div class="item"><label>Was this helpful?</label><br />
        No <input type="radio" name="Rating" value="1" /><input type="radio" name="Rating" value="2" /><input type="radio" name="Rating" checked="checked" value="3" /><input type="radio" name="Rating" value="4" /><input type="radio" name="Rating" value="5" />Very</div>
        <div class="item"><input type="submit" class="cat_button" value="Submit" /></div>
        </div>
        <script type="text/javascript" src="/CatalystScripts/ValidationFunctions.js"></script>
        <script type="text/javascript">
    //<![CDATA[
    var submitcount79281 = 0;function checkWholeForm79281(theForm){var why = ""; if(why != ""){alert(why);return false;}if(submitcount77393 == 0){submitcount77393++;theForm.submit();return false;}else{alert("Form submission is in progress.");return false;}}
    //]]>
    </script>
    </form>
    </div>
    the code above doesnt submint or do anything,
    and here is the original code for this webb app:
    <div class="comment-form"><h3>Comment</h3><form name="catratingform6237" onsubmit="return checkWholeForm6237(this)" method="post" action="/RatingProcess.aspx?OID={module_oid}&OTYPE={module_otype}"><div class="form"><div class="item"><label>Was this helpful?</label><br />No <input type="radio" name="Rating" value="1" /><input type="radio" name="Rating" value="2" /><input type="radio" name="Rating" checked="checked" value="3" /><input type="radio" name="Rating" value="4" /><input type="radio" name="Rating" value="5" />Very</div><div class="item"><label id="RFeedback">Do you have feedback? (Optional)</label><br /><textarea class="comment" name="Feedback" id="RFeedback" cols="10" rows="4"></textarea></div><div class="item"><label id="RFullName">Name (Optional)</label><br /><input class="cat_textbox_small" type="text" name="FullName" id="RFullName" maxlength="255" /></div><div class="item"><label id="RWebsite">Website (Optional)</label><br /><input class="cat_textbox_small" type="text" name="Website" id="RWebsite" maxlength="255" /></div><div class="item"><label id="REmailAddress">Email Address (Optional)</label><br /><input class="cat_textbox_small" type="text" name="EmailAddress" id="REmailAddress" maxlength="255" /></div><div class="item"><label>Enter Word Verification in box below &bull;</label><br />{module_captchav2}</div><div class="item"><input class="cat_button" type="submit" value="Submit" /></div></div><script type="text/javascript" src="/CatalystScripts/ValidationFunctions.js"></script><script type="text/javascript">
    //<![CDATA[
    function checkWholeForm6237(theForm){var why = "";if (theForm.EmailAddress) if (theForm.EmailAddress.value.length > 0) why += checkEmail(theForm.EmailAddress.value);if (theForm.CaptchaV2) why += captchaIsInvalid(theForm, "Enter Word Verification in box below", "Please enter the correct Word Verification as seen in the image"); if (why != ""){alert(why);return false;}theForm.submit();return false;}
    //]]>
    </script></form></div>""
    I supose someone tried to remove the fields of optional name, email adress, recaptcha etc, and then the form didnt work ,
    how can i do it, remove all the fields and just leave the "was this helpful" radio buttons and the submit button"?

  • Form Captcha Issues - Error message when not filled vs. traditional "Please fill in the following:"

    Just discovered an issue regarding a form using a CAPTCHA.
    When I formerly submitted other forms on sites with CAPTCHA's in the forms I created, when one did not fill out the form, a pop-up window would appear allerting the customer to "Fill in the form field" that were required, including an allert to "Enter Word Verification in box below."
    I have created a new form for a new site and seem to be encountering a different issue. When the form is not filled out and the user clicks "Submit" a new page loads with a red error message saying: "ERROR: An error occurred. Image verification failed. If you believe this is incorrect, please contact your system administrator or go back and re-submit the form."
    How can I correct this to simply have the same required field pop-up window appear like was happening with former developed forms?? Not sure why this form is doing this when all prior forms with CAPTHCA included were just fine. Haven't done anything different to the form that I hadn't to others in the past....Please Help!! Thanks.

    Thank you for posting.
    Please provide us the page URL where you have placed the form and we'll further investigate this issue. You can also contact support directly by creating a ticket or via chat.
    Thanks,
    Aishvarya Raj Rastogi

  • BC template FAQ's  webb app issues

    Hi everyone,
    i am working in this web site template  at 124 YES and the webb app FAQ's ratings button does nothing, how can i fix the FAQ's ratings button to make results of ratings appear on the admin dashboard?
    This is the code its there:
    {module_ratingrank}{module_ratingfeedback}
    {module_ratingfeedback}

    here is the code i just accessed in the web apps module templates :
    {module_ratingrank}{module_ratingfeedback}</p>
    <p>{module_ratingfeedback}</p>
    <div class="comment-form">
    <h5>Comment</h5>
    <form name="catratingform79281" onsubmit="return checkWholeForm79281(this)" method="post" action="/RatingProcess.aspx?OID={module_oid}&amp;OTYPE={module_otype}">
        <div class="form">
        <div class="item"><label>Was this helpful?</label><br />
        No <input type="radio" name="Rating" value="1" /><input type="radio" name="Rating" value="2" /><input type="radio" name="Rating" checked="checked" value="3" /><input type="radio" name="Rating" value="4" /><input type="radio" name="Rating" value="5" />Very</div>
        <div class="item"><input type="submit" class="cat_button" value="Submit" /></div>
        </div>
        <script type="text/javascript" src="/CatalystScripts/ValidationFunctions.js"></script>
        <script type="text/javascript">
    //<![CDATA[
    var submitcount79281 = 0;function checkWholeForm79281(theForm){var why = ""; if(why != ""){alert(why);return false;}if(submitcount77393 == 0){submitcount77393++;theForm.submit();return false;}else{alert("Form submission is in progress.");return false;}}
    //]]>
    </script>
    </form>
    </div>
    and here is the original code for this webb app:
    <div class="comment-form"><h3>Comment</h3><form name="catratingform6237" onsubmit="return checkWholeForm6237(this)" method="post" action="/RatingProcess.aspx?OID={module_oid}&OTYPE={module_otype}"><div class="form"><div class="item"><label>Was this helpful?</label><br />No <input type="radio" name="Rating" value="1" /><input type="radio" name="Rating" value="2" /><input type="radio" name="Rating" checked="checked" value="3" /><input type="radio" name="Rating" value="4" /><input type="radio" name="Rating" value="5" />Very</div><div class="item"><label id="RFeedback">Do you have feedback? (Optional)</label><br /><textarea class="comment" name="Feedback" id="RFeedback" cols="10" rows="4"></textarea></div><div class="item"><label id="RFullName">Name (Optional)</label><br /><input class="cat_textbox_small" type="text" name="FullName" id="RFullName" maxlength="255" /></div><div class="item"><label id="RWebsite">Website (Optional)</label><br /><input class="cat_textbox_small" type="text" name="Website" id="RWebsite" maxlength="255" /></div><div class="item"><label id="REmailAddress">Email Address (Optional)</label><br /><input class="cat_textbox_small" type="text" name="EmailAddress" id="REmailAddress" maxlength="255" /></div><div class="item"><label>Enter Word Verification in box below &bull;</label><br />{module_captchav2}</div><div class="item"><input class="cat_button" type="submit" value="Submit" /></div></div><script type="text/javascript" src="/CatalystScripts/ValidationFunctions.js"></script><script type="text/javascript">
    //<![CDATA[
    function checkWholeForm6237(theForm){var why = "";if (theForm.EmailAddress) if (theForm.EmailAddress.value.length > 0) why += checkEmail(theForm.EmailAddress.value);if (theForm.CaptchaV2) why += captchaIsInvalid(theForm, "Enter Word Verification in box below", "Please enter the correct Word Verification as seen in the image"); if (why != ""){alert(why);return false;}theForm.submit();return false;}
    //]]>
    </script></form></div>""
    I supose someone tried to remove the fields of optional name, email adress, recaptcha etc, and then the form didnt work ,
    how can i do it, remove all the fields and just leave the "was this helpful" radio buttons and the submit button"?

  • Comments required fields

    I would like to make the comments form have the name field and email address as required fileds. What is the proper way to go about this? Any help would be appreciated.
    <!-- BEGIN #comments -->
    <div style="display: none;" id="comments">
    <h5> Comments</h5>
    {tag_commentspaged}
    <form onsubmit="return checkWholeForm(this)" action="/RatingProcess.aspx?OID={tag_blogpostid}&amp;OTYPE={tag_blogposttype}" method="post">
        <h5> Post a Comment</h5>
        <div class="form">
        <div class="item">
        <label> Name (required)</label>
        <br />
        <input maxlength="255" name="fullname" class="cat_textbox_small" />
        </div>
        <div class="item">
        <label> Website (optional)</label>
        <br />
        <input maxlength="255" name="website" class="cat_textbox_small" />
        </div>
        <div class="item">
        <label> Email Address (required)</label>
        <br />
        <input maxlength="255" name="emailaddress" class="cat_textbox_small" />
        </div>
        <div class="item">
        <label> Enter Word Verification in box below</label>
        <br />
        {module_captchav2}
        </div>
        <div class="item">
        <label> Your comment</label>
        <br />
        <textarea name="Feedback" class="cat_listbox_small"></textarea>
        </div>
        <div class="item">
        <input type="submit" value="Submit" />
        </div>
        </div>
        <script type="text/javascript" src="/CatalystScripts/ValidationFunctions.js"></script>
        <script type="text/javascript">
          //<![CDATA[
          function checkWholeForm(theForm) {
            var why = "";
            if (theForm.EmailAddress) if (theForm.EmailAddress.value.length > 0) why += checkEmail(theForm.EmailAddress.value);
            if (theForm.CaptchaV2) why += isEmpty(theForm.CaptchaV2.value, "Enter Word Verification in box below");
            if (why != "") { alert(why); return false; }
            return true;
          //]]>
          </script>
    </form>
    </div>
    <!-- END #comments -->

    IE9 supports HTML5
    It is a nicer way for form validation before the BC one kicks in. I do this by default on all forms that kicks in before javascript. It is the way forward.
    For this and placeholder the javascript code for validation is very small.
    I have one that converts placeholder for IE - few lines of code.
    I have a function that is my own field validation, the element for required is just a couple of lines of jQuery and looks for required and uses name for the alert.
    Since I overide default alerts for better ones as well I also have that and fall back for default on mobile devices.
    For most people using default is fine of course but anyone wanting to explore options these are the sort of steps you can take on BC forms and have better validation and ease of use setup etc. Defiantly posible with very little scripting.

  • Extending CRM and Form Builder

    Is it correct in what I am seeing that the CRM froms generated from the Extend CRM Database are not hot swapable within the form builder? Unlike all the standard fields and custom generated fields within the form builder which can be moved around, it appears the CRM Forms become static placements. Is my browser simply bugging out or is this the case? I cannot move them once placed and stupidly they are placed below the everything including the Word Verification.
    If it is the case, which I am suspecting, it renders the Form Builder for clients without HTML skills (like most of them) completely useless.
    Matbe my borwser si just bugged. Confirmation please if anyone else gets this same issue.

    Hi
    My situation is that I having tabbing issues after I have created a more custom order registration form and applying additional CRM fields. Customer wanted certain fields in a certain order, but I notice that the tabbing is predicted by the Admin form builder, beginning with the Title followed by the Name and so on.
    I have tried to apply my own tabbing order (tabindex=1, tabindex=2.. etc) but that seems to not apply.
    Any thoughts?
    Teejay

  • I can't comment on a Blogger blog.

    I can't comment on a Blogger blog. It has CAPTCHA (word verification). It keeps telling me I've done it wrong when I'm certain I've gotten the CAPTCHA right. It's my favorite blog and I've been a contributor for a while, but recently the blog added CAPTCHA because of spam.

    Thanks again.
    No, refreshing the CAPTCHA doesn't help. I can usually see them okay anyway.
    As far as I know I'm not blocking cookies on any websites. I checked just to be sure, but no, I'm apparently not blocking cookies.
    Any other suggestions?

  • Module comment form returns invalid capture and then unable to rate?

    Hi,
    I have added a comment form to my clients posts on LizClegg.com Blog Post
    To achieve this I just added the module, comment form to the blog posts details layout template.
    This has been unsuccessful as every time I test, the first attempt returns the error;
    "- Please enter the correct Word Verification as seen in the image"
    and then the second attempt returns;
    "ERROR: You are not able to rate this type of item."
    Any suggestions please?

    Hi,
    I have added a comment form to my clients posts on LizClegg.com Blog Post
    To achieve this I just added the module, comment form to the blog posts details layout template.
    This has been unsuccessful as every time I test, the first attempt returns the error;
    "- Please enter the correct Word Verification as seen in the image"
    and then the second attempt returns;
    "ERROR: You are not able to rate this type of item."
    Any suggestions please?

  • Page Won't Finish Loading

    I have gone through and done as many suggestions as I can find on here and some pages will still not finish downloading. (emptied cache, made sure javascript is enabled, unchecked block pop-up windows, enabled plug-ins, enabled cookies) and then I went through with the MacJanitorial to clean up old folders, i then purchased the DAP and some pages just won't finish loading. I tried it on Safari and Firefox and got the same results. i went through and made sure the auto-fills were not checked, the font book wasn't duplicated and checked my memory available and i believe it was 10GB. (I started having this problem when i was playing an online game (on yahoo) and was switching back and forth between 2 pages. eventually, one would temporarily freeze up, then the other.) So...I am wondering...would this have something to do with it. The pages that won't load are either blogs with word verification (last item to load) or yahoo mail.

    "Repair Disk Permissions" from Disk Utility may help you.
    Also, try the same thing from another user account --create one if you do not already have one.
    Mihalis.

  • Severe test trying to register for this forum...

    I've just registered for this forum, but I needed every ounce of my technical wits to achieve that...
    I was asked for a "Screen Name" so ended up with Apodida (Hi there, other "Swifty" and "Swiftie").
    Then I was asked for "*Word verification by reCAPTCHA". 
    The problem was, no CAPTCHA image appeared. My browser (Opera) accepts all images, so I presumed a browser issue and tried Firefox... same result. IE9... same again. Chrome v23... same. Safari... same. 
    If you think I'm laying it on a bit thick, it's because I seem to be heading for: http://swiftys.org.uk/images/dilbert.gif
    The  answer was to disable JavaScript, as the page then works in a purely textual mode. Of couse, no one who needs this information will find their way here...

    Thanks for the answer, Apodida.
    The problem is even more complicated that can be imagined.
    You must have javascript enabled in order to log into the main HP Passport screen. If it is not enabled, the button to login using your username and password will not appear.  If you can't log into HP Passport, you can't participate in any discussions.
    However, if you've never participated in the discussion forum and do not have a forum username associated to your HP Passport account, you'll need to register a username and go through the ReCaptcha test to prove that you're a human being. If you have Javascript enabled in your browser, the ReCaptcha image will not appear on the screen.  Therefore, you must disable Javascript in order to register and participate in the forum.
    That is just plain dumb.  It's certainly apparent to me that the discussion forum and the HP Passport website are managed by different web devs/admins who aren't talking to each other because their separate browser requirements are at conflict with each other.  The end result - the users suffer, leaving the impression that HP doesn't know how to take care of their business.

Maybe you are looking for

  • Pre7: On TV screen, NTSC widescreen video edges are hidden

    I have a 16:9 project which looks fine in Preview, but when burned to disc and displayed on a 4:3 TV set, the edges don't show. Normally when 16:9 videos are played with my equipment, the entire width is displayed, with black bands above and below. T

  • Tax code V0 does not exist for jurisdiction code IN00

    hi mm when i am creating a purchase order After creating the PO when i go to invoice and enter tax code V0 and jurisdiction code i face the error Tax code V0 does not exist for jurisdiction code IN00 Message no. FF718 Diagnosis You have entered tax c

  • Dictionary: the links are gone?

    I remember if I pointed to any word in the explanation, the word will appear underlined as a link. When click on it, it will take me to that word. But somehow this function is gone: there is no link and underline any more. What's wrong?

  • Any ideas why the video camera on my imac is not working?

    Does any one have any idea why the video camera on my imac is not working? I have been using skype on my imac for some time and recently I have discovered that it wont work, could this have anything to do with the mountain lion upgrade?

  • CF10 Sandbox Security prevents CFCOLLECTION create from working

    Hello, everyone, I've got CF10 installed on my dev system.  I've created several Solr collections.  I have turned on Sandbox Security, and added defined directory permissions for C:/ColdFusion10/cfusion/collections and C:/ColdFusion10/cfusion/jetty f