HEX
Server: LiteSpeed
System: Linux kapuas.iixcp.rumahweb.net 5.14.0-427.42.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Nov 1 14:58:02 EDT 2024 x86_64
User: mirz4654 (1666)
PHP: 8.1.33
Disabled: system,exec,escapeshellarg,escapeshellcmd,passthru,proc_close,proc_get_status,proc_nice,proc_open,proc_terminate,shell_exec,popen,pclose,dl,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setsid,posix_setuid,posix_setpgid,ini_alter,show_source,define_syslog_variables,symlink,syslog,openlog,openlog,closelog,ocinumcols,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dll,ftp,myshellexec,socket_bind,mail,posix_getwpuid
Upload Files
File: /home/mirz4654/public_html/wp-content/plugins/wp-rocket/views/settings/fields/import-form.php
<?php
/**
 * Import form template.
 *
 * @since 3.0
 *
 * @param array $data {
 *     Import form data.
 *
 *     @type array  $upload_dir  Array containing data about the upload dir, and an error key and message if needed.
 *     @type string $size        Max upload size in a human readable format.
 *     @type string $bytes       Raw max upload size.
 *     @type string $action      WordPress action associated with the form.
 *     @type string $submit_text Content for the submit button.
 * }
 */

defined( 'ABSPATH' ) || die( 'Cheatin&#8217; uh?' );

if ( ! empty( $data['upload_dir']['error'] ) ) {
	?>
	<div class="error"><p><?php _e( 'Before you can upload your import file, you will need to fix the following error:', 'rocket' ); ?></p>
	<p><strong><?php echo esc_html( $data['upload_dir']['error'] ); ?></strong></p></div>
<?php
} else {
	?>
	<form action="<?php echo esc_url( admin_url( 'admin-post.php' ) ); ?>" method="POST" enctype="multipart/form-data" class="wpr-tools">
		<div class="wpr-tools-col">
			<label for="upload" class="wpr-title3 wpr-tools-label wpr-icon-import"><?php _e( 'Import settings', 'rocket' ); ?></label>
			<div class="wpr-upload">
				<input type="file" accept=".txt,.json" id="upload" name="import" size="25" />
				<small for="upload" class="wpr-field-description">
					<?php
					// translators: %s is the maximum upload size set on the current server.
					printf( __( 'Choose a file from your computer (maximum size: %s)', 'rocket' ), esc_html( $data['size'] ) );
					?>
				</small>
			</div>
			<input type="hidden" name="max_file_size" value="<?php echo esc_attr( $data['bytes'] ); ?>" />
			<input type="hidden" name="action" value="<?php echo esc_attr( $data['action'] ); ?>" />
		</div>
		<div class="wpr-tools-col">
			<?php
			wp_nonce_field( $data['action'], $data['action'] . '_nonce' );
			?>
			<button type="submit" class="wpr-button wpr-button--icon wpr-button--small wpr-button--purple wpr-icon-chevron-up" value="<?php echo esc_attr( $data['submit_text'] ); ?>"><?php echo esc_attr( $data['submit_text'] ); ?></button>
		</div>
	</form>
	<?php
}