Login wont find user/password

I used coldfusion and access to create a database for my page
and i am doing a practice test using the CF built in
server....everything seems like it has connected fine, but when I
do the preview in browser and I enter my username and password
info, it takes me to my failed login page...
I used the tutorial found here
http://www.communitymx.com/content/article.cfm?page=1&cid=A222302CBCA928EB
to create my access database...
can anyone help me on why this wouldnt work?
Thanks

CapBrose wrote:
> can someone at least point me in the right direction on
a good
> tutorial of how to use access to make a database?
Hi
I have a video tut for this at CommunityMX
http://www.communitymx.com/content/article.cfm?cid=A222302CBCA928EB
Cheers jojo
Adobe Community Expert for Dreamweaver 8
http://www.webade.co.uk
http://www.ukcsstraining.co.uk/
Extending Knowledge, Daily.
http://www.communityMX.com/
Free 10 day trial
http://www.communitymx.com/joincmx.cfm

Similar Messages

  • 41439 Login Error  / Invalidation User password

    Portal Login Error 41439:
    I have Infrastructure and App Server (BI installation) on the same Win2K server. While trying to Login to Oracle10gAS Portal, I get following error.
    WWV-41439 - You cannot login because there is no configuration information stored in the enabler configuration table.
    Cause:
    The default domain is not set in the Apache configuration. When this occurs, only the hostname is shown in the login link and the domain is not included.
    Action:
    Include the domain in the ServerName paramenter.
    Where should this ServerName be modified? (Which file? in which OracleHome?)
    Invalidation User Password:
    On a different note, what should be the password of 'Invalidator' in 'Web Cache Settingst'? (I tried invalidator). For any change in config, currently it gives ORA-00017 error.
    "Error in getting the Portal version INSTALL_ERROR : Could not obtain Portal version : ORA-01017: invalid username/password; logon denied"
    Any suggestion will be appreciated.
    Thanks,
    Jay

    Regarding Invalidator password, it might be worth trying you OEM middle tier password (for ias_admin)

  • Capturing the Message on the Login Page (Invalid user/password expired etc.

    Hi, I have a requirment for capturing the error message on the Login page if the User's Account is expired or Account is Disabled or Invalid credentials, Password Lockout etc.
    I am using the attached login page. Can any one please help me out on this.
    <html><head><title>AARPLogin Page</title>
    <script type="text/javascript" language="JavaScript" xml:space="preserve">
    // This function automatically gets called for broswer detection
    var isNav4 = false;
    var isIE4 = false;
    var isNS6 = false;
    function obDetectBrowser()
    if ( navigator.appVersion.charAt( 0 ) == "4" )
    if ( navigator.appName == "Netscape" )
    isNav4 = true;
    } else {
    isIE4 = true;
    else
    if ( navigator.appVersion.charAt( 0 ) >= 5 )
    if ( navigator.appName == "Netscape" )
    isNS6 = true;
    obDetectBrowser ();
    var HOSTNAME =
    var COOKIE_OBREQUESTEDURL = "OBREQUESTEDURL";
    var COOKIE_OBFORMLOGINCOOKIE = "ObFormLoginCookie";
    var NCID_LANDING_PAGE_URL = "/landing/";
    var QS_REDIR = "ReDir";
    var keyChooser;
    function checkPasswordEnterKey( event )
    var form = document.forms[0];
    if (isNav4 || isNS6) {
    keyChooser = event.which ;
    } else if (isIE4) {
    keyChooser = window.event.keyCode;
    if (keyChooser == 13) {
    if (
    form.userid.value
    && form.userid.value != ""
    && form.password
    && form.password.value != ""
    form.submit();
    return true;
    else
    alert('Please enter a UserId and Password');
    return false;
    function showHidePanel( panelID, displayValue )
    var panelElement = document.getElementById( panelID );
    if ( displayValue == 'show' )
    panelElement.style.display = 'block';
    else
    panelElement.style.display = 'none';
    function getQueryVariable( variable )
    var query = window.location.search.substring( 1 );
    var vars = query.split( "&" );
    for ( var i=0; i < vars.length; i++)
    var pair = vars[ i ].split( "=" );
    if ( pair[ 0 ] == variable )
    return unescape( pair[ 1 ] );
    return "";
    function Get_Cookie( name )
    var nameEQ = name + "=";
    var ca = document.cookie.split( ';' );
    for( var i=0; i < ca.length; i++ )
    var c = ca[ i ];
    while ( c.charAt( 0 )==' ' )
    c = c.substring( 1, c.length );
    if ( c.indexOf( nameEQ ) == 0 )
    return c.substring( nameEQ.length, c.length );
    return null;
    function Set_Cookie( name, value, expires, path, domain, secure)
    document.cookie = name + "=" + escape( value ) +
    ( ( expires ) ? ";expires=" + expires.toGMTString() : "" ) +
    ( ( path ) ? ";path=" + path : "" ) +
    ( ( domain ) ? ";domain=" + domain : "" ) +
    ( ( secure ) ? ";secure" : "" );
    function Delete_Cookie( name, path, domain )
    if ( Get_Cookie( name ) )
    document.cookie = name + "=" +
    ( (path) ? ";path=" + path : "" ) +
    ( (domain) ? ";domain=" + domain : "" ) +
    ";expires=Thu, 01-Jan-1970 00:00:01 GMT";
    function lostPassword()
    var CurrentLogin = document.forms[0].userid.value;
    if ( CurrentLogin == "" ) {
    alert ( "Please enter your eMail Address." );
    document.forms[0].userid.focus();
    else {
    Set_Cookie( COOKIE_OBFORMLOGINCOOKIE, "done", 0, "/" );
    var LOST_PWD_PAGE = "/identity/oblix/apps/lost_pwd_mgmt/bin/lost_pwd_mgmt.cgi?program=passwordChallengeResponse&login="+CurrentLogin+"&backUrl=http://oradev2.na.aarp.int/login/login.html&target=top";
    window.location = LOST_PWD_PAGE;
    function emailPassword()
    document.passform.submit();
    function onLoad()
    if (getQueryVariable( "MSG" ) == 'LOGIN_FAILED' )
    alert ("Login Failed, Please try again");
    else if (getQueryVariable( "MSG" ) == 'PWD_EXP' )
    alert ("Your Password Is About to Expire. Please Change it at your earliest convenience.");
    var pwdExpUID = getQueryVariable( "login" );
    var hostTarget = getQueryVariable( "hostTarget" );
    var resURL = getQueryVariable( "resURL" );
    var PWD_EXP_PAGE = "/identity/oblix/apps/lost_pwd_mgmt/bin/lost_pwd_mgmt.cgi?program=redirectforchangepwd&login="+pwdExpUID+"&backURL="+hostTarget+resURL+"&target=top";
    window.location = PWD_EXP_PAGE;
    else if (getQueryVariable( "MSG" ) == 'CHGPWD' )
    alert ("You are required to change your password.");
    var chgPwdUID = getQueryVariable( "login" );
    var hostTarget = getQueryVariable( "hostTarget" );
    var resURL = getQueryVariable( "resURL" );
    var CHG_PWD_PAGE = "http://"+HOSTNAME+"/identity/oblix/apps/lost_pwd_mgmt/bin/lost_pwd_mgmt.cgi?program=redirectforchangepwd&login="+chgPwdUID+"&backURL="+hostTarget+resURL+"&target=top";
    window.location = CHG_PWD_PAGE;
    </script></head><body onload="onLoad();document.login.userid.focus();" alink="blue" bgcolor="#ffffff" link="blue" vlink="blue">
    <p align="center">
    <img alt="AARP Header Logo" src="login_files/aarpLogo.gif" border="0" height="91" width="219">
    <br>
    </p><form name="login" method="post" action="/access/oblix/apps/webgate/bin/webgate.so">
    <div class="boldText" align="center">
    <h2>Login</h2>
    <div class="boldText" align="left">
    <div id="LoginFailed" style="display: none;">
    <table align="center" bgcolor="#ff0000" border="0" cellpadding="2" cellspacing="0" width="500">
    <tbody><tr>
    <td>
    <table bgcolor="#e5e5e5" border="0" cellpadding="5" cellspacing="0" width="100%">
    <tbody><tr bgcolor="#ffffff">
    <td rowspan="3" height="40" nowrap="nowrap" valign="top">
    <img src="login_files/error.gif" name="error" height="20" width="20">
    </td>
    <td rowspan="3" align="center">
    <p>
    <font color="#ff0000" size="-1">
    <b>
    <div id="TryAgain" style="display: none;">Login Failed! Invalid UserID and/or Password, Please try again.<br></div>
    <div id="AccountLocked" style="display: none;">Your Account has been Locked!</div>
    </b>
    </font>
    </p>
    <p>
    <font color="#ff0000">
    <b>For
    assistance call E-Services Help Line at (XXX) XXX-XXXX Monday through
    Friday between the hours of 8:00 am and 5:00 pm eastern standard time.</b>
    </font>
    </p>
    </td>
    </tr>
    <tr bgcolor="#ffffff">
    </tr><tr bgcolor="#e5e5e5">
    </tr></tbody></table>
    </td>
    </tr>
    </tbody></table>
    </div>
    <br>
    </div>
    <table border="0" cellpadding="0" cellspacing="0" width="500">
    <tbody><tr>
    <td background="login_files/border_upper_left.gif" height="20" nowrap="nowrap" width="20"> </td>
    <td background="login_files/border_top.gif" height="20" nowrap="nowrap"> </td>
    <td background="login_files/border_upper_right.gif" height="20" nowrap="nowrap" width="20"> </td>
    </tr>
    <tr>
    <td background="login_files/border_left.gif" nowrap="nowrap" width="20"> </td>
    <td>
    <table bgcolor="#ebebce" border="0" cellpadding="2" cellspacing="0" height="100%" width="100%">
    <tbody><tr>
    <td colspan="3" align="center">
    <font color="darkred" face="Arial" size="3">
    <b>
    </b></font>
    <b> </b></td>
    </tr>
    <tr valign="bottom">
    <td colspan="3" width="100%">
    <table bgcolor="#ebebce" border="0" cellpadding="5" cellspacing="0" width="100%">
    <tbody><tr bgcolor="#e5e5e5">
    <td rowspan="2" bgcolor="#ebebce" height="20" nowrap="nowrap" valign="top" width="4%">
    <font color="#000000">
    <span class="text">
    <img src="login_files/arrow.gif" align="top" height="20" width="20">
    </span>
    </font>
    <font color="#000000"> </font>
    </td>
    <td rowspan="2" bgcolor="#ebebce" width="96%">
    <font color="#000000" size="-1">
    <span class="text">Please enter your Email and Password. If you are a new user to AARP, please select First Time AARP User.
    </span>
    </font>
    </td>
    </tr>
    <tr bgcolor="#e5e5e5">
    </tr></tbody></table>
    </td>
    </tr>
    <tr valign="bottom">
    <td colspan="3">
    <table align="center" border="0" width="349">
    <tbody><tr>
    <td nowrap="nowrap" width="74">
    <font color="#000000" size="-1">
    <div align="left">eMail:</div>
    </font>
    </td>
    <td width="265">
    <input name="userid" value="" size="32" maxlength="32" tabindex="2" type="text">
    </td>
    </tr>
    <tr>
    <td>
    <font color="#000000" size="-1">
    <div align="left">Password:</div>
    </font>
    </td>
    <td>
    <p>
    <font color="#000000" size="-1">
    <input name="password" size="32" maxlength="32" length="30" tabindex="3" type="password">
    </font>
    </p>
    </td>
    </tr>
    </tbody></table>
    </td>
    </tr>
    <tr>
    <td>
    <font color="#000000" size="-1">
    <p align="center"><b>Forgot Your Password?</b></p>
    </font>
    </td></tr>
    <tr>
    <td align="center"> <font color="#000000" size="-1"><!--
    Reset Password      
    -->
    Email New Password
    </font>
    </td></tr>
    <tr>
    <td colspan="4">
    <div class="boldText" align="center">
    <br>
    <input src="login_files/button_login.gif" name="Submit" value="" alt="login" type="image">
    <!--
    <b class="boldText"><img src="../images/button_login.gif" width="68" height="25" name="img_login" border="0" alt="login"/></b>
    --> <b class="boldText"><img src="login_files/button_clear.gif" name="img_clear" alt="clear" border="0" height="25" width="68"></b>
    <b class="boldText"><img src="login_files/button_help.gif" name="img_help" alt="help" border="0" height="25" width="68"></b>
    <b class="boldText"><img src="login_files/button_cancel.gif" name="img_cancel" alt="cancel" border="0" height="25" width="68"></b>
    </div>
    </td>
    </tr>
    </tbody></table>
    </td>
    <td background="login_files/border_right.gif" nowrap="nowrap" width="20"> </td>
    </tr>
    <tr>
    <td background="login_files/border_lower_left.gif" height="20" nowrap="nowrap" width="20"> </td>
    <td background="login_files/border_bottom.gif" height="20" nowrap="nowrap"> </td>
    <td background="login_files/border_lower_right.gif" height="20" nowrap="nowrap" width="20"> </td>
    </tr>
    </tbody></table>
    <p></p>
    <span class="text"><br><br><b>NOTICE:
    This system is the property of AARP and is for authorized use only.
    Unauthorized access is a violation of federal and state law. All
    software, data transactions, and electronic communications are subject
    to monitoring.</b></span>
    <div id="hr" style="position: absolute; width: 100%; height: 10px; z-index: 90; top: 657px; left: 10px;">
    <hr>
    </div>
    <div id="footer" style="position: absolute; width: 700px; height: 55px; z-index: 115; top: 678px; left: 50px;">
    <span class="subhead">
    Privacy Policy
    Disclaimer
    Contact Us
    </span>
    <span class="bodytext">
    </span></div>
    <form name="passform" action="http://oradev2.na.aarp.int/wampassword/passwordReset.html" method="post">
    <input name="login" value="" type="hidden">
    <input name="backUrl" value="http://oradev2.na.aarp.int/login/login.html" type="hidden">
    </form>
    <script type="text/javascript" language="JavaScript" xml:space="preserve">
    var undefined;
    if (
    document.login
    && document.login.password
    function clearForm()
    document.login.reset();
    function navigate( linkName )
    if ( 'login' == linkName )
    if ( document.accountLogin.userID.value != '' && document.login.password.value != '' )
    alert('Please click the Account Registration Setup link for now');
    //document.location = 'userDataPersonal.htm';
    else
    alert('Please enter a UserId and Password');
    function openHelp()
    helpDoc = window.open( "http://www.aarp.org", "", "scrollbars=yes,resizable=yes,width=500,height=300" );
    function cancel()
    // open dialog
    var initX = parseInt( window.screenX ) + parseInt( window.outerWidth ) / 2 - 100;
    var initY = parseInt( window.screenY ) + parseInt( window.outerHeight ) / 2 - 50;
    cancelDialog = window.open( "./cancelDialog.html", " cancelDialog", "resizable=yes,toolbar=no,menubar=no,width=200,height=150,screenX=" + initX +",screenY=" + initY );
    </script>
    </div></form></body>
    <script type="text/javascript">
    <!--
    function __RP_Callback_Helper(str, strCallbackEvent, splitSize, func){var event = null;if (strCallbackEvent){event = document.createEvent('Events');event.initEvent(strCallbackEvent, true, true);}if (str && str.length > 0){var splitList = str.split('|');var strCompare = str;if (splitList.length == splitSize)strCompare = splitList[splitSize-1];var pluginList = document.plugins;for (var count = 0; count < pluginList.length; count++){var sSrc = '';if (pluginList[count] && pluginList[count].src)sSrc = pluginList[count].src;if (strCompare.length >= sSrc.length){if (strCompare.indexOf(sSrc) != -1){func(str, count, pluginList, splitList);break;}}}}if (strCallbackEvent)document.body.dispatchEvent(event);}function __RP_Coord_Callback(str){var func = function(str, index, pluginList, splitList){pluginList[index].__RP_Coord_Callback = str;pluginList[index].__RP_Coord_Callback_Left = splitList[0];pluginList[index].__RP_Coord_Callback_Top = splitList[1];pluginList[index].__RP_Coord_Callback_Right = splitList[2];pluginList[index].__RP_Coord_Callback_Bottom = splitList[3];};__RP_Callback_Helper(str, 'rp-js-coord-callback', 5, func);}function __RP_Url_Callback(str){var func = function(str, index, pluginList, splitList){pluginList[index].__RP_Url_Callback = str;pluginList[index].__RP_Url_Callback_Vid = splitList[0];pluginList[index].__RP_Url_Callback_Parent = splitList[1];};__RP_Callback_Helper(str, 'rp-js-url-callback', 3, func);}function __RP_TotalBytes_Callback(str){var func = function(str, index, pluginList, splitList){pluginList[index].__RP_TotalBytes_Callback = str;pluginList[index].__RP_TotalBytes_Callback_Bytes = splitList[0];};__RP_Callback_Helper(str, null, 2, func);}function __RP_Connection_Callback(str){var func = function(str, index, pluginList, splitList){pluginList[index].__RP_Connection_Callback = str;pluginList[index].__RP_Connection_Callback_Url = splitList[0];};__RP_Callback_Helper(str, null, 2, func);}
    //--></script></html>

    Is it not possible that someone fired the password expiration cmd ?
    SQL> select limit
      2  from   dba_profiles
      3  where  profile='DEFAULT'
      4  and resource_name='PASSWORD_LIFE_TIME';
    LIMIT
    UNLIMITED
    SQL> select profile from dba_users where username='MYUSER';
    PROFILE
    DEFAULT
    SQL> conn myuser/myuser
    Connected.
    SQL> conn / as sysdba
    Connected.
    SQL> alter user myuser password expire;
    User altered.
    SQL> conn myuser/myuser
    ERROR:
    ORA-28001: the password has expired
    Changing password for myuser
    New password:
    Password unchanged
    Warning: You are no longer connected to ORACLE.
    SQL> conn / as sysdba
    Connected.
    SQL> select name, astatus, TO_CHAR(ctime,'DD-MM-YYYY HH:MI') CTIME, TO_CHAR(ptime,'DD-MM-YYYY HH:MI') PTIME, TO_CHAR(EXPTIME,'DD-MM-YYYY HH:MI') EXPIRE
      2  from sys.user$ where name ='MYUSER';
    NAME
       ASTATUS CTIME
    PTIME
    EXPIRE
    MYUSER
             1 23-11-2011 11:15
    23-11-2011 11:15
    23-11-2011 11:17
    SQL>Nicolas.

  • Apple TV- home sharing wont recognize user/password

    trying to set up Apple TV for the first time.  It won't allow me to complete the home sharing set up as it keeps stating that my user name and password are incorrect (they work fine on itunes so I know I'm using the right information).  I've updated my itunes software so that is not the issue.
    Any help is greatly appreciated.
    Thanks,
    David

    I ran into this issue last night.  Servers have been up and down and I'm guessing they're being over loaded as people are still updating and the same servers might be being used to stream iTunes Radio.  I went back this morning and the issue was gone.  I apologize that you're having such a big issue, on the plus side considering that some people are having big issues with this new content it might be a blessing.  Try again in a day or so, beyond iTunes Radio you're really not missing much.

  • 2011 17" MacBook Pro freezes for over 5 mins on user password

    Hey everyone,
    I installed Yosemite on my 2011 17" MacBook Pro. Since then, after a period of my computer being on or after sleep, it appears that the process that handles login using my user password hangs for a bit and then proceeds to work.
    On the login screen, after I enter my password, the focus is drawn off of the password field, and then the computer just sits for what seems to be about 5-7 minutes. This also happens when OS X asks me to enter my password to install / uninstall something; the login window just sits there and does nothing.
    It doesn't happen right after a restart, and it seems like it happens more often after the computer goes to sleep and wakes back up, or has just been running for a while.
    A couple other possibly related problems is that my system will sometimes just start to slow down and every app will slowly become unresponsive, sometimes to the point where I have to use the power button to do a hard reset. Also I've noticed that my system won't remember that I set my screensaver to "never" but will reset itself to "15 minutes" (which is annoying, because after I come back from the screensaver, my system takes a long time to log back in).
    I can't do a system reinstall right now, and I've tried to do PRAM resets and disk repairs. Maybe I'm googling the wrong words, but I've searched and I can't find threads with my exact issue.
    Can anyone help? Thanks!

    Try these in order testing your system after each to see if it's back to normal:
    1. a. Resetting your Mac's PRAM and NVRAM
        b. Intel-based Macs: Resetting the System Management Controller (SMC)
    2. Restart the computer in Safe Mode, then restart again, normally. If this doesn't help, then:
         Boot to the Recovery HD: Restart the computer and after the chime press and hold down the
         COMMAND and R keys until the Utilities menu screen appears. Alternatively, restart the
         computer and after the chime press and hold down the OPTION key until the boot manager
         screen appears. Select the Recovery HD and click on the downward pointing arrow button.
    3. Repair the Hard Drive and Permissions: Upon startup select Disk Utility from the Utilities menu. Repair the Hard Drive and Permissions as follows.
    When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the main menu. Select Restart from the Apple menu.
    4. Reinstall Yosemite: Reboot from the Recovery HD. Select Reinstall OS X from the Utilities menu, and click on the Continue button.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible
                because it is three times faster than wireless.
    5. Reinstall Yosemite from Scratch:
    Be sure you backup your files to an external drive or second internal drive because the following procedure will remove everything from the hard drive.
    How to Clean Install OS X Yosemite
    Note: You will need an active Internet connection. I suggest using Ethernet if possible
                because it is three times faster than wireless.

  • Find out password ?

    Hi Experts,
    i have some query
    i am not finding my user password in oracle ,
    should i find out password from username and encrypted password
    means (example)
    select username,password from dba_users ;
    PERFSTAT A68F56FBBCDC04AB
    CTXSYS D1D21CA56994CAB6
    DBSNMP E066D214D5421CCC
    XDB E76A6BD999EF9FF1
    myuser 461064AE71029EDD
    in above query bold type is my user but how can find out these password?

    i am not finding my user password in oracleIf you just find user passwords like that dont you think that would be a security loophole?
    should i find out password from username and encrypted password Why?
    in above query bold type is my user but how can find out these password? Once again why?
    Adith

  • How can i find out how many users can login as sysdba using password file

    can any one please tell me how can i find out how many users can login as sysdba using password file
    please reply
    asif

    SYS@db102 SQL> select * from v$pwfile_users;
    USERNAME                       SYSDB SYSOP
    SYS                            TRUE  TRUE
    SYS@db102 SQL>                                  

  • Am changing computers and cannot find my password or user name to transfer thunderbird

    I want to transfer thunderbird to my new computer but cannot find my password or user name .Is it also possible to store ,or take with me e mails I have saved please ...My address book will that come over with thunderbird ? thank you for any help .John

    Presumably that will leave you with both the old and new computers working.
    Not sure which password you refer to is this for your email/webmail account, or a computer login password or something else?
    You should not need any password just to open Thunderbird.
    Be aware Thunderbird may only store minimal details of your emails but yes you will be able to transfer details and contacts. See
    * [/products/thunderbird/download-install-and-migration]
    ** [[Moving Thunderbird Data to a New Computer]]
    ** [[Profiles TB]]

  • Steps to find the password for users as sysdba

    What are the steps to find the password for users in dba_users as sysdba?
    It is in encrypted form ? How can I view it ?
    Pls tell in steps ?

    I asked for sysdba
    When he can change password why can't he view ?Can you see the users password on a windows domain? No
    Can you see the users password on a Unix box? No
    Can you see the users password on a mail server? No
    Why would it be different in Oracle?
    Why is hacking coming here ?Because it's something against the way the software works.
    This can, and is, dangerous to let the administrator (Oracle, MsSQL, Win*, Unix,...) know the users password for so many reasons. For example:
    . Privacy
    . Etiquette
    . Password reuse (password reused for Bank account, etc)
    . [insert a whole bunch of other good reasons I'm not going to bother writing]
    And anyway it is useless!
    Yoann.

  • Design login form for user username and password

    any body can help me??
    in login button i wrot this code
    DECLARE
         V_USER VARCHAR2(20);
    V_PASS VARCHAR2(20);
    BEGIN
         ---check the user name ---
         if :ADMUSER_USER_NAME is not null and :ADMUSER_PASSWORD is not null then
    SELECT ADMUSER_USER_NAME
    INTO V_USER
    FROM ADMUSER011
    WHERE ADMUSER_ID_PK = :ADMUSER_ID_PK;
    IF V_USER <> 0 THEN ---it mean this user is available---
    ---check the user password ---
    SELECT COUNT(ADMUSER_PASSWORD)
    INTO V_PASS
    FROM ADMUSER011
    WHERE ADMUSER_USER_NAME = :ADMUSER_USER_NAME
    and ADMUSER_PASSWORD = :ADMUSER_PASSWORD;
    IF V_PASS = 0 THEN     
         MESSAGE('Invalid User Name');
         MESSAGE('Invalid User Name');
         clear_message;
         raise form_trigger_failure;
    else
         open_form('next_form');     
    end if;
    end if;
    end if;
    end;

    any body can help me??For What?
    To write again your code? Because there is a error| What is it?
    Anyway, here is that.
    DECLARE
        userexist  NUMBER(4) :=0;
    BEGIN
    ---check the user name ---
    if :ADMUSER_USER_NAME is not null and :ADMUSER_PASSWORD is not null then
         SELECT count(*)
         INTO userexist
         FROM ADMUSER011
         WHERE ADMUSER_ID_PK    = :ADMUSER_ID_PK;     
            and  ADMUSER_USER_NAME = :ADMUSER_USER_NAME
         and  ADMUSER_PASSWORD  = :ADMUSER_PASSWORD;
        if userexist = 0 then
         MESSAGE('Invalid User Name');
         MESSAGE(' ');
         raise form_trigger_failure;
        else
         open_form('next_form');
        end if;
    end if;
    end;

  • How do I turn off password at login for all users?

    I want to keep separate users but I don't want a password requirement to login for any user. How do I turn off the password requirement at login altogether?

    Its not only a matter of other people, but also any software-based threats or even mishaps. For instance, there are some Terminal commands that can be executed by a program, script, or even another user that require authentication. If you do not have a password set then these can be executed directly with administrative privileges. Some of these can be disastrous to the system if used incorrectly.
    I agree for the most part if your system is fairly isolated then this is not much of an issue, but there is the rare possibility of malware or simple user mistakes that a good password helps guard against.

  • Getting user password after valid login

    How do I get the user's password after a valid login?

    Subbu, thanks for the tip, but I'm following what you mean.
    Are you talking about modifing the security.wf file? What do you mean by "introduce
    a new ip"? Are there other files involved that I will need to change?
    Mark W.
    Subbu Allamaraju <subbuATBeaDOTCom> wrote:
    Mark Walsma wrote:
    Well, I'm going to answer my own question.
    This is not exactly what I was shooting for, but an easy way to get thepassword
    is to check the "remember my username and password" box before you login.After
    a valid login, the username and password get set to the Cookie headervariable.
    Then all you have to do is parse it out and decrypt it with the BASE64Decoderclass.
    >
    Actually, the login and password values are available in the request,
    and so, you can modify the security webflow to introduce a new IP, and
    extract these values!
    Subbu

  • How to find the forgotten oracle user password?

    Hi,
    I forgot my oracle user password. Is there any possibility to find the password without resetting through system user.

    Going by Oracle books, its not possible, but there are ways of knowing the users password, which in other words is known as Bruteforcing.

  • Where can I find a printable list of my saved login Id's and passwords in safari?

    Where can I find a printable list of my saved login Id's and passwords in safari?

    SafariPreferences>Passwords>Tick Show Passwords>Enter Password when prompted>
    Then, as as the system will not let you print the result directly,
    Go to Applications>find GRAB>Go to Tool bar > Grab>Capture selecton>Make your selection>then print selection
    This works for me and I keep GRAB in my Dock.
    Silverfoxx

  • On my MacBook Pro I forgot my user password and I didn't enable Apple ID recoveries and I urgently need help finding a way to recover the password.

    I urgently require help in recovering my user password for my MacBook Pro on OS X Lion, I forgot my password and Apple ID recoveries aren't enabled and I can't enable them as I don't know my password and my hint didn't help me at all, I really, really need help!

    Also, a solution may be found if you search in the "More Like This" section over in the right column.Solution may be found if you search in the "More Like This" section over in the right column.

Maybe you are looking for

  • ALV report output options

    Hi All, I am developing an ALV report. These are the requirements to meet. In the output Grid display, I have to add header using ALV_COMMENTARY_WRITE, passing material number, plant, date. And this changes when the material number changes. Is it pos

  • - Macbook Pro with Retina Display - 15" inch or 13" inch

    Hello, I have been using my moms mac for years noe. My mom and Dad got me into homeschool. I need a mac, so my parents want me to get the best of the best (Im really excited). They said that they could get the 13" inch or the 15" inch is i sold my Ne

  • STO Over & Under Receipts

    In our project 75% of our STO Receipts happens though EDI using WMMBID02 idoc type. There are always lots of shortages and overages happening during the Goods Receipt of the STO. Standard SAP does not allow over receipts to happen during Goods Receip

  • HP Mini 210-1094NR recovery

    Hello, I need help now. Trying to fix an HP Mini 210-1094NR running Windows 7 Starter.  Boots up to the Windows Error Recovery screen which gives me two options. 1.  Launch Startup Repair 2.  Start Windows Normally Well you can guess which one(s) don

  • Launch a .bat file??

    How do I get a button to launch a .bat file when clicked?? Thank you