IPB

Welcome Guest ( Log In | Register )



Tags
This content has not been tagged yet
 
Closed TopicStart new topic

I Can't Find The Password Reset Page... [resolved]


saitunes
no avatar
Super Member
*********
Group: [HOSTED]
Posts: 290
Joined: 16-February 08
From: Brisbane, AU
Member No.: 57,945
myCENT:50.83



Post #1 post Sep 25 2008, 10:23 AM
I can't find the password reset page (I know it costs credits to request)

Can anyone give me the link please to that page, it has other options too if i remember.

Thanks
Go to the top of the page
+Quote Post
Nabb
no avatar
Super Member
*********
Group: [HOSTED]
Posts: 244
Joined: 24-July 08
From: Australia
Member No.: 65,436
Spam Patrol
myCENT:58.68



Post #2 post Sep 25 2008, 10:33 AM
I think it's located at /manage

No problem
Go to the top of the page
+Quote Post
-Sky-
no avatar
Per essere, o non essere.
*********
Group: [HOSTED]
Posts: 766
Joined: 30-August 08
From: Italy
Member No.: 67,096
myCENT:75.83



Post #3 post Sep 25 2008, 10:49 AM
Yes. Nabb is right. Once you get on that page login, and/or click here: Change cPanel Password.
You then will come to a page like that says:
QUOTE
Change/Reset your Web Hosting Password




This action will cost you 10 hosting credits.

Once the request is successfully processed, you will be sent an email to your address stored in our records at Forum.

This Page must be used incase you have forgotten your CPanel Password and cannot login to your account.

If you have access to your CPanel and want to change your Password, Please use the CHANGE PASSWORD option in CPanel to change your password.
. Click CONFIRM PASSWORD RESET.

-Sky smile.gif
Go to the top of the page
+Quote Post
jlhaslip
no avatar
Insert Custom Title Here
*******************
Group: [MODERATOR]
Posts: 4,934
Joined: 24-July 05
From: Linux, DOS and Windows…the good, the bad and the ugly
Member No.: 9,787
Spam Patrol
myCENT:5.30



Post #4 post Sep 25 2008, 01:10 PM
If you have access to your Cpanel, using the password manger there will cost 0 credits
Go to the top of the page
+Quote Post
saitunes
no avatar
Super Member
*********
Group: [HOSTED]
Posts: 290
Joined: 16-February 08
From: Brisbane, AU
Member No.: 57,945
myCENT:50.83



Post #5 post Sep 26 2008, 12:22 AM
Thank-you. This has been resolved you can close off the topic now.
Go to the top of the page
+Quote Post
jlhaslip
no avatar
Insert Custom Title Here
*******************
Group: [MODERATOR]
Posts: 4,934
Joined: 24-July 05
From: Linux, DOS and Windows…the good, the bad and the ugly
Member No.: 9,787
Spam Patrol
myCENT:5.30



Post #6 post Sep 26 2008, 12:35 AM
Topic is resolved.

Please PM any moderator to continue this discussion. Until then, this topic is closed.
Go to the top of the page
+Quote Post
iGuest
no avatar
Hail Caesar!
*********************
Group: Members
Posts: 5,876
Joined: 21-September 07
Member No.: 50,369



Post #7 post Nov 20 2009, 03:43 AM
code for forgot password and username
I Can't Find The Password Reset Page... [resolved]

I am unable to find the code for the forgot password and username in php.

I have the following code but it doesnot work.

please help me in this so that I can get the correct code as soon as possible.

<?php
If (!defined('INDEX_LOADED')) return;

// Open the database connection.
$dbc = odbc_connect("VSM", "","");

 if ($_POST['forgot password'] != '')
 {
  $email       = isset($_POST['email'])     ? strip_illegal_entities($_POST['email'])    : '';
  
  if($email == '')         $error_message[] = 'Please enter your email address.';         //email must be more than 0 characters.
  else if(!validate_email_address($email))   $error_message[] = 'The email address you have entered is invalid.';      //email should be valid.
   
   if (count($error_message) == 0)
  {
   if(!$dbc)
    exit("Connection Failed:".$dbc);
 
   $sql = "SELECT EmailAddress FROM TblResource WHERE EmailAddress='$email'";
   $rs = odbc_exec($dbc, $sql);
    if(!$rs)         $error_message[] = 'Account with given email does not exist';
   while(odbc_fetch_row($rs))               $useremail=odbc_result($rs,"EmailAddress");
   
   if($useremail != '')       
   {
    //generate a random id encrypt it and store it in $newpwd
    $newpwd = crypt(uniqid(rand(),1));

    //to remove any slashes that might have come
    $newpwd = strip_tags(stripslashes($newpwd));

    //Removing any . Or / and reversing the string
    $newpwd = str_replace(".","",$newpwd);
    $newpwd = strrev(str_replace("/","",$newpwd));

    //finally I take the first 10 characters from the $newpwd
    $newpwd = substr($newpwd,0,6);

    $newmd5pwd = md5($newpwd);
    
    $sql1= "UPDATE TblResource SET PW='$newmd5pwd' WHERE EmailAddress='$email'";
    $rs = odbc_exec($dbc, $sql1);
     if(!$rs)        $error_message[] = 'Error in providing New Password.';
    else
    {
     $message  = "You have requested new login details from $host. Here are the login details...\and\and";
     $message .= "Username: $email\r\and\and";
      $message .= "Password: $newpwd\r\and\and";
     $message .= "With Regards";
     
     $headers  = "Return-Path: <webmaster@abc.Org.Au>\r\and";
        $headers .= "From: abc<webmaster@abc.Org.Au>\r\and";
        $headers .= "User-Agent: abc organisation id\r\and";
     
        if (mail($email, "abc organisation id", $message, $headers))
     {
      ?>
      <h2>Thank you. Your password has been reset and your new
      login details has been sent to your email address</h2>
      <?php
      
     }
    }
   }
  }
 }
 // If the form is not being submitted or there are errors in the submitted form, display the registration form.
 if ($_POST['forgot password'] == '' || count($error_message) > 0){
?>
<html>
<head lang="en-au">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="../../includes/register.Css">
</head>
<h1>Reset my Password</h1><br />
<?php if (count($error_message) > 0) include('error.Php'); ?>
<hr>
<h3>To reset your password, enter your email address. An email will be send to you with your new password.</h3> 
<form method="POST" action="../../index.Php?section=volunteer&amp;page=forgot" name="forgot" id="forgot" >
 <fieldset>
  <label for="email" class="required" >Your Email: </label>
   <input type="text" id="email" name="email" tabindex="1" title="email"><br />
  <div class="button">
   <input type="submit" value="Send" id="forgot" name="forgot" tabindex="3">
  </div>
 </fieldset>
</form>
</html>
<?php } ?>

-question by harsh

 

Go to the top of the page
+Quote Post

Closed TopicStart new topic

Collapse

> Similar Topics

    Topic Title Replies Topic Starter Views Last Action
No New Posts   5 bluedragon 2,164 17th October 2009 - 02:34 PM
Last post by: iG-drew
No new 26 templest 31,454 15th June 2009 - 07:12 AM
Last post by: gannimel
No New Posts   6 kudmus 701 29th November 2008 - 10:35 AM
Last post by: kudmus
No New Posts   6 galexcd 1,284 27th June 2007 - 03:56 PM
Last post by: alex7h3pr0gr4m3r
No New Posts   0 OpaQue 6,837 28th July 2004 - 07:30 PM
Last post by: OpaQue
No new   18 Panzer 2,435 28th September 2009 - 01:30 AM
Last post by: jlhaslip
No New Posts 2 znithy 5,465 29th July 2004 - 03:13 PM
Last post by: znithy
No New Posts   12 zhangzy 6,738 29th August 2009 - 05:44 AM
Last post by: Spyke Jones
No New Posts   2 Sjecht 6,342 20th August 2004 - 10:10 PM
Last post by: wassie
No New Posts   2 MSTR 5,306 31st August 2004 - 09:38 AM
Last post by: Spectre
No New Posts   5 contactskn 63 5th November 2009 - 11:20 PM
Last post by: user681
No New Posts   10 spawn_syxx9 10,437 10th September 2004 - 06:08 AM
Last post by: wassie
No New Posts   1 nbop 4,128 20th September 2004 - 03:41 AM
Last post by: ipunto21
No New Posts 1 NuHoaXuLa 5,131 17th September 2004 - 06:01 AM
Last post by: wassie
No New Posts   10 lloydg 1,712 8th February 2009 - 11:15 AM
Last post by: aloKNsh


 



RSS Open Discussion Time is now: 22nd November 2009 - 12:01 AM

Web Hosting Powered by ComputingHost.com.