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 /
Delete
Unzip
Name
Size
Permission
Date
Action
admin
[ DIR ]
drwxr-xr-x
2025-10-18 01:48
assets
[ DIR ]
drwxr-xr-x
2025-10-18 01:48
db
[ DIR ]
drwxr-xr-x
2025-10-18 01:48
includes
[ DIR ]
drwxr-xr-x
2025-10-18 01:48
uploads
[ DIR ]
drwxr-xr-x
2025-10-18 01:48
user
[ DIR ]
drwxr-xr-x
2025-10-18 01:48
DEPLOYMENT_INSTRUCTIONS.md
3.05
KB
-rw-r--r--
2025-10-18 01:48
FIX_DUPLICATE_COMMISSIONS.md
3.63
KB
-rw-r--r--
2025-10-18 00:32
FIX_USER_EDIT_ISSUE.md
6.15
KB
-rw-r--r--
2025-10-18 00:44
IMPROVEMENTS_SUMMARY.md
4.11
KB
-rw-r--r--
2025-10-18 00:40
README.txt
2.34
KB
-rw-r--r--
2025-10-17 23:08
README_DEPLOYMENT.txt
1.74
KB
-rw-r--r--
2025-10-18 01:49
README_REFERRAL_COMMISSIONS.md
4.02
KB
-rw-r--r--
2025-10-18 00:22
SQL_CHANGES_SUMMARY.md
2.02
KB
-rw-r--r--
2025-10-18 00:25
apply_database_fixes.php
5.17
KB
-rw-r--r--
2025-10-18 00:39
check_commission_levels.php
3.16
KB
-rw-r--r--
2025-10-18 00:53
check_database_structure.php
3.9
KB
-rw-r--r--
2025-10-18 00:55
check_duplicate_commissions.php
4.38
KB
-rw-r--r--
2025-10-18 00:32
check_referrals_table.php
2.28
KB
-rw-r--r--
2025-10-18 00:39
complete_setup.sql
5.34
KB
-rw-r--r--
2025-10-18 00:25
complete_setup_for_import.sql
5.36
KB
-rw-r--r--
2025-10-18 01:59
create_table_direct.php
3.44
KB
-rw-r--r--
2025-10-18 00:09
css_test.php
999
B
-rw-r--r--
2025-10-18 02:06
debug_referral_chain.php
6.88
KB
-rw-r--r--
2025-10-18 00:54
fix_duplicate_commissions.php
2.67
KB
-rw-r--r--
2025-10-18 00:31
fix_referral_commissions.sql
677
B
-rw-r--r--
2025-10-18 00:25
fix_referral_commissions_for_import.sql
705
B
-rw-r--r--
2025-10-18 01:59
index.php
25.74
KB
-rw-r--r--
2025-10-18 02:05
index_with_css_fix.php
25.82
KB
-rw-r--r--
2025-10-18 02:06
login.php
4.15
KB
-rw-r--r--
2025-10-18 02:05
logout.php
88
B
-rw-r--r--
2025-10-17 23:02
register.php
6.58
KB
-rw-r--r--
2025-10-18 02:05
run_setup.bat
714
B
-rw-r--r--
2025-10-18 00:23
setup_referral_commissions.php
2.73
KB
-rw-r--r--
2025-10-18 00:21
test.php
59
B
-rw-r--r--
2025-10-17 23:16
test_commission_application.php
6.93
KB
-rw-r--r--
2025-10-18 00:55
test_commission_display.php
3.26
KB
-rw-r--r--
2025-10-18 00:19
test_commission_fix.php
3.16
KB
-rw-r--r--
2025-10-18 00:39
test_mobile_menu.php
2.73
KB
-rw-r--r--
2025-10-18 01:24
test_referral.php
2.07
KB
-rw-r--r--
2025-10-17 23:55
update_referral_commissions.sql
682
B
-rw-r--r--
2025-10-18 00:25
update_referral_commissions_for_import.sql
710
B
-rw-r--r--
2025-10-18 01:59
update_referrals_table.sql
398
B
-rw-r--r--
2025-10-18 00:31
update_referrals_table_for_import.sql
426
B
-rw-r--r--
2025-10-18 01:59
verify_commissions.php
3.28
KB
-rw-r--r--
2025-10-18 00:20
verify_commissions_working.php
8.2
KB
-rw-r--r--
2025-10-18 00:56
Save
Rename
<?php session_start(); // Database connection require_once 'includes/db.php'; // Fetch active plans from database try { $stmt = $pdo->prepare("SELECT * FROM plans WHERE status = 'active' ORDER BY price ASC"); $stmt->execute(); $plans = $stmt->fetchAll(PDO::FETCH_ASSOC); } catch (PDOException $e) { // Fallback to default plans if database error $plans = [ ['id' => 1, 'name' => 'Basic Plan', 'price' => 500.00, 'daily_ads' => 10, 'per_ad_earning' => 2.00], ['id' => 2, 'name' => 'Premium Plan', 'price' => 1000.00, 'daily_ads' => 20, 'per_ad_earning' => 3.00], ['id' => 3, 'name' => 'VIP Plan', 'price' => 2000.00, 'daily_ads' => 30, 'per_ad_earning' => 5.00] ]; } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Share & Earn - Home</title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css"> <link rel="stylesheet" href="/assets/css/style.css?v=1.0"> <style> /* Additional professional styling */ .hero-section { background: linear-gradient(135deg, #4361ee 0%, #3a0ca3 100%); color: white; padding: 5rem 0; margin-bottom: 3rem; } .feature-card { transition: transform 0.3s ease, box-shadow 0.3s ease; border: none; box-shadow: 0 5px 15px rgba(0,0,0,0.1); } .feature-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); } .plan-card { transition: all 0.3s ease; border-radius: 15px; overflow: hidden; height: 100%; background: white; border: none; box-shadow: 0 10px 30px rgba(0,0,0,0.1); } .plan-card:hover { transform: translateY(-15px); box-shadow: 0 20px 40px rgba(0,0,0,0.15); } .plan-header { padding: 1.5rem; color: white; font-weight: bold; text-align: center; } .pricing-card-title { font-size: 2.5rem; font-weight: 700; text-align: center; margin: 1.5rem 0; } .plan-features { padding: 0 2rem; margin: 2rem 0; } .plan-feature { padding: 0.75rem 0; border-bottom: 1px solid #eee; display: flex; align-items: center; } .plan-feature:last-child { border-bottom: none; } .plan-feature i { color: #4361ee; margin-right: 10px; } .btn-custom { border-radius: 50px; padding: 10px 25px; font-weight: 600; transition: all 0.3s ease; display: block; margin: 0 auto 1.5rem; width: 80%; } .btn-custom:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); } .stats-card { background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: all 0.3s ease; } .stats-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.15); } .stats-icon { width: 70px; height: 70px; display: flex; align-items: center; justify-content: center; border-radius: 15px; font-size: 1.8rem; margin: 0 auto 1rem; } footer { background: #1a1a2e; } .footer-link:hover { color: #4361ee !important; transition: color 0.3s ease; } /* Mobile menu button styling */ .navbar-toggler { background-color: black !important; border: none; border-radius: 4px; padding: 8px 12px; } .navbar-toggler:focus { box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.25); } .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important; width: 1.5em; height: 1.5em; } /* Center plans section */ .plans-section { background: linear-gradient(135deg, #f5f7fb 0%, #e4e7f1 100%); padding: 5rem 0; } .section-title { text-align: center; margin-bottom: 3rem; } .section-title h2 { font-weight: 800; color: #212529; position: relative; display: inline-block; padding-bottom: 15px; } .section-title h2:after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: linear-gradient(90deg, #4361ee, #3a0ca3); border-radius: 2px; } .section-title p { color: #6c757d; font-size: 1.2rem; max-width: 600px; margin: 1rem auto 0; } /* Testimonial styling */ .testimonial-card { border-radius: 15px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.3s ease; border: none; } .testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); } /* Blue logo styling */ .navbar-brand { color: #4361ee !important; font-weight: 800; background: linear-gradient(90deg, #4361ee, #3a0ca3); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-fill-color: transparent; } .navbar-brand i { color: #4361ee; } </style> </head> <body> <!-- Navigation --> <nav class="navbar navbar-expand-lg navbar-dark bg-primary shadow-sm"> <div class="container"> <a class="navbar-brand fw-bold" href="index.php"> <i class="fas fa-share-alt me-2"></i>Share & Earn </a> <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarNav"> <ul class="navbar-nav ms-auto"> <li class="nav-item"> <a class="nav-link active" href="index.php">Home</a> </li> <?php if (isset($_SESSION['user_id'])): ?> <li class="nav-item"> <a class="nav-link" href="user/dashboard.php">Dashboard</a> </li> <li class="nav-item"> <a class="nav-link" href="logout.php">Logout</a> </li> <?php else: ?> <li class="nav-item"> <a class="nav-link" href="login.php">Login</a> </li> <li class="nav-item"> <a class="nav-link" href="register.php">Register</a> </li> <?php endif; ?> </ul> </div> </div> </nav> <!-- Hero Section --> <section class="hero-section"> <div class="container"> <div class="row align-items-center"> <div class="col-lg-6"> <h1 class="display-4 fw-bold mb-4">Earn Money by Sharing & Watching Ads</h1> <p class="lead mb-4">Join thousands of users who are already earning money online. It's simple, easy, and legitimate!</p> <div class="d-flex flex-wrap gap-3"> <?php if (!isset($_SESSION['user_id'])): ?> <a href="register.php" class="btn btn-light btn-custom">Get Started</a> <a href="login.php" class="btn btn-outline-light btn-custom">Login</a> <?php else: ?> <a href="user/dashboard.php" class="btn btn-light btn-custom">Go to Dashboard</a> <?php endif; ?> </div> </div> <div class="col-lg-6 text-center"> <img src="https://images.unsplash.com/photo-1553877522-43269d4ea984?ixlib=rb-4.0.3&auto=format&fit=crop&w=600&h=400&q=80" alt="Earning Money" class="img-fluid rounded shadow-lg"> </div> </div> </div> </section> <!-- Stats Section --> <section class="py-5 bg-light"> <div class="container"> <div class="row g-4"> <div class="col-md-3"> <div class="stats-card text-center p-4"> <div class="stats-icon bg-primary text-white"> <i class="fas fa-users"></i> </div> <h3 class="fw-bold text-primary">10,000+</h3> <p class="text-muted mb-0">Active Users</p> </div> </div> <div class="col-md-3"> <div class="stats-card text-center p-4"> <div class="stats-icon bg-success text-white"> <i class="fas fa-rupee-sign"></i> </div> <h3 class="fw-bold text-success">₨50L+</h3> <p class="text-muted mb-0">Paid Out</p> </div> </div> <div class="col-md-3"> <div class="stats-card text-center p-4"> <div class="stats-icon bg-warning text-white"> <i class="fas fa-ad"></i> </div> <h3 class="fw-bold text-warning">500+</h3> <p class="text-muted mb-0">Daily Ads</p> </div> </div> <div class="col-md-3"> <div class="stats-card text-center p-4"> <div class="stats-icon bg-danger text-white"> <i class="fas fa-globe"></i> </div> <h3 class="fw-bold text-danger">24/7</h3> <p class="text-muted mb-0">Support</p> </div> </div> </div> </div> </section> <!-- Features Section --> <section class="py-5"> <div class="container"> <div class="text-center mb-5"> <h2 class="display-5 fw-bold">How It Works</h2> <p class="lead text-muted">Simple steps to start earning money today</p> </div> <div class="row g-4"> <div class="col-md-3"> <div class="card feature-card h-100 text-center"> <div class="card-body py-5"> <div class="rounded-circle bg-primary text-white d-flex align-items-center justify-content-center mx-auto mb-4" style="width: 80px; height: 80px;"> <i class="fas fa-user-plus fa-2x"></i> </div> <h5 class="card-title fw-bold">Sign Up</h5> <p class="card-text text-muted">Create your free account in less than a minute.</p> </div> </div> </div> <div class="col-md-3"> <div class="card feature-card h-100 text-center"> <div class="card-body py-5"> <div class="rounded-circle bg-success text-white d-flex align-items-center justify-content-center mx-auto mb-4" style="width: 80px; height: 80px;"> <i class="fas fa-shopping-cart fa-2x"></i> </div> <h5 class="card-title fw-bold">Buy Plan</h5> <p class="card-text text-muted">Choose a plan that suits your earning goals.</p> </div> </div> </div> <div class="col-md-3"> <div class="card feature-card h-100 text-center"> <div class="card-body py-5"> <div class="rounded-circle bg-warning text-white d-flex align-items-center justify-content-center mx-auto mb-4" style="width: 80px; height: 80px;"> <i class="fas fa-ad fa-2x"></i> </div> <h5 class="card-title fw-bold">Watch Ads</h5> <p class="card-text text-muted">Watch ads and complete tasks to earn money.</p> </div> </div> </div> <div class="col-md-3"> <div class="card feature-card h-100 text-center"> <div class="card-body py-5"> <div class="rounded-circle bg-danger text-white d-flex align-items-center justify-content-center mx-auto mb-4" style="width: 80px; height: 80px;"> <i class="fas fa-money-bill-wave fa-2x"></i> </div> <h5 class="card-title fw-bold">Withdraw Earnings</h5> <p class="card-text text-muted">Withdraw your earnings to your preferred method.</p> </div> </div> </div> </div> </div> </section> <!-- Plans Section --> <section class="plans-section"> <div class="container"> <div class="section-title"> <h2>Our Plans</h2> <p>Choose a plan that fits your earning goals</p> </div> <div class="row justify-content-center g-4"> <?php foreach ($plans as $index => $plan): ?> <div class="col-lg-4 col-md-6"> <div class="card plan-card h-100"> <?php $bgColors = ['bg-primary', 'bg-success', 'bg-danger']; $btnClasses = ['btn-outline-primary', 'btn-success', 'btn-danger']; $colorIndex = $index % 3; ?> <div class="plan-header <?php echo $bgColors[$colorIndex]; ?>"> <h4 class="my-0 fw-bold"><?php echo htmlspecialchars($plan['name']); ?></h4> </div> <div class="card-body"> <h1 class="pricing-card-title">₨<?php echo number_format($plan['price'], 0); ?><small class="text-muted fw-light">/mo</small></h1> <div class="plan-features"> <div class="plan-feature"> <i class="fas fa-check-circle"></i> <span><?php echo $plan['daily_ads']; ?> Ads Per Day</span> </div> <div class="plan-feature"> <i class="fas fa-check-circle"></i> <span>₨<?php echo $plan['per_ad_earning']; ?> Per Ad</span> </div> <div class="plan-feature"> <i class="fas fa-check-circle"></i> <span>Basic Support</span> </div> <div class="plan-feature"> <i class="fas fa-check-circle"></i> <span>Email Support</span> </div> </div> <?php if (!isset($_SESSION['user_id'])): ?> <a href="register.php" class="w-75 btn btn-lg <?php echo $btnClasses[$colorIndex]; ?> btn-custom">Sign up</a> <?php else: ?> <a href="user/deposit.php" class="w-75 btn btn-lg <?php echo $btnClasses[$colorIndex]; ?> btn-custom">Buy Now</a> <?php endif; ?> </div> </div> </div> <?php endforeach; ?> </div> </div> </section> <!-- Testimonials Section --> <section class="py-5"> <div class="container"> <div class="section-title"> <h2>What Our Users Say</h2> <p>Real stories from our satisfied members</p> </div> <div class="row g-4"> <div class="col-md-4"> <div class="card testimonial-card h-100"> <div class="card-body"> <div class="d-flex align-items-center mb-3"> <div class="bg-light rounded-circle d-flex align-items-center justify-content-center me-3" style="width: 50px; height: 50px;"> <i class="fas fa-user text-primary"></i> </div> <div> <h5 class="mb-0">Ahmed Khan</h5> <small class="text-muted">Premium Member</small> </div> </div> <p class="card-text">"I've been using Share & Earn for 6 months now and I'm really impressed with the consistent earnings. The platform is user-friendly and payments are always on time."</p> <div class="text-warning"> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> </div> </div> </div> </div> <div class="col-md-4"> <div class="card testimonial-card h-100"> <div class="card-body"> <div class="d-flex align-items-center mb-3"> <div class="bg-light rounded-circle d-flex align-items-center justify-content-center me-3" style="width: 50px; height: 50px;"> <i class="fas fa-user text-success"></i> </div> <div> <h5 class="mb-0">Fatima Ali</h5> <small class="text-muted">VIP Member</small> </div> </div> <p class="card-text">"As a housewife, this platform has been a blessing. I can earn from home while taking care of my family. The VIP plan gives excellent returns and the support team is very helpful."</p> <div class="text-warning"> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star-half-alt"></i> </div> </div> </div> </div> <div class="col-md-4"> <div class="card testimonial-card h-100"> <div class="card-body"> <div class="d-flex align-items-center mb-3"> <div class="bg-light rounded-circle d-flex align-items-center justify-content-center me-3" style="width: 50px; height: 50px;"> <i class="fas fa-user text-danger"></i> </div> <div> <h5 class="mb-0">Usman Siddiqui</h5> <small class="text-muted">Basic Member</small> </div> </div> <p class="card-text">"Started with the basic plan and gradually moved to premium. The platform is legitimate and the earnings are consistent. I recommend it to anyone looking for a side income."</p> <div class="text-warning"> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="fas fa-star"></i> <i class="far fa-star"></i> </div> </div> </div> </div> </div> </div> </section> <!-- Footer --> <footer class="text-light py-5"> <div class="container"> <div class="row"> <div class="col-md-4 mb-4 mb-md-0"> <h5 class="fw-bold mb-3"><i class="fas fa-share-alt me-2"></i>Share & Earn</h5> <p>Earn money by sharing and watching ads. Legitimate way to make extra income online with a trusted platform.</p> <div class="d-flex gap-3 mt-3"> <a href="#" class="text-light footer-link"><i class="fab fa-facebook-f"></i></a> <a href="#" class="text-light footer-link"><i class="fab fa-twitter"></i></a> <a href="#" class="text-light footer-link"><i class="fab fa-instagram"></i></a> <a href="#" class="text-light footer-link"><i class="fab fa-linkedin-in"></i></a> </div> </div> <div class="col-md-2 mb-4 mb-md-0"> <h5 class="fw-bold mb-3">Links</h5> <ul class="list-unstyled"> <li class="mb-2"><a href="index.php" class="text-light text-decoration-none footer-link">Home</a></li> <li class="mb-2"><a href="login.php" class="text-light text-decoration-none footer-link">Login</a></li> <li class="mb-2"><a href="register.php" class="text-light text-decoration-none footer-link">Register</a></li> <li class="mb-2"><a href="#" class="text-light text-decoration-none footer-link">FAQ</a></li> </ul> </div> <div class="col-md-3 mb-4 mb-md-0"> <h5 class="fw-bold mb-3">Plans</h5> <ul class="list-unstyled"> <li class="mb-2"><a href="#" class="text-light text-decoration-none footer-link">Basic Plan</a></li> <li class="mb-2"><a href="#" class="text-light text-decoration-none footer-link">Premium Plan</a></li> <li class="mb-2"><a href="#" class="text-light text-decoration-none footer-link">VIP Plan</a></li> <li class="mb-2"><a href="#" class="text-light text-decoration-none footer-link">Compare Plans</a></li> </ul> </div> <div class="col-md-3"> <h5 class="fw-bold mb-3">Contact</h5> <ul class="list-unstyled"> <li class="mb-2"><i class="fas fa-envelope me-2"></i> support@shareearn.com</li> <li class="mb-2"><i class="fas fa-phone me-2"></i> +92 300 1234567</li> <li class="mb-2"><i class="fas fa-map-marker-alt me-2"></i> Karachi, Pakistan</li> </ul> </div> </div> <hr class="my-4"> <div class="text-center"> <p class="mb-0">© 2025 Share & Earn. All rights reserved. | Designed with <i class="fas fa-heart text-danger"></i></p> </div> </div> </footer> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"></script> </body> </html>