BLACKSITE
:
216.73.217.4
:
104.37.75.190 / alpenpass.ca
:
Linux server3.pointsplan.com 5.14.0-503.38.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Apr 18 08:52:10 EDT 2025 x86_64
:
/
home2
/
apca
/
www
/
admin
/
Upload File:
files >> //home2/apca/www/admin/blogs.php
<?php session_start(); error_reporting(0); include('includes/config.php'); if(strlen($_SESSION['alogin'])==0) { header('location:index.php'); } else{ require("../includes/lib/common.php"); require("../includes/lib/classes/a/blogwriters.php"); require("../includes/lib/classes/a/blogs.php"); // require("../includes/lib/classes/a/users.php"); $blogwriters = new blogwriters(); $blogs = new blogs(); // $users = new users(); // $users->require_logged_in("login.php"); if($request->getvalue('request')!='') { $blog_id = $request->getvalue('request'); $blogs->load($blog_id); if($blogs->thumb_image!='') if(file_exists('../images/blogs/small/' . $blogs->thumb_image)) unlink('../images/blogs/small/' . $blogs->thumb_image); if($blogs->main_image!='') if(file_exists('../images/blogs/large/' . $blogs->main_image)) unlink('../images/blogs/large/' . $blogs->main_image); $blogs->delete($blog_id); } $writer_id = ($session->get('mode')=='writer')?$session->get('user_id'):0; $bloglist = $blogs->getlist('',$writer_id); ?> <!doctype html> <html lang="en-us"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1"> <meta name="description" content=""> <meta name="author" content=""> <meta name="theme-color" content="#3e454c"> <title>Alpenpass Motorcycle Rental Portal |Admin Manage Vehicles </title> <!-- Font awesome --> <link rel="stylesheet" href="css/font-awesome.min.css"> <!-- Sandstone Bootstrap CSS --> <link rel="stylesheet" href="css/bootstrap.min.css"> <!-- Bootstrap Datatables --> <link rel="stylesheet" href="css/dataTables.bootstrap.min.css"> <!-- Bootstrap social button library --> <link rel="stylesheet" href="css/bootstrap-social.css"> <!-- Bootstrap select --> <link rel="stylesheet" href="css/bootstrap-select.css"> <!-- Bootstrap file input --> <link rel="stylesheet" href="css/fileinput.min.css"> <!-- Awesome Bootstrap checkbox --> <link rel="stylesheet" href="css/awesome-bootstrap-checkbox.css"> <!-- Admin Stye --> <link rel="stylesheet" href="css/style.css"> <style> .errorWrap { padding: 10px; margin: 0 0 20px 0; background: #fff; border-left: 4px solid #dd3d36; -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1); box-shadow: 0 1px 1px 0 rgba(0,0,0,.1); } .succWrap{ padding: 10px; margin: 0 0 20px 0; background: #fff; border-left: 4px solid #5cb85c; -webkit-box-shadow: 0 1px 1px 0 rgba(0,0,0,.1); box-shadow: 0 1px 1px 0 rgba(0,0,0,.1); } .form-control{ margin-bottom:10px; } </style> </head> <body> <?php include('includes/header.php');?> <div class="ts-main-content"> <?php include('includes/leftbar.php');?> <div class="content-wrapper"> <div class="container-fluid"> <div class="row"> <div class="col-md-12"> <h2 class="page-title">Manage Blogs</h2> <!-- Zero Configuration Table --> <div class="panel panel-default"> <div class="panel-heading">User Testimonials</div> <div class="panel-body"> <?php if($error){?><div class="errorWrap"><strong>ERROR</strong>:<?php echo htmlentities($error); ?> </div><?php } else if($msg){?><div class="succWrap"><strong>SUCCESS</strong>:<?php echo htmlentities($msg); ?> </div><?php }?> <?php if($bloglist != 'empty') { ?> <table id="zctb" class="display table table-striped table-bordered table-hover" > <thead> <tr> <th>Blog ID</th><th>Blog Name</th><th>Author</th> <th>Release Date</th><th>Status</th><th>Image</th><th>Action</th> </tr> </thead> <tbody> <?php foreach($bloglist as $list) { ?> <tr class="gradeX"> <td><?php echo $list['blog_id'];?> </td> <td><?php echo cleanit($list['blog_name']);?> </td> <td><?php echo cleanit($list['name']);?> </td> <td><?php echo date("F j, Y",strtotime($list['release_date']));?> </td> <td><?php echo $list['status'];?> </td> <td> <?php if($list['thumb_image']!='') { ?> <img src="../images/blogs/small/<?php echo $list['thumb_image'];?>" width="40"> <?php } ?> </td> <td class="c"> <a href="manage_blog.php?request=<?php echo $list['blog_id'];?>">Update</a> | <a href="blogs.php?request=<?php echo $list['blog_id'];?>" onClick="return confirm('Are you sure you want to delete?')">Delete</a> </td> </tr> <?php } ?> </tbody> </table> <?php } else { echo " Sorry - no record found"; } ?> </section> </body> </html> <!-- Loading Scripts --> <script src="js/jquery.min.js"></script> <script src="js/bootstrap-select.min.js"></script> <script src="js/bootstrap.min.js"></script> <script src="js/jquery.dataTables.min.js"></script> <script src="js/dataTables.bootstrap.min.js"></script> <script src="js/Chart.min.js"></script> <script src="js/fileinput.js"></script> <script src="js/chartData.js"></script> <script src="js/main.js"></script> </body> </html> <?php } ?>