🚀 Auto Backup WP
var
/
www
/
vhosts
/
construcciondepiscinas.top
/
httpdocs
/
wp-admin
/
Name
Size
Perm
Action
css/
DIR
drwxr-xr-x
🗑️
📝
🔧
images/
DIR
drwxr-xr-x
🗑️
📝
🔧
includes/
DIR
drwxr-xr-x
🗑️
📝
🔧
js/
DIR
drwxr-xr-x
🗑️
📝
🔧
maint/
DIR
drwxr-xr-x
🗑️
📝
🔧
network/
DIR
drwxr-xr-x
🗑️
📝
🔧
user/
DIR
drwxr-xr-x
🗑️
📝
🔧
about.php
38197B
-rw-r--r--
🗑️
✏️
📝
🔧
admin-functions.php
406B
-rw-r--r--
🗑️
✏️
📝
🔧
admin-post.php
2047B
-rw-r--r--
🗑️
✏️
📝
🔧
credits.php
3784B
-rw-r--r--
🗑️
✏️
📝
🔧
edit-tags.php
22365B
-rw-r--r--
🗑️
✏️
📝
🔧
erase-personal-data.php
7449B
-rw-r--r--
🗑️
✏️
📝
🔧
export.php
11000B
-rw-r--r--
🗑️
✏️
📝
🔧
freedoms.php
4532B
-rw-r--r--
🗑️
✏️
📝
🔧
import.php
7561B
-rw-r--r--
🗑️
✏️
📝
🔧
index.php
7813B
-rw-r--r--
🗑️
✏️
📝
🔧
install.php
17046B
-rw-r--r--
🗑️
✏️
📝
🔧
link-manager.php
4250B
-rw-r--r--
🗑️
✏️
📝
🔧
link.php
2761B
-rw-r--r--
🗑️
✏️
📝
🔧
media-new.php
3241B
-rw-r--r--
🗑️
✏️
📝
🔧
media-upload.php
3570B
-rw-r--r--
🗑️
✏️
📝
🔧
media.php
5616B
-rw-r--r--
🗑️
✏️
📝
🔧
moderation.php
307B
-rw-r--r--
🗑️
✏️
📝
🔧
ms-delete-site.php
4279B
-rw-r--r--
🗑️
✏️
📝
🔧
ms-sites.php
215B
-rw-r--r--
🗑️
✏️
📝
🔧
ms-themes.php
217B
-rw-r--r--
🗑️
✏️
📝
🔧
my-sites.php
4669B
-rw-r--r--
🗑️
✏️
📝
🔧
network.php
5444B
-rw-r--r--
🗑️
✏️
📝
🔧
options-discussion.php
15461B
-rw-r--r--
🗑️
✏️
📝
🔧
options-general.php
15326B
-rw-r--r--
🗑️
✏️
📝
🔧
options-head.php
492B
-rw-r--r--
🗑️
✏️
📝
🔧
options-media.php
6329B
-rw-r--r--
🗑️
✏️
📝
🔧
options-privacy.php
10101B
-rw-r--r--
🗑️
✏️
📝
🔧
options-writing.php
8693B
-rw-r--r--
🗑️
✏️
📝
🔧
post-new.php
2703B
-rw-r--r--
🗑️
✏️
📝
🔧
post.php
10098B
-rw-r--r--
🗑️
✏️
📝
🔧
press-this.php
2386B
-rw-r--r--
🗑️
✏️
📝
🔧
privacy-policy-guide.php
3628B
-rw-r--r--
🗑️
✏️
📝
🔧
privacy.php
2483B
-rw-r--r--
🗑️
✏️
📝
🔧
site-health-info.php
4023B
-rw-r--r--
🗑️
✏️
📝
🔧
site-health.php
10184B
-rw-r--r--
🗑️
✏️
📝
🔧
term.php
2249B
-rw-r--r--
🗑️
✏️
📝
🔧
theme-install.php
23440B
-rw-r--r--
🗑️
✏️
📝
🔧
themes.php
46504B
-rw-r--r--
🗑️
✏️
📝
🔧
update.php
13092B
-rw-r--r--
🗑️
✏️
📝
🔧
upgrade.php
5671B
-rw-r--r--
🗑️
✏️
📝
🔧
user-edit.php
38719B
-rw-r--r--
🗑️
✏️
📝
🔧
<?php /** * Manage media uploaded file. * * There are many filters in here for media. Plugins can extend functionality * by hooking into the filters. * * @package WordPress * @subpackage Administration */ if ( ! isset( $_GET['inline'] ) ) { define( 'IFRAME_REQUEST', true ); } /** Load WordPress Administration Bootstrap */ require_once __DIR__ . '/admin.php'; if ( ! current_user_can( 'upload_files' ) ) { wp_die( __( 'Sorry, you are not allowed to upload files.' ), 403 ); } wp_enqueue_script( 'plupload-handlers' ); wp_enqueue_script( 'image-edit' ); wp_enqueue_script( 'set-post-thumbnail' ); wp_enqueue_style( 'imgareaselect' ); wp_enqueue_script( 'media-gallery' ); header( 'Content-Type: ' . get_option( 'html_type' ) . '; charset=' . get_option( 'blog_charset' ) ); // IDs should be integers. $ID = isset( $ID ) ? (int) $ID : 0; // phpcs:ignore WordPress.NamingConventions.ValidVariableName $post_id = isset( $post_id ) ? (int) $post_id : 0; // Require an ID for the edit screen. if ( isset( $action ) && 'edit' === $action && ! $ID ) { // phpcs:ignore WordPress.NamingConventions.ValidVariableName wp_die( '<h1>' . __( 'Something went wrong.' ) . '</h1>' . '<p>' . __( 'Invalid item ID.' ) . '</p>', 403 ); } if ( ! empty( $_REQUEST['post_id'] ) && ! current_user_can( 'edit_post', $_REQUEST['post_id'] ) ) { wp_die( '<h1>' . __( 'You need a higher level of permission.' ) . '</h1>' . '<p>' . __( 'Sorry, you are not allowed to edit this item.' ) . '</p>', 403 ); } // Upload type: image, video, file, ...? if ( isset( $_GET['type'] ) ) { $type = (string) $_GET['type']; } else { /** * Filters the default media upload type in the legacy (pre-3.5.0) media popup. * * @since 2.5.0 * * @param string $type The default media upload type. Possible values include * 'image', 'audio', 'video', 'file', etc. Default 'file'. */ $type = apply_filters( 'media_upload_default_type', 'file' ); } // Tab: gallery, library, or type-specific. if ( isset( $_GET['tab'] ) ) { $tab = (string) $_GET['tab']; } else { /** * Filters the default tab in the legacy (pre-3.5.0) media popup. * * @since 2.5.0 * * @param string $tab The default media popup tab. Default 'type' (From Computer). */ $tab = apply_filters( 'media_upload_default_tab', 'type' ); } $body_id = 'media-upload'; // Let the action code decide how to handle the request. if ( 'type' === $tab || 'type_url' === $tab || ! array_key_exists( $tab, media_upload_tabs() ) ) { /** * Fires inside specific upload-type views in the legacy (pre-3.5.0) * media popup based on the current tab. * * The dynamic portion of the hook name, `$type`, refers to the specific * media upload type. * * The hook only fires if the current `$tab` is 'type' (From Computer), * 'type_url' (From URL), or, if the tab does not exist (i.e., has not * been registered via the {@see 'media_upload_tabs'} filter. * * Possible hook names include: * * - `media_upload_audio` * - `media_upload_file` * - `media_upload_image` * - `media_upload_video` * * @since 2.5.0 */ do_action( "media_upload_{$type}" ); } else { /** * Fires inside limited and specific upload-tab views in the legacy * (pre-3.5.0) media popup. * * The dynamic portion of the hook name, `$tab`, refers to the specific * media upload tab. Possible values include 'library' (Media Library), * or any custom tab registered via the {@see 'media_upload_tabs'} filter. * * @since 2.5.0 */ do_action( "media_upload_{$tab}" ); }
Terminal Command