Phase 6: WebP image conversion - Converter for Media plugin with Nginx rewrite rules

This commit is contained in:
Hanson.xyz Dev
2025-11-28 17:16:24 -06:00
parent 91de533da4
commit 78a744ef06
260 changed files with 21138 additions and 5 deletions
@@ -0,0 +1,47 @@
<?php
/**
* Information about PHP configuration displayed in server configuration widget.
*
* @package Converter for Media
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
?>
<h4>PHP</h4>
<table>
<tbody>
<tr>
<td class="e">Version</td>
<td class="v">
<?php echo esc_html( phpversion() ?: '-' ); ?>
</td>
</tr>
<tr>
<td class="e">memory_limit</td>
<td class="v">
<?php echo esc_html( ini_get( 'memory_limit' ) ?: '-' ); ?>
</td>
</tr>
<tr>
<td class="e">max_execution_time</td>
<td class="v">
<?php echo esc_html( ini_get( 'max_execution_time' ) ?: '-' ); ?>
</td>
</tr>
<tr>
<td class="e">disable_functions</td>
<td class="v">
<?php echo esc_html( ini_get( 'disable_functions' ) ?: '-' ); ?>
</td>
</tr>
<tr>
<td class="e">SERVER_SOFTWARE</td>
<td class="v">
<?php echo esc_html( $_SERVER['SERVER_SOFTWARE'] ?? '-' ); // phpcs:ignore WordPress.Security.ValidatedSanitizedInput ?>
</td>
</tr>
</tbody>
</table>