Forgot password and cannot publish updates and edits.How do I retrieve?

I forgot the password for i web
How do I retrieve or get a new one
so that I can edit and revise site?

Applications are, I guess, in the Application folder.
There usually  is no info about iWeb where you host your website.
Somewhere in the control panel where you host your website must be info about your password.
Perhaps in the Help/FAQ/Support pages? Can you see something like "FTP". A button?
Can you remember the time when you signed up for the service and were given the password? Where was it written?
Oh, and when you contact your webhoster, do not mention iWeb.

Similar Messages

  • TS3694 cannot restore forgot password and id please help?

    cannot restore ipod, forgot password and id please help
    thank you

    You'll need to connect it to the iTunes library you normally sync it with and restore it.  If iTunes asks you for this passcode before it will let you proceed, connect the iPod to iTunes in recovery mode instead using the instructions in this Apple support document.
    iOS: Unable to update or restore
    B-rock

  • I want to change my Apple ID for IPad because forgot password and all email addresses changed so cannot get informations for password reset. What can I do?

    I want to change my Apple ID for IPad because forgot password and all email addresses changed so cannot get informations for password reset. What can I do?

    I was wondering if you ever figured this out. I have the same issue. When I try to use the support communities, there are so many with the same problems and never seem to be any replys?? Not very helpful and I can not get Apple to return my emails.

  • How do I create a "forgot password" and "forgot username" Form?

    Good Day,
    I am in need of assistance in learning how to create a "forgot password" and "forgot username" form in DW CS4.  I have researched Adobe and the Internet and I am coming somewhat empty on tutorials or step-by-step instructions.
    I would appreciate any step-by-step instructions, a link to a good online tutorial, or any other related source that can help me get from beginning to end.
    Thank you.

    Hope this work for you...
    What kind of web programming do you use for? If you use PHP MySQL, you can do it easily.
    For example I use a MySQL Table called "admin":
    CREATE TABLE IF NOT EXISTS `admin` (
      `id` int(10) NOT NULL AUTO_INCREMENT,
      `name` varchar(64) NOT NULL,
      `email` varchar(64) NOT NULL,
      `username` varchar(64) NOT NULL,
      `password` varchar(64) NOT NULL,
      `activation` varchar(64) NOT NULL,
      `level` int(2) NOT NULL DEFAULT '0',
      `date_registered` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
      PRIMARY KEY (`id`)
    ) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
    INSERT INTO `admin` (`id`, `name`, `email`, `username`, `password`, `activation`, `level`, `date_registered`) VALUES
    (1, 'Andoyo', '[email protected]', 'andoyo', 'andoyo', '8e67d638c0d130a4d66b2888ffc8335b', 0, '2011-09-21 10:32:16');
    Make two files, they are:
    forgot_password.php, contain form and php mail function
    error.php, a redirect page if the mail function doesn't work.
    And then, use your Dreamweaver to make a recordset, called: rsForgotPassword
    Click Insert > Data Objects > Recordset
    Name: rsForgotPassword
    Connection: adobe_cookbooks
    Table: admin
    Columns: All
    Filter: email, Form variable, =, email. Use form variable to pass the value from the form.
    Click OK
    Use if function to make the forgot function work perfectly, for example:
    If the email is entered correctly, the mail script will run
    If the email doesn't exist in the database, the notification will come out
    If they open the page directly, they have to type any keyword
    Final example:
    forgot_password.php
    <?php require_once('Connections/adobe_cookbooks.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      if (PHP_VERSION < 6) {
        $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;  
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? doubleval($theValue) : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $colname_rsForgotPassword = "-1";
    if (isset($_POST['email'])) {
      $colname_rsForgotPassword = $_POST['email'];
    mysql_select_db($database_adobe_cookbooks, $adobe_cookbooks);
    $query_rsForgotPassword = sprintf("SELECT * FROM `admin` WHERE email = %s", GetSQLValueString($colname_rsForgotPassword, "text"));
    $rsForgotPassword = mysql_query($query_rsForgotPassword, $adobe_cookbooks) or die(mysql_error());
    $row_rsForgotPassword = mysql_fetch_assoc($rsForgotPassword);
    $totalRows_rsForgotPassword = mysql_num_rows($rsForgotPassword);
    ?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    <p>Forgot your password:</p>
    <?php if (isset($_POST['email']) && ($row_rsForgotPassword['email']=="")) {
      $colname_rsForgotPassword = $_POST['email']; ?>
    <p>Email doesn't exist in our database</p>
      <?php }elseif (isset($_POST['email'])) {
      $colname_rsForgotPassword = $_POST['email'];
      $username = $row_rsForgotPassword['username'];
    $password =$row_rsForgotPassword['password'];
    $to = $row_rsForgotPassword['email'];
    // Mai function
    $subject = "Your username dan password: ".$row_rsForgotPassword['name'];
    $body = "<html><body>" .
                        "<h2>Thank you...</h2>" .
                        "<p>This is your username and password:</p>".
                        "<ul><li>Username=".$username."</li>".
                        "<li>Password= ".$password."".
                        "From: Webmaster www.javawebmedia.com";
    $headers =           "From: Webmaster www.javawebmedia.com <[email protected]>\r\n" .
                                  "MIME-Version: 1.0\r\n" .
                                  "Content-type: text/html; charset=UTF-8";
    if (!mail($to, $subject, $body, $headers)) {
              $redirect_error= "error.php"; // Redirect if there is an error.
      header( "Location: ".$redirect_error ) ;
      ?>
      <p>Thank you, your username and password has been sent to your email.</p>
      <?php }else{ ?>
      <p>Please type any keyword.</p>
      <?php } ?>
    <form id="form1" name="form1" method="post" action="">
      <p>
        <label for="email">Your email:</label>
        <input type="text" name="email" id="email" />
        <input type="submit" name="Submit" id="submit" value="Submit" />
        <input type="reset" name="Reset" id="submit2" value="Reset" />
      </p>
      <p>The username and password will be sent to your email.</p>
    </form>
    <p></p>
    </body>
    </html>
    <?php
    mysql_free_result($rsForgotPassword);
    ?>
    error.php
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    </head>
    <body>
    Oops, error page.
    </body>
    </html>

  • I have an older Ipod touch with 4.2.1 and cannot be updated any further, how do I install apps on it now?  so far every app I have tried says I need an updated IOS.  This sounds like I now have an apple product paper weight.

    I have an older Ipod touch with 4.2.1 and cannot be updated any further, how do I install apps on it now?  so far every app I have tried says I need an updated IOS.  This sounds like I now have an apple product paper weight unless I want to run out and buy the latest and greatest overpriced apple product. 

    Are you willing to buy a newer iPod? How about the 4g @ 16gb for $199* usd or the 5g @ 32gb for $299*.
    * tax not included.

  • How do i reset administrator password if i forgot password and do not have start up disk

    how do i reset admin password if i forgot password and do not have start up disk

    http://osxdaily.com/2011/04/25/change-admin-password-mac/
    http://osxdaily.com/2011/08/24/reset-mac-os-x-10-7-lion-password/

  • System preferences is asking me to put in my apple id password for my email acct.  I forgot the password so I hit forgot password and it won't take me to another screen to reset the password.  Any suggestions?

    System preferences is asking me to put in my apple id password for my email acct.  I forgot the password so I hit forgot password and it won't take me to another screen to reset the password.  Any suggestions?

    You can reset your password of the apple ID via this site:
    https://iforgot.apple.com/cgi-bin/WebObjects/DSiForgot.woa/wa/iforgot

  • I Phone disabledattempts to sign on because forgot password and made too many

    I Phone is disabled because I forgot password and made too many attempts to sign on. Tried to connect to I Tunes but will not connect. How do I get phone disabled?

    You must restore the iPhone with iTunes. Place the iPhone into recovery mode in order to do so.
    http://support.apple.com/kb/ht1808

  • Forgot password and tryed to restore on itunes but it says i have to login to my device

    forgot password and tryed to restore on itunes but it says i have to login to my device

    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                          
    If recovery mode does not work try DFU mode.                         
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings

  • HT201303 I forgot my security questions and answers, how can i retrieve my answers? Please reply! Thanks :)

    I forgot my security questions and answers, how can i retrieve my answers? Please reply! Thanks :)

    Welcome to the Apple Community.
    Start here, and reset your password, you will receive an email with your new password, then go to manage your account > Password and Security and change your security questions.
    If that doesn't help you might try contacting Apple through iTunes Store Support

  • My Firefox crashed, I have lost all my passwords and bookmarks, how can I recover it?

    I was on line, my Firefox browser crashed, It asked me if it could recover it after which I have lost all my passwords and bookmarks, how can I recover it?
    duplicate of [/questions/1023258]

    '''https://support.mozilla.org/en-US/kb/profile-manager-create-and-remove-firefox-profiles'''
    '''https://support.mozilla.org/en-US/kb/recovering-important-data-from-an-old-profile'''
    '''https://support.mozilla.org/en-US/kb/back-and-restore-information-firefox-profiles'''

  • HT2513 one of my calendars disappeared on my desktop and iphone. how do i retrieve info. that was on calendar? help!!!

    one of my calendars disappeared off both my desktop and iphone. how do i retrieve info. that was on calendar? help!!!

    Hi skjcm,
    Welcome to the Support Communities!
    The article below may be able to help you with this issue.
    Click on the link to see more details and screenshots.
    iCloud: Troubleshooting iCloud Calendar
    http://support.apple.com/kb/TS3999
    Cheers,
    - Judy

  • I cant remember the password to a locked PDF file.  How do I retrieve the password?

    I can't remember the password for a locked PDF file.  How do I retrieve the password?

    Hi Ihatepasswords,
    We do not have any option to retrieve the password or reset the password of the PDF file.

  • Ive forgotten the password to my airport wifi system. How can I retrieve this?

    Ive forgotten the password to my airport wifi system. How can I retrieve this?

    https://discussions.apple.com/docs/DOC-3372

  • HT201441 i receive your support thru (forgot password) email.the problem now is i cannot open the file using my  ipad.because its asking for apple account and the problem is forgot password and security details when i make apple id.im the owner

    apple, my prroblem now is i cannot open the ios diagnostic using my ipad. the screen shows hello,language,and countrry.and sign in.the email address
    that i'm using before to sign in.and to activate my ipad (forgot password) is stiill i'm using now.i'm the owner of his gadget.i recieve ios diagnostic thru email send by apple.is there any other way to open this support.i'm using now my windows8 laptop,and i havve a new apple id.tnxs

    We are fellow users here on these forums, you're not talking to iTunes Support nor Apple. I don't know where you originally posted this question, but it's only just appeared in the Using iPad forum.
    If you can't remember your password then you can reset it via http://iforgot.apple.com
    If you can't get it reset via that site then you will have to contact Support in your country, they should be able to reset it for you (they can also reset your security questions if you've forgotten their answers).
    Contacting Apple about account security : Contact Apple for help with Apple ID account security - Apple Support
    If your country isn't on that page then try this form to contact Support : https://www.apple.com/emea/support/itunes/contact.html

Maybe you are looking for

  • 8.1 pro - Directx, game, and other applications crashing

    I did a clean, non-UEFI install of Windows 8 Pro, installed 68-odd windows updates, then upgraded to Windows 8.1. I've since had problems installing and/or running several applications. #1 : Before the Windows 8.1 upgrade, windows updates failed to i

  • Screen resolution in windows not as high as in 10.8

    I recently got my hard drive replaced in my Mid 2010 27" iMac. I've partitioned the drive to reinstall Win 7 but now the screen resolution in Win7 is not as high as it was on the old hard drive. In 10.8, it runs at full resolution 2560x1440 but in Wi

  • Clip video effects suddenly aren't working on already-exported project!

    I exported an iMovie 11 project to iTunes, and then realized I didn't apply color changes to it. I went back into iMovie, then trimmed a clip and it gave me the usual "you have edited your project, you'll have to finalize it again", or whatever it us

  • ORA-12705 Invalid or unknown NLS_LANG parameter value specified

    Hi, I am trying to connect to a remote Oracle 8i database using TOAD.I have Oracle 8i and 9i installed on Windows XP Professional.I am able to connect via SQL*PlUS and OEM.Initially I was able to connect with TOAD.Then I changed the environment varia

  • How to create customer self registration form iReceivables in 11.5.10.2

    Hi, I am new to iReceivables and in need to know how to create customer self registration in iReceivable 11.5.10.2. Please give the steps. I the guide its mentioned as need to create the static HTML page. If so please let me know how to do it. Please