Resolved 'forgot password' link

Just wanted to see if anyone knows if the 'forgot password' link thing has been fixed. I am currently signed in on my husband's Apple ID...I called Apple yesterday because I got one email to reset my password but the link was invalid and i tried to get a different email several times, and i never received another one. They told me they were having trouble with the site. Just wanted to see if there was anyone here from Apple that could help me. I have still been trying to get my password reset today, and still no emails. Wanted to see if I need to call back. Thank you.

We are fellow users here on these forums.
If you still aren't receiving them emails then Support in your country should be able to reset the password for you : http://support.apple.com/kb/HT5699

Similar Messages

  • "Forgot Password" link doesn't generate an e-mail ...

    Hi, I've been trying for five days to get access to a Skype account I set up but have not used for a few months. I apparently have the password wrong. I've used the "Forgot Password" link on the login page. That link should automatically generate an e-mail to me, but I've gotten no e-mail, despite multiple attempts. There is no e-mail in my spam folder either. So I've sent in two support requests. The only thing I got in response to the first one was an e-mail asking me to fill out a survey about the service I got. Which would make sense, except that I never got any service. At all. The second support request has produced no results. I know I'm using the correct e-mail address, because I initially couldn't remember my Skype name either, and managed to recover it using the "Forgot Skype Name" link. At this stage, the only option I can think of is calling my credit card company and telling them that I no longer approve of any further charges from Skype and they should be rejected. Does anyone on this list have any other suggestions of how I might get some service, any service, to get access to this account? Thanks for any advice you might offer.

    twocoasts wrote:
    Hi, I've been trying for five days to get access to a Skype account I set up but have not used for a few months. I apparently have the password wrong. I've used the "Forgot Password" link on the login page. That link should automatically generate an e-mail to me, but I've gotten no e-mail, despite multiple attempts. There is no e-mail in my spam folder either. So I've sent in two support requests. The only thing I got in response to the first one was an e-mail asking me to fill out a survey about the service I got. Which would make sense, except that I never got any service. At all. The second support request has produced no results. I know I'm using the correct e-mail address, because I initially couldn't remember my Skype name either, and managed to recover it using the "Forgot Skype Name" link. At this stage, the only option I can think of is calling my credit card company and telling them that I no longer approve of any further charges from Skype and they should be rejected. Does anyone on this list have any other suggestions of how I might get some service, any service, to get access to this account? Thanks for any advice you might offer.
    if you have a billing or transaction history in the last 6 months, you can request for a new password without the need to your registered email address.    Just copy and paste the link below to your browser to open the password automation page;
    login.skype.com/account/password-automation
    IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
    ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES
    SEE MORE TIPS, TRICKS, TUTORIALS AND UPDATES in
    | skypefordummies.blogspot.com | 

  • External forgot password link not working

    Hi,
    I am trying to reset the password using the Forgot password link on the External site page, after I click on the forgot password link and enter the username in the textbox and click on the submit button, it displays the error below.
    Error:cannot display page.
    You cannot complete this task because one of the following events caused a loss of page data:
    Your login session has expired.
    A system failure has occurred.
    The EBS version is 11.5.10.2 , OS version is Linux 64 bit.
    Thanks
    H.S

    Please see if these docs helps.
    Random error Your login session has expired when using Load Balancing [ID 387306.1]
    Random error Your login session has expired when using Big IP F5 DMZ Loadbalancing [ID 361397.1]
    Intermittently Receive "Error: Cannot Display Page" Across Multiple Products In RAC [ID 427931.1]
    When using a Load Balancer Oprocmgr Fails To Keep Session After Implementing JServ Load Balancing ACROSS Multiple Middle Tiers [ID 469690.1]
    11i/R12 How to Debug "Transaction Context Is Lost" or "You are trying to access a page that is no longer active" [ID 456906.1]
    Thanks,
    Hussein

  • Forgot password  link

    How to personalize Confirmation page of Forgot Password link functionality?
    Click Forgot your password?
    was able to personalized this one but want to personalize the NEXT one after this.
    Enter username and click submit
    How do we personalize the following message on the page below:
    “An email has been sent to the email address on file. Contact the system administrator if you do not receive your password within the next few hours. “

    Hi,
    You have to find out that file path,
    The first page is
    /oracle/apps/fnd/umx/password/webui/ForgotPasswordPG
    You can use functional administrator responsibility and user personalizatin tab to personalize this page.
    The controller for the above page is oracle.apps.fnd.umx.password.webui.ForgotPasswordCO.
    Since we dont have about this page and personalize option in that page, you have to open the ForgotPasswordCO and check where the control is redirecting .
    Then use functional admin and personalize.
    If somebody knows the result page path, please update here.
    With Regards,
    Kali.
    OSSI.

  • Forgot Password link and Templates.

    I configured the Forgot Password Link in PT85212.
    When i click i go futhur to the page where it asks for the USerID.
    When i provide it and Continue ,my browser pops an error message like
    "Object Doesn't support this property or method
    PT_HNAV_TEMPLATE_JS_1.js
    Code=0
    URI:https://..../cd/uat_pwd/cache/PT_HNAV_TEMPLATE_JS_1.js"
    Any idea what could be going wrong?
    Edited by: mmaller0319 on May 1, 2013 9:33 PM

    that reset_pw api call is a pl/sql procedure just
    like any other. sure you could call it from a link,
    but you'd probably want your user to end up somewhere
    after they click it. a nice way to do it would be to
    have your link pop up a confirmation window. when
    your user confirms the desire to reset his password,
    you should have that window call our api and close
    itself. you can find tips/directions for
    implementing that kind of popup functionality all
    over this forum an in how-to docs like...
    http://otn.oracle.com/products/database/htmldb/howtos/
    how_to_create_custom_popups.html
    ...or you could simply code a wrapper around our api
    that redirects your users to a URL of your choosing
    like so...
    create or replace procedure my_logout_link as
    begin
    wwv_flow_fnd_user_API.reset_pw('SCOTT',:WORKSPACE_ID,'
    personalized message to scott about his password');
    htp.init;
    owa_util.redirect_url
    ('f?p=&APP_ID.:&APP_PAGE_ID:&APP_SESSION.');
    end;
    ...and then you'd just grant execute on that
    procedure to htmldb_public_user. after that, you
    could have your reset url link go to a target like
    "my_schema.my_logout_link", and things should work
    fine.
    hope this helps,
    rajI tried using wwv_flow_fnd_user_API.reset_pw and I keep getting an error message telling me that it doesn't exist or it must be declared etc. Am I missing something here?
    Thanks in advance.
    Ami

  • Want to customise the message display by adding extra text in Logon Help forgot password link

    Dear All,
      I am implementing Forgot Password functioanlity or link in my Portal ( SAP EP7.0).I am getting "Logon Problem ? Get Support " link in my Portal welcome page.When I am clicking this link ,I am getting pop up asking me to enter user id and mail id.Everything is working fine.
    But my real concern is I want to customise the message display in case wrong user id or mail id or wrong question answer.
    The current message displaying as "User information incorrect. Cannot send e-mail with new password" and I want to display it as
    "User information incorrect. Cannot send e-mail with new password ,Please contact your Administrator"
    If I will tell in one sentence ,I want to customise the message display by adding extra text
    For example: "User information incorrect. Cannot send e-mail with new password"
    Requirements:"User information incorrect. Cannot send e-mail with new password ,Please contact your Administrator "
    Kindly help em out  how to do it ................
    Thanks,
    Sanjay Mohanty

    Hi,
    Until you have only played around with the layout of the logon page and not the actual code then you will be able to use this property. There are bits of code in the logon par which retreives these values.
    For eg you can see the below if statement in the logon page to determine if logon help has to be displayed. This is part of standard logo page so if you have not removed this in your custom one everything should work just fine.
    <% if ( logonBean.getLogonHelp() ) { %>
    Also check this link:
    http://help.sap.com/saphelp_nw70/helpdata/en/45/7e6313d8780dece10000000a11466f/frameset.htm
    Regards,
    Vijith

  • 11.5.10.2 - How to personalize Confirmation page of Forgot Password link

    We have implemented the Forgot Password functionality in our 11.5.10.2 system. We need to personalize the Confirmation screen message.
    How do we personalize the following message:
    "An email has been sent to the email address on file. Contact the system administrator if you do not receive your password within the next few hours."
    Reason:
    Our help desk is getting calls from our users because they think that they will have to wait for a few hours to receive their temporary password. Our goal was to eliminate calls to our help desk regarding forgotten passwords but this message is causing more calls than necessary.
    We need to change the message to read as follows:
    "An email has been sent to the email address on file. You should receive the email within a few minutes. Please contact the Support Center if you do not receive your password within an hour."
    I have accessed the CommonMessagePG that appears to control the Confirmation screen (/oracle/apps/fnd/umx/util/webui/CommonMessagePG) but I cannot find where to change the actual text of the message.
    Any advice?

    Try this:
    Go to "Application Developer" responsibility
    Select "Messages" from the menu
    Query the message name and then enter your message text in the "Current Message Text" field
    Save changes and exit
    Clear cache and bounce Apache to see the change.
    Also, the metalink article below might help:
    How to open customized page when click on "Forgot Password" URL ? [ID 556454.1]
    Kristofer Cruz

  • BBP_Start - forgot Password link needs a user

    Hi there,
    I've got just a short question.
    Everytime when I click on the link <forgot user or password? help!> The service needs a user to acces the next page.
    Can I customize a general user for this? And if so, where do I have to make these settings.
    Thanks a lot for your help.
    Kind regards
    Christian Rodemeister

    Hi @ all,
    thanks for this very helpful answers! This problem is solved.
    But another question is, do I need the same specification for the up- and dowload of documents? Because there I get also a seperate logon screen to get an acces to the server. Isn't it the ticketing wich handels this service for the logged on user?
    Again, thanks for your help!
    Kind regards Christian

  • Forgot Password link not working

    I was trying to add the sync to the new installation of windows 7. But i have forgot the password for the user account. I have tried so many times to reset the password but never received any emails from you guys.
    Help

    You are right. Sync's reset password feature is broken at the moment.
    I found a bug where the issue is being tracked and as soon as a fix is posted there I'll update this post. It looks like the server that sends the emails is offline or having some other sort of technical issue. I can't say for sure b/c I don't work for Mozilla.
    Anyway, even the Mozilla employees themselves are unable to get their password reset emails. So take comfort in knowing that you aren't the only one with this problem. :) As far as how soon you can expect a fix? I didn't see any timetable for that. I'll let you know if that changes.

  • Forgot Password link isn't  working  in the iRecruitment visitor page

    Hi All,
    Whenever I click on "Did you forget your password?" in the external iRec page , enter the email id whose password I want to reset and submit , I do not receive any mail.Please help me in fixing it.
    Thanks in advance.

    Is your mailer up and working ?
    Workflow Java Mailer & Notifications FAQ (Doc ID 562551.1)

  • When I create a new apple ID with a different email, it tells me that this email is already in use (I have never signed up for an itunes account prior to this). I then clicked on the "forgot password" link, but I never got an email. What do I do now

    To clarify: the apple ID I am currently using was created to have a temporary account.

    Contact iTunes by:
    https://expresslane.apple.com/Issues.action
      Click on "Account Management"

  • Forgotten sync password and can't find the "forgot password" button/link in option-sync tab.

    Mozilla firefox help database instructed us to access option-sync tab as follow to reset password
    1. Click the menu button New Fx Menu and choose Options.
    2. On the Sync tab, click Sign in to open the Sign in page.
    3. On the Sign in page, click Forgot password? Firefox will send you a reset email.
    4. Follow the instructions in your reset email to change your password.
    but in my firefox 36.0.4 there isn't any Sign in link, just Manage firefox account link. Clicked Manage to open manage account page, still can't find "Forgot password" link as stated above. So how do we reset password to sync? Please advise anyone.

    At first Go to https://accounts.firefox.com/settings
    # If you already signed in with your sync account
    #* You will see a message ''You are signed in as [email protected]''
    #* Sign out from your present account.
    #* Then you'll see log in page. At the bottom of the form you'll find '''Forgot password?'''
    # If you aren't signed in with sync account
    #* Then you'll see log in page.
    #* At the bottom of the form you'll find '''Forgot password?'''

  • Forgot password functionality not working - OAM

    Hi,
    I have issues with the forgot password functionality with OAM
    The password policy is configured and its enabled for the users. The password redirect URLs are also available as part of the password policy configuration.
    When i click on the forgot password link getting the following message
    "This feature is not configured. Please contact the master administrator"
    Please help me to resolve this issues.
    Thanks

    If I remembered correctly, you need to setup the challenge questions and answers to enable forget password feature. This require updating the LDAP schema etc. The steps are described in OAM documentation.

  • "forgot password" dosen´t work

    i recently changed my password and forgot it! how can i restore it? when i click "forgot password" at the main page of http://email.nokia.com/ and enter the username I logged in with, it tells me "The user name you entered does notmatch any account on record. Please make sure that you have correctly entered the first email address you used when you signed up for Nokia Messaging." However, when I try to sign up for a new account with the same address, it tells me "The email address you entered is already registered to a Nokia Messaging account. Please log in to manage your account." An attempt to log in with the same address and password gives the error message "The user name and password you entered do not match any accounts on record. Please make sure that you have correctly entered the first email address you used when you signed up for Nokia Messaging."

    Who are you trying to contact? Most of us here are users, not employees and as mentioned in a previous reply you must contact your local Nokia Care using the Contact Us button above if you want your account reset. No one here will be able to do it.
    P.S. Don't post your email address on a public forum!
    For everyone in general, note that since this thread was started the "forgot password" link has been removed deliberately by Nokia. The password is now the same as the password you use for the first email account you registered with.
    If you forget your password you must go to your mail provider and use their system to recover the password.
    More on this here: http://blogs.nokia.com/messaging/index.php/2010/02​/18/nokia-messaging-for-email-final-winter-2010-up​...
    Maybe all of this stuff should be an FAQ. I think most of the problems are down to a lack of understanding on how NM works. It's not a fault of the user, it's just Nokia haven't told the users what they have done.
    E72-1 UK CV 052.005

  • How to create forgot password feature

    How can I create a "Forgot Password" link on the apex login screen that asks for users email address or userID and resets their password to a random one and emails it to them..

    I think we took the wrong path, that wont work out. I was looking at the APIs and found that we can change the user at run time.
    I think this should work..
    1. create login page as public
    2. In case password reset, grab the user name and change the current user as any admin user using the API Procedure SET_USER( p_user IN VARCHAR2)
    http://download.oracle.com/docs/cd/B31036_01/doc/appdev.22/b28550/api.htm#BABIBIBH
    3. Now that you have the admin user , you know the current user's ID and you know the API to change the password for a particular user
    APEX_UTIL.RESET_PW(
    p_user IN VARCHAR2,
    p_msg IN VARCHAR2);
    http://download.oracle.com/docs/cd/E14373_01/apirefs.32/e13369/apex_util.htm#insertedID69
    I think these if you work around these steps you could build change password fuctionality.
    Thanks,
    Manish

Maybe you are looking for