📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-01 10:25:08
📂
/ (Root)
/
var
/
softaculous
/
sitepad
/
editor
/
site-data
/
plugins
/
kkart-pro
/
includes
/
gateways
/
stripe
/
stripe-php
📍 /var/softaculous/sitepad/editor/site-data/plugins/kkart-pro/includes/gateways/stripe/stripe-php
🔄 Refresh
✏️
Editing: update_certs.php
Read Only
#!/usr/bin/env php <?php \chdir(__DIR__); \set_time_limit(0); // unlimited max execution time $fp = \fopen(__DIR__ . '/data/ca-certificates.crt', 'w+b'); $options = [ \CURLOPT_FILE => $fp, \CURLOPT_TIMEOUT => 3600, \CURLOPT_URL => 'https://curl.se/ca/cacert.pem', ]; $ch = \curl_init(); \curl_setopt_array($ch, $options); \curl_exec($ch); \curl_close($ch); \fclose($fp);
💾 Save Changes
❌ Cancel