??????????????
??????????????
??????????????
??????????????
Warning : Undefined variable $auth in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
Warning : Trying to access array offset on value of type null in /home/u627560552/domains/kovexadvisory.com/public_html/666.php on line 546
??????????????
??????????????
??????????????
??????????????
File Manager
✏️ Edit File: /home/mklsvubc/netecfwd.co.uk/wp-admin/network.php
⬅ Kembali
<?php
/**
* Network installation administration panel.
*
* A multi-step process allowing the user to enable a network of WordPress sites.
*
* @since 3.0.0
*
* @package WordPress
* @subpackage Administration
*/
define( 'WP_INSTALLING_NETWORK', true );
/** WordPress Administration Bootstrap */
require_once __DIR__ . '/admin.php';
if ( ! current_user_can( 'setup_network' ) ) {
wp_die( __( 'Sorry, you are not allowed to manage options for this site.' ) );
}
if ( is_multisite() ) {
if ( ! is_network_admin() ) {
wp_redirect( network_admin_url( 'setup.php' ) );
exit;
}
if ( ! defined( 'MULTISITE' ) ) {
wp_die( __( 'The Network creation panel is not for WordPress MU networks.' ) );
}
}
require_once __DIR__ . '/includes/network.php';
// We need to create references to ms global tables to enable Network.
foreach ( $wpdb->tables( 'ms_global' ) as $table => $prefixed_table ) {
$wpdb->$table = $prefixed_table;
}
if ( ! network_domain_check() && ( ! defined( 'WP_ALLOW_MULTISITE' ) || ! WP_ALLOW_MULTISITE ) ) {
wp_die(
printf(
/* translators: 1: WP_ALLOW_MULTISITE, 2: wp-config.php */
__( 'You must define the %1$s constant as true in your %2$s file to allow creation of a Network.' ),
'<code>WP_ALLOW_MULTISITE</code>',
'<code>wp-config.php</code>'
)
);
}
if ( is_network_admin() ) {
// Used in the HTML title tag.
$title = __( 'Network Setup' );
$parent_file = 'settings.php';
} else {
// Used in the HTML title tag.
$title = __( 'Create a Network of WordPress Sites' );
$parent_file = 'tools.php';
}
$network_help = '<p>' . __( 'This screen allows you to configure a network as having subdomains (<code>site1.example.com</code>) or subdirectories (<code>example.com/site1</code>). Subdomains require wildcard subdomains to be enabled in Apache and DNS records, if your host allows it.' ) . '</p>' .
'<p>' . __( 'Choose subdomains or subdirectories; this can only be switched afterwards by reconfiguring your installation. Fill out the network details, and click Install. If this does not work, you may have to add a wildcard DNS record (for subdomains) or change to another setting in Permalinks (for subdirectories).' ) . '</p>' .
'<p>' . __( 'The next screen for Network Setup will give you individually-generated lines of code to add to your wp-config.php and .htaccess files. Make sure the settings of your FTP client make files starting with a dot visible, so that you can find .htaccess; you may have to create this file if it really is not there. Make backup copies of those two files.' ) . '</p>' .
'<p>' . __( 'Add the designated lines of code to wp-config.php (just before <code>/*...stop editing...*/</code>) and <code>.htaccess</code> (replacing the existing WordPress rules).' ) . '</p>' .
'<p>' . __( 'Once you add this code and refresh your browser, multisite should be enabled. This screen, now in the Network Admin navigation menu, will keep an archive of the added code. You can toggle between Network Admin and Site Admin by clicking on the Network Admin or an individual site name under the My Sites dropdown in the Toolbar.' ) . '</p>' .
'<p>' . __( 'The choice of subdirectory sites is disabled if this setup is more than a month old because of permalink problems with “/blog/” from the main site. This disabling will be addressed in a future version.' ) . '</p>' .
'<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
'<p>' . __( '<a href="https://developer.wordpress.org/advanced-administration/multisite/create-network/">Documentation on Creating a Network</a>' ) . '</p>' .
'<p>' . __( '<a href="https://wordpress.org/documentation/article/tools-network-screen/">Documentation on the Network Screen</a>' ) . '</p>';
get_current_screen()->add_help_tab(
array(
'id' => 'network',
'title' => __( 'Network' ),
'content' => $network_help,
)
);
get_current_screen()->set_help_sidebar(
'<p><strong>' . __( 'For more information:' ) . '</strong></p>' .
'<p>' . __( '<a href="https://developer.wordpress.org/advanced-administration/multisite/create-network/">Documentation on Creating a Network</a>' ) . '</p>' .
'<p>' . __( '<a href="https://wordpress.org/documentation/article/tools-network-screen/">Documentation on the Network Screen</a>' ) . '</p>' .
'<p>' . __( '<a href="https://wordpress.org/support/forums/">Support forums</a>' ) . '</p>'
);
require_once ABSPATH . 'wp-admin/admin-header.php';
?>
<div class="wrap">
<h1><?php echo esc_html( $title ); ?></h1>
<?php
if ( $_POST ) {
check_admin_referer( 'install-network-1' );
require_once ABSPATH . 'wp-admin/includes/upgrade.php';
// Create network tables.
install_network();
$base = parse_url( trailingslashit( get_option( 'home' ) ), PHP_URL_PATH );
$subdomain_install = allow_subdomain_install() ? ! empty( $_POST['subdomain_install'] ) : false;
if ( ! network_domain_check() ) {
$result = populate_network( 1, get_clean_basedomain(), sanitize_email( $_POST['email'] ), wp_unslash( $_POST['sitename'] ), $base, $subdomain_install );
if ( is_wp_error( $result ) ) {
if ( 1 === count( $result->get_error_codes() ) && 'no_wildcard_dns' === $result->get_error_code() ) {
network_step2( $result );
} else {
network_step1( $result );
}
} else {
network_step2();
}
} else {
network_step2();
}
} elseif ( is_multisite() || network_domain_check() ) {
network_step2();
} else {
network_step1();
}
?>
</div>
<?php require_once ABSPATH . 'wp-admin/admin-footer.php'; ?>
Nama
Tipe
Ukuran
Diubah
Aksi
📁 css
dir
—
2026-06-20 08:29
📁 images
dir
—
2026-06-20 08:29
📁 includes
dir
—
2026-06-20 08:29
📁 js
dir
—
2026-06-20 08:29
📁 maint
dir
—
2026-06-20 08:29
📁 network
dir
—
2026-06-20 08:29
📁 user
dir
—
2026-06-20 08:29
📄 .rnd
rnd
1 KB
2026-03-12 08:34
🐘 about.php
php
16 KB
2026-05-20 20:16
🐘 admin-ajax.php
php
5 KB
2024-07-04 07:22
🐘 admin-footer.php
php
2.7 KB
2026-05-20 20:16
🐘 admin-functions.php
php
479 B
2025-01-22 09:06
🐘 admin-header.php
php
9.1 KB
2026-05-20 20:16
🐘 admin-post.php
php
2 KB
2025-01-16 11:18
🐘 admin.php
php
12.6 KB
2026-05-20 20:16
🐘 async-upload.php
php
5.5 KB
2025-08-27 06:34
🐘 authorize-application.php
php
10.1 KB
2023-09-13 20:54
🐘 comment.php
php
11.4 KB
2026-05-20 20:16
🐘 contribute.php
php
5.9 KB
2026-05-20 20:16
🐘 credits.php
php
4.4 KB
2026-05-20 20:16
🐘 custom-background.php
php
489 B
2025-01-22 09:06
🐘 custom-header.php
php
499 B
2025-01-22 09:06
🐘 customize.php
php
11.2 KB
2026-05-20 20:16
🐘 edit-comments.php
php
14.1 KB
2026-05-20 20:16
🐘 edit-form-advanced.php
php
28.8 KB
2026-05-20 20:16
🐘 edit-form-blocks.php
php
14.7 KB
2026-05-20 20:16
🐘 edit-form-comment.php
php
8.3 KB
2026-05-20 20:16
🐘 edit-link-form.php
php
6.2 KB
2025-02-08 06:44
🐘 edit-tag-form.php
php
10.4 KB
2026-05-20 20:16
🐘 edit-tags.php
php
22 KB
2026-05-20 20:16
🐘 edit.php
php
19.5 KB
2024-10-03 18:46
🐘 erase-personal-data.php
php
7.3 KB
2024-04-17 16:21
📄 error_log
file
12.2 KB
2026-03-12 09:02
🐘 export-personal-data.php
php
7.8 KB
2024-04-17 16:21
🐘 export.php
php
11 KB
2026-05-20 20:16
🐘 font-library.php
php
1 KB
2026-05-20 20:16
🐘 freedoms.php
php
4.8 KB
2026-05-20 20:16
🐘 import.php
php
7.6 KB
2025-02-25 13:34
🐘 index.php
php
7.7 KB
2023-09-13 20:54
🐘 install-helper.php
php
6.8 KB
2022-11-20 09:10
🐘 install.php
php
17.9 KB
2026-05-20 20:16
🐘 link-add.php
php
934 B
2025-02-08 06:44
🐘 link-manager.php
php
4.3 KB
2025-02-08 06:44
🐘 link-parse-opml.php
php
2.6 KB
2026-05-20 20:16
🐘 link.php
php
2.9 KB
2024-05-01 14:01
🐘 load-scripts.php
php
2 KB
2024-08-25 19:48
🐘 load-styles.php
php
2.9 KB
2024-11-04 10:51
🐘 media-new.php
php
3.2 KB
2026-05-20 20:16
🐘 media-upload.php
php
3.6 KB
2025-02-08 10:53
🐘 media.php
php
819 B
2024-05-01 14:01
🐘 menu-header.php
php
9.8 KB
2025-02-20 16:29
🐘 menu.php
php
17.7 KB
2026-05-20 20:16
🐘 moderation.php
php
307 B
2020-02-06 01:33
🐘 ms-admin.php
php
196 B
2020-02-06 01:33
🐘 ms-delete-site.php
php
4.5 KB
2025-04-21 07:49
🐘 ms-edit.php
php
216 B
2020-02-06 01:33
🐘 ms-options.php
php
229 B
2024-06-22 07:47
🐘 ms-sites.php
php
215 B
2020-02-06 01:33
🐘 ms-themes.php
php
217 B
2020-02-06 01:33
🐘 ms-upgrade-network.php
php
219 B
2020-02-06 01:33
🐘 ms-users.php
php
215 B
2020-02-06 01:33
🐘 my-sites.php
php
4.7 KB
2026-05-20 20:16
🐘 nav-menus.php
php
49.1 KB
2026-05-20 20:16
🐘 network.php
php
5.4 KB
2024-03-08 17:38
🐘 options-connectors.php
php
1.1 KB
2026-05-20 20:16
🐘 options-discussion.php
php
15.9 KB
2025-11-10 17:51
🐘 options-general.php
php
22.3 KB
2026-05-20 20:16
🐘 options-head.php
php
621 B
2025-01-22 09:06
🐘 options-media.php
php
6.4 KB
2025-09-28 18:38
🐘 options-permalink.php
php
21.9 KB
2026-05-20 20:16
🐘 options-privacy.php
php
9.9 KB
2026-05-20 20:16
🐘 options-reading.php
php
10 KB
2026-05-20 20:16
🐘 options-writing.php
php
9.1 KB
2025-09-28 18:38
🐘 options.php
php
13.9 KB
2026-05-20 20:16
🐘 plugin-editor.php
php
13.8 KB
2025-10-13 17:50
🐘 plugin-install.php
php
7 KB
2024-02-20 02:27
🐘 plugins.php
php
30 KB
2025-10-13 19:12
🐘 post-new.php
php
2.7 KB
2024-06-15 08:34
🐘 post.php
php
10 KB
2025-09-06 02:49
🐘 press-this.php
php
2.4 KB
2026-05-20 20:16
🐘 privacy-policy-guide.php
php
3.7 KB
2023-11-22 12:44
🐘 privacy.php
php
2.8 KB
2026-05-20 20:16
🐘 profile.php
php
283 B
2020-02-06 01:33
🐘 revision.php
php
5.7 KB
2025-10-07 10:30
🐘 setup-config.php
php
17.5 KB
2026-05-20 20:16
🐘 site-editor.php
php
12.1 KB
2026-05-20 20:16
🐘 site-health-info.php
php
4.1 KB
2026-05-20 20:16
🐘 site-health.php
php
10.2 KB
2026-05-20 20:16
🐘 term.php
php
2.2 KB
2022-06-01 14:14
🐘 theme-editor.php
php
16.9 KB
2025-10-15 20:16
🐘 theme-install.php
php
23.6 KB
2026-05-20 20:16
🐘 themes.php
php
47.9 KB
2025-11-10 16:08
🐘 tools.php
php
3.4 KB
2023-02-23 05:38
🐘 update-core.php
php
45.1 KB
2026-05-20 20:16
🐘 update.php
php
12.8 KB
2026-05-20 20:16
🐘 upgrade-functions.php
php
341 B
2020-02-06 01:33
🐘 upgrade.php
php
6.2 KB
2026-05-20 20:16
🐘 upload.php
php
14.9 KB
2026-05-20 20:16
🐘 user-edit.php
php
40.4 KB
2026-05-20 20:16
🐘 user-new.php
php
24.1 KB
2026-05-20 20:16
🐘 users.php
php
23.4 KB
2026-05-20 20:16
🐘 widgets-form-blocks.php
php
5.1 KB
2025-08-27 06:34
🐘 widgets-form.php
php
19.1 KB
2026-05-20 20:16
🐘 widgets.php
php
1.1 KB
2022-03-22 15:59