Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html_old /
iscreen.apps-dev.fr /
js /
admin /
Delete
Unzip
Name
Size
Permission
Date
Action
addons.js
3.63
KB
-rwxrwxrwx
2019-04-30 18:42
attachments.js
146
B
-rwxrwxrwx
2019-04-30 18:42
attributes.js
5.65
KB
-rwxrwxrwx
2019-04-30 18:42
carrier_wizard.js
25.58
KB
-rwxrwxrwx
2019-04-30 18:42
dashboard.js
10.11
KB
-rwxrwxrwx
2019-04-30 18:42
dnd.js
5.73
KB
-rwxrwxrwx
2019-04-30 18:42
email.js
344
B
-rwxrwxrwx
2019-04-30 18:42
import.js
4.79
KB
-rwxrwxrwx
2019-04-30 18:42
index.php
1.24
KB
-rwxrwxrwx
2019-04-30 18:42
login.js
5.23
KB
-rwxrwxrwx
2019-04-30 18:42
modules-position.js
5.99
KB
-rwxrwxrwx
2019-04-30 18:42
notifications.js
3.85
KB
-rwxrwxrwx
2019-04-30 18:42
orders.js
31.4
KB
-rwxrwxrwx
2019-04-30 18:42
price.js
10.14
KB
-rwxrwxrwx
2019-04-30 18:42
products.js
56.16
KB
-rwxrwxrwx
2019-04-30 18:42
scenes.js
6.88
KB
-rwxrwxrwx
2019-04-30 18:42
themes.js
2.18
KB
-rwxrwxrwx
2019-04-30 18:42
tinymce.inc.js
1.7
KB
-rwxrwxrwx
2019-04-30 18:42
Save
Rename
$(document).ready(function() { var hints = $('.translatable span.hint'); if (youEditFieldFor) hints.html(hints.html() + '<br /><span class="red">' + youEditFieldFor + '</span>'); var html = ""; var nb_notifs = 0; var wrapper_id = ""; var type = new Array(); $(".notifs").click(function(){ var wrapper_id = $(this).parent().attr("id"); $.post( "ajax.php", { "updateElementEmployee" : "1", "updateElementEmployeeType" : $(this).parent().attr('data-type') }, function(data) { if (data) { $("#" + wrapper_id + "_value").html(0); $("#" + wrapper_id + "_number_wrapper").hide(); } } ); }); // call it once immediately, then use setTimeout if refresh is activated getPush(autorefresh_notifications); }); function getPush(refresh) { $.ajax({ type: 'POST', headers: {"cache-control": "no-cache"}, url: 'ajax.php?rand=' + new Date().getTime(), async: true, cache: false, dataType : 'json', data: {"getNotifications" : "1"}, success: function(json) { if (json) { // Set moment language moment.lang(full_language_code); // Add orders notifications to the list html = ""; $.each(json.order.results, function(property, value) { html += "<a href='index.php?tab=AdminOrders&token=" + token_admin_orders + "&vieworder&id_order=" + parseInt(value.id_order) + "'>"; html += "<p>" + order_number_msg + " <strong>#" + parseInt(value.id_order) + "</strong></p>"; html += "<p class='pull-right'>" + total_msg + " <span class='total badge badge-success'>" + value.total_paid + "</span></p>"; html += "<p>" + from_msg + " <strong>" + value.customer_name + "</strong></p>"; html += "<small class='text-muted'><i class='icon-time'></i> " + moment(value.update_date).fromNow() + " </small>"; html += "</a>"; }); if (parseInt(json.order.total) > 0) { $("#list_orders_notif").empty().append(html); $("#orders_notif_value").text(json.order.total); $("#orders_notif_number_wrapper").removeClass('hide'); } else $("#orders_notif_number_wrapper").addClass('hide'); // Add customers notifications to the list html = ""; $.each(json.customer.results, function(property, value) { html += "<a href='index.php?tab=AdminCustomers&token=" + token_admin_customers + "&viewcustomer&id_customer=" + parseInt(value.id_customer) + "'>"; html += "<p>" + customer_name_msg + " <strong>#" + value.customer_name + "</strong></p>"; html += "<small class='text-muted'><i class='icon-time'></i> " + moment(value.update_date).fromNow() + " </small>"; html += "</a>"; }); if (parseInt(json.customer.total) > 0) { $("#list_customers_notif").empty().append(html); $("#customers_notif_value").text(json.customer.total); $("#customers_notif_number_wrapper").removeClass('hide'); } else $("#customers_notif_number_wrapper").addClass('hide'); // Add messages notifications to the list html = ""; $.each(json.customer_message.results, function(property, value) { html += "<a href='index.php?tab=AdminCustomerThreads&token=" + token_admin_customer_threads + "&viewcustomer_thread&id_customer_thread=" + parseInt(value.id_customer_thread) + "'>"; html += "<p>" + from_msg + " <strong>" + value.customer_name + "</strong></p>"; html += "<small class='text-muted'><i class='icon-time'></i> " + moment(value.update_date).fromNow() + " </small>"; html += "</a>"; }); if (parseInt(json.customer_message.total) > 0) { $("#list_customer_messages_notif").empty().append(html); $("#customer_messages_notif_value").text(json.customer_message.total); $("#customer_messages_notif_number_wrapper").removeClass('hide'); } else $("#customer_messages_notif_number_wrapper").addClass('hide'); } if (refresh) setTimeout("getPush(1)", 120000); } }); }