Linux spg1.cloudpowerdns.com 5.14.0-611.34.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 18 05:51:10 EST 2026 x86_64
LiteSpeed
Server IP : 176.9.63.151 & Your IP : 216.73.217.60
Domains :
Cant Read [ /etc/named.conf ]
User : fastear1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
fastear1 /
.trash /
deployment_package /
user /
Delete
Unzip
Name
Size
Permission
Date
Action
ads.php
4.94
KB
-rw-r--r--
2025-10-17 23:43
dashboard.php
10.78
KB
-rw-r--r--
2025-10-18 00:40
deposit.php
6.02
KB
-rw-r--r--
2025-10-17 23:02
deposit_history.php
3.23
KB
-rw-r--r--
2025-10-17 23:03
dpin.php
5.9
KB
-rw-r--r--
2025-10-17 23:03
footer.php
565
B
-rw-r--r--
2025-10-17 23:02
header.php
12.32
KB
-rw-r--r--
2025-10-18 02:06
invite.php
3.53
KB
-rw-r--r--
2025-10-18 00:19
membership.php
11.7
KB
-rw-r--r--
2025-10-18 00:56
profile.php
5.27
KB
-rw-r--r--
2025-10-17 23:04
team.php
5.26
KB
-rw-r--r--
2025-10-17 23:50
transactions.php
3.85
KB
-rw-r--r--
2025-10-17 23:04
withdraw.php
6.19
KB
-rw-r--r--
2025-10-17 23:03
Save
Rename
<?php $title = 'Profile'; include 'header.php'; $error = ''; $success = ''; // Handle profile update if ($_SERVER['REQUEST_METHOD'] === 'POST') { $fullname = trim($_POST['fullname']); $email = trim($_POST['email']); $phone = trim($_POST['phone']); // Handle password change $password = $_POST['password']; $confirm_password = $_POST['confirm_password']; // Validation if (empty($fullname) || empty($email) || empty($phone)) { $error = 'Please fill in all required fields.'; } elseif (!empty($password) && strlen($password) < 6) { $error = 'Password must be at least 6 characters.'; } elseif (!empty($password) && $password !== $confirm_password) { $error = 'Passwords do not match.'; } else { try { // Update user information if (!empty($password)) { // Update with password change $hashed_password = password_hash($password, PASSWORD_DEFAULT); $stmt = $pdo->prepare("UPDATE users SET fullname = ?, email = ?, phone = ?, password = ? WHERE id = ?"); $stmt->execute([$fullname, $email, $phone, $hashed_password, $_SESSION['user_id']]); } else { // Update without password change $stmt = $pdo->prepare("UPDATE users SET fullname = ?, email = ?, phone = ? WHERE id = ?"); $stmt->execute([$fullname, $email, $phone, $_SESSION['user_id']]); } $success = 'Profile updated successfully.'; // Update session data $_SESSION['user_name'] = $fullname; $_SESSION['user_email'] = $email; } catch (PDOException $e) { $error = 'Failed to update profile. Please try again.'; } } } ?> <div class="d-flex justify-content-between flex-wrap flex-md-nowrap align-items-center pt-3 pb-2 mb-3 border-bottom"> <h1 class="h2">Profile</h1> </div> <?php if ($error): ?> <div class="alert alert-danger"><?php echo htmlspecialchars($error); ?></div> <?php endif; ?> <?php if ($success): ?> <div class="alert alert-success"><?php echo htmlspecialchars($success); ?></div> <?php endif; ?> <div class="row"> <div class="col-md-8"> <div class="card"> <div class="card-body"> <form method="POST"> <div class="mb-3"> <label for="fullname" class="form-label">Full Name</label> <input type="text" class="form-control" id="fullname" name="fullname" value="<?php echo htmlspecialchars($user['fullname']); ?>" required> </div> <div class="mb-3"> <label for="email" class="form-label">Email Address</label> <input type="email" class="form-control" id="email" name="email" value="<?php echo htmlspecialchars($user['email']); ?>" required> </div> <div class="mb-3"> <label for="phone" class="form-label">Phone Number</label> <input type="text" class="form-control" id="phone" name="phone" value="<?php echo htmlspecialchars($user['phone']); ?>" required> </div> <div class="mb-3"> <label for="referral_code" class="form-label">Referral Code</label> <input type="text" class="form-control" id="referral_code" name="referral_code" value="<?php echo htmlspecialchars($user['referral_code']); ?>" readonly> </div> <div class="mb-3"> <label for="joined_at" class="form-label">Joining Date</label> <input type="text" class="form-control" id="joined_at" name="joined_at" value="<?php echo date('M d, Y', strtotime($user['joined_at'])); ?>" readonly> </div> <hr> <h5>Change Password</h5> <div class="mb-3"> <label for="password" class="form-label">New Password (Leave blank to keep current)</label> <input type="password" class="form-control" id="password" name="password"> </div> <div class="mb-3"> <label for="confirm_password" class="form-label">Confirm New Password</label> <input type="password" class="form-control" id="confirm_password" name="confirm_password"> </div> <button type="submit" class="btn btn-primary">Update Profile</button> </form> </div> </div> </div> <div class="col-md-4"> <div class="card"> <div class="card-body"> <h5 class="card-title">Profile Information</h5> <p>Your profile information is displayed here. You can update your personal details and change your password.</p> <p>Your referral code is <strong><?php echo htmlspecialchars($user['referral_code']); ?></strong>. Share this code with friends to earn commissions.</p> </div> </div> </div> </div> <?php include 'footer.php'; ?>