From 5bf66662a9bdd62c5bccab15e607cd95cfb8fcab Mon Sep 17 00:00:00 2001
From: Charles Cabergs
Date: Mon, 27 Jul 2020 10:05:23 +0200
Subject: Removed wordpress and phpmyadmin, my server doesn't handle it well
and it brings shame on my familly
---
srcs/wordpress/wp-admin/install.php | 437 ------------------------------------
1 file changed, 437 deletions(-)
delete mode 100644 srcs/wordpress/wp-admin/install.php
(limited to 'srcs/wordpress/wp-admin/install.php')
diff --git a/srcs/wordpress/wp-admin/install.php b/srcs/wordpress/wp-admin/install.php
deleted file mode 100644
index 68408c9..0000000
--- a/srcs/wordpress/wp-admin/install.php
+++ /dev/null
@@ -1,437 +0,0 @@
-
-
-
-
-
- Error: PHP is not running
-
-
- WordPress
- Error: PHP is not running
- WordPress requires that your web server is running PHP. Your server does not have PHP installed, or PHP is turned off.
-
-
-
-
->
-
-
-
-
-
-
-
-
-
-
- prepare( 'SHOW TABLES LIKE %s', $wpdb->esc_like( $wpdb->users ) );
- $user_table = ( $wpdb->get_var( $sql ) != null );
-
- // Ensure that Blogs appear in search engines by default.
- $blog_public = 1;
- if ( isset( $_POST['weblog_title'] ) ) {
- $blog_public = isset( $_POST['blog_public'] );
- }
-
- $weblog_title = isset( $_POST['weblog_title'] ) ? trim( wp_unslash( $_POST['weblog_title'] ) ) : '';
- $user_name = isset( $_POST['user_name'] ) ? trim( wp_unslash( $_POST['user_name'] ) ) : '';
- $admin_email = isset( $_POST['admin_email'] ) ? trim( wp_unslash( $_POST['admin_email'] ) ) : '';
-
- if ( ! is_null( $error ) ) {
- ?>
-
-
-
-
- ' . __( 'Already Installed' ) . '' .
- '' . __( 'You appear to have already installed WordPress. To reinstall please clear your old database tables first.' ) . '
' .
- '' . __( 'Log In' ) . '
' .
- ''
- );
-}
-
-/**
- * @global string $wp_version
- * @global string $required_php_version
- * @global string $required_mysql_version
- */
-global $wp_version, $required_php_version, $required_mysql_version;
-
-$php_version = phpversion();
-$mysql_version = $wpdb->db_version();
-$php_compat = version_compare( $php_version, $required_php_version, '>=' );
-$mysql_compat = version_compare( $mysql_version, $required_mysql_version, '>=' ) || file_exists( WP_CONTENT_DIR . '/db.php' );
-
-$version_url = sprintf(
- /* translators: %s: WordPress version. */
- esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ),
- sanitize_title( $wp_version )
-);
-
-/* translators: %s: URL to Update PHP page. */
-$php_update_message = '
' . sprintf( __( 'Learn more about updating PHP.' ), esc_url( wp_get_update_php_url() ) );
-
-$annotation = wp_get_update_php_annotation();
-if ( $annotation ) {
- $php_update_message .= '
' . $annotation . '';
-}
-
-if ( ! $mysql_compat && ! $php_compat ) {
- /* translators: 1: URL to WordPress release notes, 2: WordPress version number, 3: Minimum required PHP version number, 4: Minimum required MySQL version number, 5: Current PHP version number, 6: Current MySQL version number. */
- $compat = sprintf( __( 'You cannot install because WordPress %2$s requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s.' ), $version_url, $wp_version, $required_php_version, $required_mysql_version, $php_version, $mysql_version ) . $php_update_message;
-} elseif ( ! $php_compat ) {
- /* translators: 1: URL to WordPress release notes, 2: WordPress version number, 3: Minimum required PHP version number, 4: Current PHP version number. */
- $compat = sprintf( __( 'You cannot install because WordPress %2$s requires PHP version %3$s or higher. You are running version %4$s.' ), $version_url, $wp_version, $required_php_version, $php_version ) . $php_update_message;
-} elseif ( ! $mysql_compat ) {
- /* translators: 1: URL to WordPress release notes, 2: WordPress version number, 3: Minimum required MySQL version number, 4: Current MySQL version number. */
- $compat = sprintf( __( 'You cannot install because WordPress %2$s requires MySQL version %3$s or higher. You are running version %4$s.' ), $version_url, $wp_version, $required_mysql_version, $mysql_version );
-}
-
-if ( ! $mysql_compat || ! $php_compat ) {
- display_header();
- die( '
' . __( 'Requirements Not Met' ) . '
' . $compat . '