2003-12-30 06:36:47 +01:00
< ? php
2008-10-02 03:03:26 +02:00
/**
* WordPress Upgrade API
*
2015-01-19 10:15:22 +01:00
* Most of the functions are pluggable and can be overwritten .
2008-10-02 03:03:26 +02:00
*
* @ package WordPress
* @ subpackage Administration
*/
2004-10-08 21:49:58 +02:00
2017-08-22 13:52:48 +02:00
/** Include user installation customization script. */
2017-12-01 00:11:00 +01:00
if ( file_exists ( WP_CONTENT_DIR . '/install.php' ) ) {
2020-02-06 07:33:11 +01:00
require WP_CONTENT_DIR . '/install.php' ;
2017-12-01 00:11:00 +01:00
}
2008-10-02 03:03:26 +02:00
/** WordPress Administration API */
2020-02-06 07:33:11 +01:00
require_once ABSPATH . 'wp-admin/includes/admin.php' ;
2008-10-02 03:03:26 +02:00
/** WordPress Schema API */
2020-02-06 07:33:11 +01:00
require_once ABSPATH . 'wp-admin/includes/schema.php' ;
2006-03-31 10:07:39 +02:00
2017-12-01 00:11:00 +01:00
if ( ! function_exists ( 'wp_install' ) ) :
/**
* Installs the site .
*
* Runs the required functions to set up and populate the database ,
* including primary admin user and initial options .
*
* @ since 2.1 . 0
*
* @ param string $blog_title Site title .
* @ param string $user_name User ' s username .
* @ param string $user_email User ' s email .
Code Modernization: Rename parameters that use reserved keywords in `wp-admin/includes/upgrade.php`.
While using reserved PHP keywords as parameter name labels is allowed, in the context of function calls using named parameters in PHP 8.0+, this will easily lead to confusion. To avoid that, it is recommended not to use reserved keywords as function parameter names.
This commit renames the `$public` parameter to `$is_public` in `wp_install()`.
Follow-up to [52946], [52996], [52997], [52998], [53003], [53014], [53029], [53039], [53116], [53117], [53137], [53174], [53184], [53185], [53192], [53193], [53198], [53203], [53207], [53215], [53216], [53220].
Props jrf, aristath, poena, justinahinon, SergeyBiryukov.
See #55327.
Built from https://develop.svn.wordpress.org/trunk@53230
git-svn-id: http://core.svn.wordpress.org/trunk@52819 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-04-20 12:46:09 +02:00
* @ param bool $is_public Whether the site is public .
2017-12-01 00:11:00 +01:00
* @ param string $deprecated Optional . Not used .
* @ param string $user_password Optional . User ' s chosen password . Default empty ( random password ) .
* @ param string $language Optional . Language chosen . Default empty .
2019-11-05 22:30:03 +01:00
* @ return array {
* Data for the newly installed site .
*
* @ type string $url The URL of the site .
* @ type int $user_id The ID of the site owner .
* @ type string $password The password of the site owner , if their user account didn ' t already exist .
* @ type string $password_message The explanatory message regarding the password .
* }
2017-12-01 00:11:00 +01:00
*/
Code Modernization: Rename parameters that use reserved keywords in `wp-admin/includes/upgrade.php`.
While using reserved PHP keywords as parameter name labels is allowed, in the context of function calls using named parameters in PHP 8.0+, this will easily lead to confusion. To avoid that, it is recommended not to use reserved keywords as function parameter names.
This commit renames the `$public` parameter to `$is_public` in `wp_install()`.
Follow-up to [52946], [52996], [52997], [52998], [53003], [53014], [53029], [53039], [53116], [53117], [53137], [53174], [53184], [53185], [53192], [53193], [53198], [53203], [53207], [53215], [53216], [53220].
Props jrf, aristath, poena, justinahinon, SergeyBiryukov.
See #55327.
Built from https://develop.svn.wordpress.org/trunk@53230
git-svn-id: http://core.svn.wordpress.org/trunk@52819 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-04-20 12:46:09 +02:00
function wp_install ( $blog_title , $user_name , $user_email , $is_public , $deprecated = '' , $user_password = '' , $language = '' ) {
2017-12-01 00:11:00 +01:00
if ( ! empty ( $deprecated ) ) {
_deprecated_argument ( __FUNCTION__ , '2.6.0' );
}
2009-12-30 17:23:39 +01:00
2017-12-01 00:11:00 +01:00
wp_check_mysql_version ();
wp_cache_flush ();
make_db_current_silent ();
populate_options ();
populate_roles ();
2006-03-31 10:07:39 +02:00
2017-12-01 00:11:00 +01:00
update_option ( 'blogname' , $blog_title );
update_option ( 'admin_email' , $user_email );
Code Modernization: Rename parameters that use reserved keywords in `wp-admin/includes/upgrade.php`.
While using reserved PHP keywords as parameter name labels is allowed, in the context of function calls using named parameters in PHP 8.0+, this will easily lead to confusion. To avoid that, it is recommended not to use reserved keywords as function parameter names.
This commit renames the `$public` parameter to `$is_public` in `wp_install()`.
Follow-up to [52946], [52996], [52997], [52998], [53003], [53014], [53029], [53039], [53116], [53117], [53137], [53174], [53184], [53185], [53192], [53193], [53198], [53203], [53207], [53215], [53216], [53220].
Props jrf, aristath, poena, justinahinon, SergeyBiryukov.
See #55327.
Built from https://develop.svn.wordpress.org/trunk@53230
git-svn-id: http://core.svn.wordpress.org/trunk@52819 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-04-20 12:46:09 +02:00
update_option ( 'blog_public' , $is_public );
2008-06-20 18:35:45 +02:00
2017-12-01 00:11:00 +01:00
// Freshness of site - in the future, this could get more specific about actions taken, perhaps.
update_option ( 'fresh_site' , 1 );
2016-11-01 21:16:31 +01:00
2017-12-01 00:11:00 +01:00
if ( $language ) {
update_option ( 'WPLANG' , $language );
}
2014-06-18 21:58:15 +02:00
2017-12-01 00:11:00 +01:00
$guessurl = wp_guess_url ();
2007-03-23 18:45:40 +01:00
2017-12-01 00:11:00 +01:00
update_option ( 'siteurl' , $guessurl );
2006-03-31 10:07:39 +02:00
2019-01-08 05:30:50 +01:00
// If not a public site, don't ping.
Code Modernization: Rename parameters that use reserved keywords in `wp-admin/includes/upgrade.php`.
While using reserved PHP keywords as parameter name labels is allowed, in the context of function calls using named parameters in PHP 8.0+, this will easily lead to confusion. To avoid that, it is recommended not to use reserved keywords as function parameter names.
This commit renames the `$public` parameter to `$is_public` in `wp_install()`.
Follow-up to [52946], [52996], [52997], [52998], [53003], [53014], [53029], [53039], [53116], [53117], [53137], [53174], [53184], [53185], [53192], [53193], [53198], [53203], [53207], [53215], [53216], [53220].
Props jrf, aristath, poena, justinahinon, SergeyBiryukov.
See #55327.
Built from https://develop.svn.wordpress.org/trunk@53230
git-svn-id: http://core.svn.wordpress.org/trunk@52819 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-04-20 12:46:09 +02:00
if ( ! $is_public ) {
2017-12-01 00:11:00 +01:00
update_option ( 'default_pingback_flag' , 0 );
}
2006-03-31 10:07:39 +02:00
2017-12-01 00:11:00 +01:00
/*
* Create default user . If the user already exists , the user tables are
* being shared among sites . Just set the role in that case .
*/
$user_id = username_exists ( $user_name );
$user_password = trim ( $user_password );
$email_password = false ;
2019-12-18 03:26:03 +01:00
$user_created = false ;
2017-12-01 00:11:00 +01:00
if ( ! $user_id && empty ( $user_password ) ) {
$user_password = wp_generate_password ( 12 , false );
$message = __ ( '<strong><em>Note that password</em></strong> carefully! It is a <em>random</em> password that was generated just for you.' );
$user_id = wp_create_user ( $user_name , $user_password , $user_email );
2021-05-24 21:59:57 +02:00
update_user_meta ( $user_id , 'default_password_nag' , true );
2017-12-01 00:11:00 +01:00
$email_password = true ;
2019-12-18 03:26:03 +01:00
$user_created = true ;
2017-12-01 00:11:00 +01:00
} elseif ( ! $user_id ) {
2019-12-18 03:26:03 +01:00
// Password has been provided.
$message = '<em>' . __ ( 'Your chosen password.' ) . '</em>' ;
$user_id = wp_create_user ( $user_name , $user_password , $user_email );
$user_created = true ;
2017-12-01 00:11:00 +01:00
} else {
$message = __ ( 'User already exists. Password inherited.' );
}
$user = new WP_User ( $user_id );
$user -> set_role ( 'administrator' );
2019-12-18 03:26:03 +01:00
if ( $user_created ) {
$user -> user_url = $guessurl ;
wp_update_user ( $user );
}
2017-12-01 00:11:00 +01:00
wp_install_defaults ( $user_id );
2006-04-04 04:26:02 +02:00
2017-12-01 00:11:00 +01:00
wp_install_maybe_enable_pretty_permalinks ();
2006-03-31 10:07:39 +02:00
2017-12-01 00:11:00 +01:00
flush_rewrite_rules ();
2006-03-31 10:07:39 +02:00
2017-12-01 00:11:00 +01:00
wp_new_blog_notification ( $blog_title , $guessurl , $user_id , ( $email_password ? $user_password : __ ( 'The password you chose during installation.' ) ) );
2015-01-08 07:47:23 +01:00
2017-12-01 00:11:00 +01:00
wp_cache_flush ();
2006-03-31 10:07:39 +02:00
2017-12-01 00:11:00 +01:00
/**
* Fires after a site is fully installed .
*
* @ since 3.9 . 0
*
* @ param WP_User $user The site owner .
*/
do_action ( 'wp_install' , $user );
2006-03-31 10:07:39 +02:00
2017-12-01 00:11:00 +01:00
return array (
'url' => $guessurl ,
'user_id' => $user_id ,
'password' => $user_password ,
'password_message' => $message ,
);
}
endif ;
2006-03-31 10:07:39 +02:00
2017-12-01 00:11:00 +01:00
if ( ! function_exists ( 'wp_install_defaults' ) ) :
2014-01-27 17:32:12 +01:00
/**
2017-12-01 00:11:00 +01:00
* Creates the initial content for a newly - installed site .
*
* Adds the default " Uncategorized " category , the first post ( with comment ),
* first page , and default widgets for default theme for the current version .
2014-01-27 17:32:12 +01:00
*
2017-12-01 00:11:00 +01:00
* @ since 2.1 . 0
2014-01-27 17:32:12 +01:00
*
2019-08-04 03:12:56 +02:00
* @ global wpdb $wpdb WordPress database abstraction object .
2019-08-04 03:19:56 +02:00
* @ global WP_Rewrite $wp_rewrite WordPress rewrite component .
2024-03-07 07:11:11 +01:00
* @ global string $table_prefix The database table prefix .
2017-12-01 00:11:00 +01:00
*
* @ param int $user_id User ID .
2014-01-27 17:32:12 +01:00
*/
2017-12-01 00:11:00 +01:00
function wp_install_defaults ( $user_id ) {
global $wpdb , $wp_rewrite , $table_prefix ;
2020-01-29 01:45:18 +01:00
// Default category.
2017-12-01 00:11:00 +01:00
$cat_name = __ ( 'Uncategorized' );
2019-09-03 02:41:05 +02:00
/* translators: Default category slug. */
2017-12-01 00:11:00 +01:00
$cat_slug = sanitize_title ( _x ( 'Uncategorized' , 'Default category slug' ) );
Networks and Sites: Officially remove global terms.
Global terms was a feature from the WordPress MU days where multisite and single site installs used different code bases.
In WordPress 3.0, WordPress MU was merged into one location and the UI [14854] and “on” switch [14880] for global terms were completely removed.
Even before this merge, global terms was bug infested and unreliable. After [14854]/[14880], the feature was no longer maintained and became increasingly broken as taxonomies progressed without it (term splitting and term meta do not work at all). At this point, the feature has not worked in 12+ years and there’s no hope for saving it.
This deprecates the remaining global terms related code and no-ops the functions.
Global terms, you don’t have to go home, but you can’t stay here.
Props scribu, wonderboymusic, SergeyBiryukov, nacin, pento, desrosj, johnjamesjacoby, johnbillion, dd32.
Fixes #21734.
Built from https://develop.svn.wordpress.org/trunk@54240
git-svn-id: http://core.svn.wordpress.org/trunk@53799 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-09-20 04:51:09 +02:00
$cat_id = 1 ;
2006-03-31 10:07:39 +02:00
2017-12-01 00:11:00 +01:00
$wpdb -> insert (
2018-08-17 03:51:36 +02:00
$wpdb -> terms ,
array (
2017-12-01 00:11:00 +01:00
'term_id' => $cat_id ,
'name' => $cat_name ,
'slug' => $cat_slug ,
'term_group' => 0 ,
)
);
$wpdb -> insert (
2018-08-17 03:51:36 +02:00
$wpdb -> term_taxonomy ,
array (
2017-12-01 00:11:00 +01:00
'term_id' => $cat_id ,
'taxonomy' => 'category' ,
'description' => '' ,
'parent' => 0 ,
'count' => 1 ,
)
);
$cat_tt_id = $wpdb -> insert_id ;
2006-03-31 10:07:39 +02:00
2020-01-29 01:45:18 +01:00
// First post.
2017-12-01 00:11:00 +01:00
$now = current_time ( 'mysql' );
$now_gmt = current_time ( 'mysql' , 1 );
$first_post_guid = get_option ( 'home' ) . '/?p=1' ;
2009-03-18 03:43:45 +01:00
2017-12-01 00:11:00 +01:00
if ( is_multisite () ) {
$first_post = get_site_option ( 'first_post' );
2010-02-03 02:00:57 +01:00
2017-12-01 00:11:00 +01:00
if ( ! $first_post ) {
2018-12-14 06:43:52 +01:00
$first_post = " <!-- wp:paragraph --> \n <p> " .
2019-09-03 02:41:05 +02:00
/* translators: First post content. %s: Site link. */
2018-12-14 06:43:52 +01:00
__ ( 'Welcome to %s. This is your first post. Edit or delete it, then start writing!' ) .
" </p> \n <!-- /wp:paragraph --> " ;
2017-12-01 00:11:00 +01:00
}
2006-03-31 10:07:39 +02:00
2017-12-01 00:11:00 +01:00
$first_post = sprintf (
$first_post ,
sprintf ( '<a href="%s">%s</a>' , esc_url ( network_home_url () ), get_network () -> site_name )
);
2009-03-18 03:43:45 +01:00
2020-01-29 01:45:18 +01:00
// Back-compat for pre-4.4.
2017-12-01 00:11:00 +01:00
$first_post = str_replace ( 'SITE_URL' , esc_url ( network_home_url () ), $first_post );
$first_post = str_replace ( 'SITE_NAME' , get_network () -> site_name , $first_post );
} else {
2018-12-14 06:43:52 +01:00
$first_post = " <!-- wp:paragraph --> \n <p> " .
2019-09-03 02:41:05 +02:00
/* translators: First post content. %s: Site link. */
2018-12-14 06:43:52 +01:00
__ ( 'Welcome to WordPress. This is your first post. Edit or delete it, then start writing!' ) .
" </p> \n <!-- /wp:paragraph --> " ;
2017-12-01 00:11:00 +01:00
}
$wpdb -> insert (
2018-08-17 03:51:36 +02:00
$wpdb -> posts ,
array (
2017-12-01 00:11:00 +01:00
'post_author' => $user_id ,
'post_date' => $now ,
'post_date_gmt' => $now_gmt ,
'post_content' => $first_post ,
'post_excerpt' => '' ,
'post_title' => __ ( 'Hello world!' ),
2019-09-03 02:41:05 +02:00
/* translators: Default post slug. */
2017-12-01 00:11:00 +01:00
'post_name' => sanitize_title ( _x ( 'hello-world' , 'Default post slug' ) ),
'post_modified' => $now ,
'post_modified_gmt' => $now_gmt ,
'guid' => $first_post_guid ,
'comment_count' => 1 ,
'to_ping' => '' ,
'pinged' => '' ,
'post_content_filtered' => '' ,
)
);
2021-11-18 00:08:03 +01:00
2021-11-18 01:20:59 +01:00
if ( is_multisite () ) {
update_posts_count ();
}
2021-11-18 00:08:03 +01:00
2017-12-01 00:11:00 +01:00
$wpdb -> insert (
2018-08-17 03:51:36 +02:00
$wpdb -> term_relationships ,
array (
2017-12-01 00:11:00 +01:00
'term_taxonomy_id' => $cat_tt_id ,
'object_id' => 1 ,
)
);
2010-01-20 21:09:41 +01:00
2020-01-29 01:45:18 +01:00
// Default comment.
2017-12-01 00:11:00 +01:00
if ( is_multisite () ) {
$first_comment_author = get_site_option ( 'first_comment_author' );
$first_comment_email = get_site_option ( 'first_comment_email' );
$first_comment_url = get_site_option ( 'first_comment_url' , network_home_url () );
$first_comment = get_site_option ( 'first_comment' );
2015-11-11 21:55:26 +01:00
}
2017-12-01 00:11:00 +01:00
$first_comment_author = ! empty ( $first_comment_author ) ? $first_comment_author : __ ( 'A WordPress Commenter' );
$first_comment_email = ! empty ( $first_comment_email ) ? $first_comment_email : 'wapuu@wordpress.example' ;
2022-01-05 22:07:00 +01:00
$first_comment_url = ! empty ( $first_comment_url ) ? $first_comment_url : esc_url ( __ ( 'https://wordpress.org/' ) );
$first_comment = ! empty ( $first_comment ) ? $first_comment : sprintf (
/* translators: %s: Gravatar URL. */
__ (
' Hi , this is a comment .
2017-12-01 00:11:00 +01:00
To get started with moderating , editing , and deleting comments , please visit the Comments screen in the dashboard .
2022-01-05 22:07:00 +01:00
Commenter avatars come from < a href = " %s " > Gravatar </ a >. '
),
esc_url ( __ ( 'https://en.gravatar.com/' ) )
2017-12-01 00:11:00 +01:00
);
$wpdb -> insert (
2018-08-17 03:51:36 +02:00
$wpdb -> comments ,
array (
2017-12-01 00:11:00 +01:00
'comment_post_ID' => 1 ,
'comment_author' => $first_comment_author ,
'comment_author_email' => $first_comment_email ,
'comment_author_url' => $first_comment_url ,
'comment_date' => $now ,
'comment_date_gmt' => $now_gmt ,
'comment_content' => $first_comment ,
2020-04-17 21:35:06 +02:00
'comment_type' => 'comment' ,
2017-12-01 00:11:00 +01:00
)
2015-11-11 21:55:26 +01:00
);
2010-01-20 21:09:41 +01:00
2020-01-29 01:45:18 +01:00
// First page.
2017-12-01 00:11:00 +01:00
if ( is_multisite () ) {
$first_page = get_site_option ( 'first_page' );
}
2017-03-17 16:49:42 +01:00
2018-12-14 06:43:52 +01:00
if ( empty ( $first_page ) ) {
$first_page = " <!-- wp:paragraph --> \n <p> " ;
2019-09-03 02:41:05 +02:00
/* translators: First page content. */
2018-12-14 06:43:52 +01:00
$first_page .= __ ( " This is an example page. It's different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this: " );
$first_page .= " </p> \n <!-- /wp:paragraph --> \n \n " ;
$first_page .= " <!-- wp:quote --> \n <blockquote class= \" wp-block-quote \" ><p> " ;
2019-09-03 02:41:05 +02:00
/* translators: First page content. */
2018-12-14 06:43:52 +01:00
$first_page .= __ ( " Hi there! I'm a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin' caught in the rain.) " );
$first_page .= " </p></blockquote> \n <!-- /wp:quote --> \n \n " ;
$first_page .= " <!-- wp:paragraph --> \n <p> " ;
2019-09-03 02:41:05 +02:00
/* translators: First page content. */
2018-12-14 06:43:52 +01:00
$first_page .= __ ( '...or something like this:' );
$first_page .= " </p> \n <!-- /wp:paragraph --> \n \n " ;
$first_page .= " <!-- wp:quote --> \n <blockquote class= \" wp-block-quote \" ><p> " ;
2019-09-03 02:41:05 +02:00
/* translators: First page content. */
2018-12-14 06:43:52 +01:00
$first_page .= __ ( 'The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.' );
$first_page .= " </p></blockquote> \n <!-- /wp:quote --> \n \n " ;
$first_page .= " <!-- wp:paragraph --> \n <p> " ;
$first_page .= sprintf (
2019-09-03 02:41:05 +02:00
/* translators: First page content. %s: Site admin URL. */
2018-12-14 06:43:52 +01:00
__ ( 'As a new WordPress user, you should go to <a href="%s">your dashboard</a> to delete this page and create new pages for your content. Have fun!' ),
admin_url ()
);
$first_page .= " </p> \n <!-- /wp:paragraph --> " ;
}
2010-01-20 21:09:41 +01:00
2017-12-01 00:11:00 +01:00
$first_post_guid = get_option ( 'home' ) . '/?page_id=2' ;
$wpdb -> insert (
2018-08-17 03:51:36 +02:00
$wpdb -> posts ,
array (
2017-12-01 00:11:00 +01:00
'post_author' => $user_id ,
'post_date' => $now ,
'post_date_gmt' => $now_gmt ,
'post_content' => $first_page ,
'post_excerpt' => '' ,
'comment_status' => 'closed' ,
'post_title' => __ ( 'Sample Page' ),
2019-09-03 02:41:05 +02:00
/* translators: Default page slug. */
2017-12-01 00:11:00 +01:00
'post_name' => __ ( 'sample-page' ),
'post_modified' => $now ,
'post_modified_gmt' => $now_gmt ,
'guid' => $first_post_guid ,
'post_type' => 'page' ,
'to_ping' => '' ,
'pinged' => '' ,
'post_content_filtered' => '' ,
)
);
$wpdb -> insert (
2018-08-17 03:51:36 +02:00
$wpdb -> postmeta ,
array (
2017-12-01 00:11:00 +01:00
'post_id' => 2 ,
'meta_key' => '_wp_page_template' ,
'meta_value' => 'default' ,
)
);
2010-01-20 21:09:41 +01:00
2020-01-29 01:45:18 +01:00
// Privacy Policy page.
2018-05-11 17:44:21 +02:00
if ( is_multisite () ) {
// Disable by default unless the suggested content is provided.
$privacy_policy_content = get_site_option ( 'default_privacy_policy_content' );
} else {
if ( ! class_exists ( 'WP_Privacy_Policy_Content' ) ) {
Coding Standards: Replace `include_once` with `require_once` for required files.
Per [https://developer.wordpress.org/coding-standards/wordpress-coding-standards/php/#writing-include-require-statements WordPress PHP coding standards], it is ''strongly recommended'' to use `require[_once]` for unconditional includes. When using `include[_once]`, PHP will throw a warning when the file is not found but will continue execution, which will almost certainly lead to other errors/warnings/notices being thrown if your application depends on the file loaded, potentially leading to security leaks. For that reason, `require[_once]` is generally the better choice as it will throw a `Fatal Error` if the file cannot be found.
Follow-up to [1674], [1812], [1964], [6779], [8540], [10521], [11005], [11911], [16065], [16149], [25421], [25466], [25823], [37714], [42981], [45448], [47198], [54276], [55633].
Props kausaralm, SergeyBiryukov.
See #57839.
Built from https://develop.svn.wordpress.org/trunk@55641
git-svn-id: http://core.svn.wordpress.org/trunk@55153 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-04-09 13:57:22 +02:00
require_once ABSPATH . 'wp-admin/includes/class-wp-privacy-policy-content.php' ;
2018-05-11 17:44:21 +02:00
}
2018-04-16 11:00:20 +02:00
2018-05-11 17:44:21 +02:00
$privacy_policy_content = WP_Privacy_Policy_Content :: get_default_content ();
}
2018-04-16 12:14:21 +02:00
2018-05-11 17:44:21 +02:00
if ( ! empty ( $privacy_policy_content ) ) {
$privacy_policy_guid = get_option ( 'home' ) . '/?page_id=3' ;
$wpdb -> insert (
2018-08-17 03:51:36 +02:00
$wpdb -> posts ,
array (
2018-05-11 17:44:21 +02:00
'post_author' => $user_id ,
'post_date' => $now ,
'post_date_gmt' => $now_gmt ,
'post_content' => $privacy_policy_content ,
'post_excerpt' => '' ,
'comment_status' => 'closed' ,
'post_title' => __ ( 'Privacy Policy' ),
2019-09-03 02:41:05 +02:00
/* translators: Privacy Policy page slug. */
2018-05-11 17:44:21 +02:00
'post_name' => __ ( 'privacy-policy' ),
'post_modified' => $now ,
'post_modified_gmt' => $now_gmt ,
'guid' => $privacy_policy_guid ,
'post_type' => 'page' ,
'post_status' => 'draft' ,
'to_ping' => '' ,
'pinged' => '' ,
'post_content_filtered' => '' ,
)
);
$wpdb -> insert (
2018-08-17 03:51:36 +02:00
$wpdb -> postmeta ,
array (
2018-05-11 17:44:21 +02:00
'post_id' => 3 ,
'meta_key' => '_wp_page_template' ,
'meta_value' => 'default' ,
)
);
update_option ( 'wp_page_for_privacy_policy' , 3 );
}
2018-04-16 11:00:20 +02:00
2017-12-01 00:11:00 +01:00
// Set up default widgets for default theme.
update_option (
2021-06-08 03:55:57 +02:00
'widget_block' ,
2018-08-17 03:51:36 +02:00
array (
2021-06-08 03:55:57 +02:00
2 => array ( 'content' => '<!-- wp:search /-->' ),
3 => array ( 'content' => '<!-- wp:group --><div class="wp-block-group"><!-- wp:heading --><h2>' . __ ( 'Recent Posts' ) . '</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->' ),
4 => array ( 'content' => '<!-- wp:group --><div class="wp-block-group"><!-- wp:heading --><h2>' . __ ( 'Recent Comments' ) . '</h2><!-- /wp:heading --><!-- wp:latest-comments {"displayAvatar":false,"displayDate":false,"displayExcerpt":false} /--></div><!-- /wp:group -->' ),
5 => array ( 'content' => '<!-- wp:group --><div class="wp-block-group"><!-- wp:heading --><h2>' . __ ( 'Archives' ) . '</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->' ),
6 => array ( 'content' => '<!-- wp:group --><div class="wp-block-group"><!-- wp:heading --><h2>' . __ ( 'Categories' ) . '</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->' ),
2017-12-01 00:11:00 +01:00
'_multiwidget' => 1 ,
)
);
update_option (
2018-08-17 03:51:36 +02:00
'sidebars_widgets' ,
array (
2017-12-01 00:11:00 +01:00
'wp_inactive_widgets' => array (),
2019-09-24 01:24:57 +02:00
'sidebar-1' => array (
2021-06-08 03:55:57 +02:00
0 => 'block-2' ,
1 => 'block-3' ,
2 => 'block-4' ,
2019-09-23 23:00:58 +02:00
),
2019-09-24 01:24:57 +02:00
'sidebar-2' => array (
2021-06-08 03:55:57 +02:00
0 => 'block-5' ,
1 => 'block-6' ,
2017-12-01 00:11:00 +01:00
),
'array_version' => 3 ,
)
);
2021-06-08 03:55:57 +02:00
2017-12-01 00:11:00 +01:00
if ( ! is_multisite () ) {
update_user_meta ( $user_id , 'show_welcome_panel' , 1 );
} elseif ( ! is_super_admin ( $user_id ) && ! metadata_exists ( 'user' , $user_id , 'show_welcome_panel' ) ) {
update_user_meta ( $user_id , 'show_welcome_panel' , 2 );
}
2010-01-20 21:09:41 +01:00
2017-12-01 00:11:00 +01:00
if ( is_multisite () ) {
// Flush rules to pick up the new page.
$wp_rewrite -> init ();
$wp_rewrite -> flush_rules ();
$user = new WP_User ( $user_id );
$wpdb -> update ( $wpdb -> options , array ( 'option_value' => $user -> user_email ), array ( 'option_name' => 'admin_email' ) );
// Remove all perms except for the login user.
$wpdb -> query ( $wpdb -> prepare ( " DELETE FROM $wpdb->usermeta WHERE user_id != %d AND meta_key = %s " , $user_id , $table_prefix . 'user_level' ) );
$wpdb -> query ( $wpdb -> prepare ( " DELETE FROM $wpdb->usermeta WHERE user_id != %d AND meta_key = %s " , $user_id , $table_prefix . 'capabilities' ) );
2023-07-09 22:07:22 +02:00
/*
* Delete any caps that snuck into the previously active blog . ( Hardcoded to blog 1 for now . )
* TODO : Get previous_blog_id .
*/
2020-02-09 17:55:09 +01:00
if ( ! is_super_admin ( $user_id ) && 1 != $user_id ) {
2017-12-01 00:11:00 +01:00
$wpdb -> delete (
2018-08-17 03:51:36 +02:00
$wpdb -> usermeta ,
array (
2017-12-01 00:11:00 +01:00
'user_id' => $user_id ,
'meta_key' => $wpdb -> base_prefix . '1_capabilities' ,
)
);
}
}
2010-01-20 21:09:41 +01:00
}
2006-03-31 10:07:39 +02:00
endif ;
2015-01-08 07:47:23 +01:00
/**
2017-08-22 13:52:48 +02:00
* Maybe enable pretty permalinks on installation .
2015-01-08 07:47:23 +01:00
*
2015-01-12 05:33:23 +01:00
* If after enabling pretty permalinks don ' t work , fallback to query - string permalinks .
2015-01-08 07:47:23 +01:00
*
* @ since 4.2 . 0
*
* @ global WP_Rewrite $wp_rewrite WordPress rewrite component .
2015-04-05 16:49:53 +02:00
*
* @ return bool Whether pretty permalinks are enabled . False otherwise .
2015-01-08 07:47:23 +01:00
*/
function wp_install_maybe_enable_pretty_permalinks () {
global $wp_rewrite ;
2015-01-12 05:33:23 +01:00
// Bail if a permalink structure is already enabled.
2015-01-08 07:47:23 +01:00
if ( get_option ( 'permalink_structure' ) ) {
2015-04-05 16:49:53 +02:00
return true ;
2015-01-08 07:47:23 +01:00
}
/*
2015-01-12 05:33:23 +01:00
* The Permalink structures to attempt .
*
2015-01-08 07:47:23 +01:00
* The first is designed for mod_rewrite or nginx rewriting .
2015-01-12 05:33:23 +01:00
*
* The second is PATHINFO - based permalinks for web server configurations
* without a true rewrite module enabled .
2015-01-08 07:47:23 +01:00
*/
$permalink_structures = array (
'/%year%/%monthnum%/%day%/%postname%/' ,
2017-12-01 00:11:00 +01:00
'/index.php/%year%/%monthnum%/%day%/%postname%/' ,
2015-01-08 07:47:23 +01:00
);
foreach ( ( array ) $permalink_structures as $permalink_structure ) {
$wp_rewrite -> set_permalink_structure ( $permalink_structure );
/*
2019-07-05 07:21:56 +02:00
* Flush rules with the hard option to force refresh of the web - server ' s
* rewrite config file ( e . g . . htaccess or web . config ) .
*/
2015-01-08 07:47:23 +01:00
$wp_rewrite -> flush_rules ( true );
2016-07-20 01:12:32 +02:00
$test_url = '' ;
2015-04-05 16:49:53 +02:00
2020-01-29 01:45:18 +01:00
// Test against a real WordPress post.
2016-07-20 01:12:32 +02:00
$first_post = get_page_by_path ( sanitize_title ( _x ( 'hello-world' , 'Default post slug' ) ), OBJECT , 'post' );
if ( $first_post ) {
$test_url = get_permalink ( $first_post -> ID );
2015-01-08 07:47:23 +01:00
}
/*
2019-07-05 07:21:56 +02:00
* Send a request to the site , and check whether
2023-02-03 15:41:26 +01:00
* the 'X-Pingback' header is returned as expected .
2019-07-05 07:21:56 +02:00
*
* Uses wp_remote_get () instead of wp_remote_head () because web servers
* can block head requests .
*/
2015-01-08 07:47:23 +01:00
$response = wp_remote_get ( $test_url , array ( 'timeout' => 5 ) );
2023-02-03 15:41:26 +01:00
$x_pingback_header = wp_remote_retrieve_header ( $response , 'X-Pingback' );
2020-02-09 17:55:09 +01:00
$pretty_permalinks = $x_pingback_header && get_bloginfo ( 'pingback_url' ) === $x_pingback_header ;
2015-01-08 07:47:23 +01:00
if ( $pretty_permalinks ) {
return true ;
}
}
/*
2015-01-12 05:33:23 +01:00
* If it makes it this far , pretty permalinks failed .
* Fallback to query - string permalinks .
2015-01-08 07:47:23 +01:00
*/
$wp_rewrite -> set_permalink_structure ( '' );
$wp_rewrite -> flush_rules ( true );
2015-04-05 16:49:53 +02:00
return false ;
2015-01-08 07:47:23 +01:00
}
2017-12-01 00:11:00 +01:00
if ( ! function_exists ( 'wp_new_blog_notification' ) ) :
/**
2020-09-26 00:33:08 +02:00
* Notifies the site admin that the installation of WordPress is complete .
2017-12-01 00:11:00 +01:00
*
2020-09-26 00:33:08 +02:00
* Sends an email to the new administrator that the installation is complete
2017-12-01 00:11:00 +01:00
* and provides them with a record of their login credentials .
*
* @ since 2.1 . 0
*
* @ param string $blog_title Site title .
2020-09-26 00:33:08 +02:00
* @ param string $blog_url Site URL .
* @ param int $user_id Administrator ' s user ID .
* @ param string $password Administrator ' s password . Note that a placeholder message is
* usually passed instead of the actual password .
2017-12-01 00:11:00 +01:00
*/
function wp_new_blog_notification ( $blog_title , $blog_url , $user_id , $password ) {
$user = new WP_User ( $user_id );
$email = $user -> user_email ;
$name = $user -> user_login ;
$login_url = wp_login_url ();
I18N: Improve translator comments.
* Add missing translator comments.
* Fix placement of some translator comments. Translator comments should be on the line directly above the line containing the translation function call for optimal compatibility with various `.pot` file generation tools. The CS auto-fixing, which changed some inconsistent function calls to multi-line function calls, is part of the reason why this was no longer the case for a select group of translator comments.
Includes minor code layout fixes.
Polyglots, rejoice! All WordPress core files now have translator comments for all strings with placeholders!
Props jrf, subrataemfluence, GaryJ, webdados, Dency, swissspidy, alvarogois, marcomartins, mihaiiceyro, vladwtz, niq1982, flipkeijzer, michielatyoast, chandrapatel, thrijith, joshuanoyce, FesoVik, tessak22, bhaktirajdev, cleancoded, dhavalkasvala, garrett-eclipse, bibliofille, socalchristina, priyankkpatel, 5hel2l2y, adamsilverstein, JeffPaul, pierlo, SergeyBiryukov.
Fixes #44360.
Built from https://develop.svn.wordpress.org/trunk@45926
git-svn-id: http://core.svn.wordpress.org/trunk@45737 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2019-09-01 19:13:59 +02:00
2017-12-01 00:11:00 +01:00
$message = sprintf (
2019-09-03 02:41:05 +02:00
/* translators: New site notification email. 1: New site URL, 2: User login, 3: User password or password reset link, 4: Login URL. */
2017-12-01 00:11:00 +01:00
__ (
' Your new WordPress site has been successfully set up at :
% 1 $s
2006-03-31 10:07:39 +02:00
You can log in to the administrator account with the following information :
2017-12-01 00:11:00 +01:00
Username : % 2 $s
Password : % 3 $s
Log in here : % 4 $s
2006-03-31 10:07:39 +02:00
2010-05-01 09:09:38 +02:00
We hope you enjoy your new site . Thanks !
2006-03-31 10:07:39 +02:00
-- The WordPress Team
2014-03-03 03:34:27 +01:00
https :// wordpress . org /
2017-12-01 00:11:00 +01:00
'
2018-08-17 03:51:36 +02:00
),
$blog_url ,
$name ,
$password ,
$login_url
2017-12-01 00:11:00 +01:00
);
2006-03-31 10:07:39 +02:00
2020-09-26 00:33:08 +02:00
$installed_email = array (
'to' => $email ,
'subject' => __ ( 'New WordPress Site' ),
'message' => $message ,
'headers' => '' ,
);
/**
* Filters the contents of the email sent to the site administrator when WordPress is installed .
*
* @ since 5.6 . 0
*
* @ param array $installed_email {
* Used to build wp_mail () .
*
* @ type string $to The email address of the recipient .
* @ type string $subject The subject of the email .
* @ type string $message The content of the email .
* @ type string $headers Headers .
* }
* @ param WP_User $user The site administrator user object .
* @ param string $blog_title The site title .
* @ param string $blog_url The site URL .
* @ param string $password The site administrator ' s password . Note that a placeholder message
* is usually passed instead of the user ' s actual password .
*/
$installed_email = apply_filters ( 'wp_installed_email' , $installed_email , $user , $blog_title , $blog_url , $password );
wp_mail (
$installed_email [ 'to' ],
$installed_email [ 'subject' ],
$installed_email [ 'message' ],
$installed_email [ 'headers' ]
);
2017-12-01 00:11:00 +01:00
}
2006-03-31 10:07:39 +02:00
endif ;
2017-12-01 00:11:00 +01:00
if ( ! function_exists ( 'wp_upgrade' ) ) :
/**
* Runs WordPress Upgrade functions .
*
* Upgrades the database if needed during a site update .
*
* @ since 2.1 . 0
*
2019-08-04 03:12:56 +02:00
* @ global int $wp_current_db_version The old ( current ) database version .
* @ global int $wp_db_version The new database version .
2017-12-01 00:11:00 +01:00
*/
function wp_upgrade () {
2023-08-31 16:45:20 +02:00
global $wp_current_db_version , $wp_db_version ;
2006-03-31 10:07:39 +02:00
2017-12-01 00:11:00 +01:00
$wp_current_db_version = __get_option ( 'db_version' );
2006-03-31 10:07:39 +02:00
2019-09-12 15:06:57 +02:00
// We are up to date. Nothing to do.
2017-12-01 00:11:00 +01:00
if ( $wp_db_version == $wp_current_db_version ) {
return ;
}
2006-03-31 10:07:39 +02:00
2017-12-01 00:11:00 +01:00
if ( ! is_blog_installed () ) {
return ;
}
2008-08-28 22:55:40 +02:00
2017-12-01 00:11:00 +01:00
wp_check_mysql_version ();
wp_cache_flush ();
pre_schema_upgrade ();
make_db_current_silent ();
upgrade_all ();
if ( is_multisite () && is_main_site () ) {
upgrade_network ();
}
wp_cache_flush ();
2010-01-18 23:21:36 +01:00
2017-12-01 00:11:00 +01:00
if ( is_multisite () ) {
2019-09-19 23:42:58 +02:00
update_site_meta ( get_current_blog_id (), 'db_version' , $wp_db_version );
update_site_meta ( get_current_blog_id (), 'db_last_updated' , microtime () );
2017-11-21 00:46:48 +01:00
}
2014-01-27 17:32:12 +01:00
2023-06-26 23:17:22 +02:00
delete_transient ( 'wp_core_block_css_files' );
2017-12-01 00:11:00 +01:00
/**
* Fires after a site is fully upgraded .
*
* @ since 3.9 . 0
*
* @ param int $wp_db_version The new $wp_db_version .
* @ param int $wp_current_db_version The old ( current ) $wp_db_version .
*/
do_action ( 'wp_upgrade' , $wp_db_version , $wp_current_db_version );
}
2006-03-31 10:07:39 +02:00
endif ;
2008-10-02 03:03:26 +02:00
/**
2017-08-22 13:52:48 +02:00
* Functions to be called in installation and upgrade scripts .
2008-10-02 03:03:26 +02:00
*
2015-01-19 10:15:22 +01:00
* Contains conditional checks to determine which upgrade scripts to run ,
* based on database version and WP version being updated - to .
2008-10-02 03:03:26 +02:00
*
2015-12-16 18:59:27 +01:00
* @ ignore
2010-12-01 20:24:38 +01:00
* @ since 1.0 . 1
2015-01-19 10:15:22 +01:00
*
2019-08-04 03:12:56 +02:00
* @ global int $wp_current_db_version The old ( current ) database version .
* @ global int $wp_db_version The new database version .
2008-10-02 03:03:26 +02:00
*/
2004-01-12 13:12:45 +01:00
function upgrade_all () {
2012-02-28 21:29:33 +01:00
global $wp_current_db_version , $wp_db_version ;
2020-07-08 12:58:05 +02:00
2017-12-01 00:11:00 +01:00
$wp_current_db_version = __get_option ( 'db_version' );
2005-10-28 00:04:12 +02:00
2019-09-12 15:06:57 +02:00
// We are up to date. Nothing to do.
2017-12-01 00:11:00 +01:00
if ( $wp_db_version == $wp_current_db_version ) {
2005-10-28 00:04:12 +02:00
return ;
2017-12-01 00:11:00 +01:00
}
2005-10-28 00:04:12 +02:00
// If the version is not set in the DB, try to guess the version.
2017-12-01 00:11:00 +01:00
if ( empty ( $wp_current_db_version ) ) {
2005-10-28 00:04:12 +02:00
$wp_current_db_version = 0 ;
// If the template option exists, we have 1.5.
2017-12-01 00:11:00 +01:00
$template = __get_option ( 'template' );
if ( ! empty ( $template ) ) {
2005-10-28 00:04:12 +02:00
$wp_current_db_version = 2541 ;
2017-12-01 00:11:00 +01:00
}
2005-10-28 00:04:12 +02:00
}
2006-02-12 08:53:23 +01:00
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 6039 ) {
2007-09-07 01:08:25 +02:00
upgrade_230_options_table ();
2017-12-01 00:11:00 +01:00
}
2007-09-07 01:08:25 +02:00
2004-09-05 02:24:28 +02:00
populate_options ();
2005-10-28 00:04:12 +02:00
if ( $wp_current_db_version < 2541 ) {
upgrade_100 ();
upgrade_101 ();
upgrade_110 ();
upgrade_130 ();
}
2006-02-12 08:53:23 +01:00
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 3308 ) {
2005-10-28 00:04:12 +02:00
upgrade_160 ();
2017-12-01 00:11:00 +01:00
}
2005-10-28 00:04:12 +02:00
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 4772 ) {
2006-02-09 11:03:48 +01:00
upgrade_210 ();
2017-12-01 00:11:00 +01:00
}
2006-02-09 11:03:48 +01:00
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 4351 ) {
2006-11-30 09:48:56 +01:00
upgrade_old_slugs ();
2017-12-01 00:11:00 +01:00
}
2007-06-14 04:25:30 +02:00
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 5539 ) {
2007-04-25 01:27:20 +02:00
upgrade_230 ();
2017-12-01 00:11:00 +01:00
}
2007-05-25 00:40:24 +02:00
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 6124 ) {
2007-09-18 18:37:21 +02:00
upgrade_230_old_tables ();
2017-12-01 00:11:00 +01:00
}
2007-09-18 18:37:21 +02:00
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 7499 ) {
2008-02-02 08:57:51 +01:00
upgrade_250 ();
2017-12-01 00:11:00 +01:00
}
2008-02-02 08:57:51 +01:00
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 7935 ) {
2008-05-15 22:07:54 +02:00
upgrade_252 ();
2017-12-01 00:11:00 +01:00
}
2008-05-15 22:07:54 +02:00
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 8201 ) {
2008-06-06 21:21:35 +02:00
upgrade_260 ();
2017-12-01 00:11:00 +01:00
}
2008-06-06 21:21:35 +02:00
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 8989 ) {
2008-08-04 23:01:09 +02:00
upgrade_270 ();
2017-12-01 00:11:00 +01:00
}
2008-08-04 23:01:09 +02:00
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 10360 ) {
2009-02-12 00:10:11 +01:00
upgrade_280 ();
2017-12-01 00:11:00 +01:00
}
2009-02-12 00:10:11 +01:00
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 11958 ) {
2009-09-22 08:00:46 +02:00
upgrade_290 ();
2017-12-01 00:11:00 +01:00
}
2009-09-22 08:00:46 +02:00
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 15260 ) {
2010-01-18 23:21:36 +01:00
upgrade_300 ();
2017-12-01 00:11:00 +01:00
}
2010-01-18 23:21:36 +01:00
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 19389 ) {
2011-10-25 07:48:09 +02:00
upgrade_330 ();
2017-12-01 00:11:00 +01:00
}
2011-09-29 23:41:22 +02:00
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 20080 ) {
2012-01-31 18:45:22 +01:00
upgrade_340 ();
2017-12-01 00:11:00 +01:00
}
2012-01-31 18:45:22 +01:00
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 22422 ) {
2012-08-13 18:18:42 +02:00
upgrade_350 ();
2017-12-01 00:11:00 +01:00
}
2012-08-13 18:18:42 +02:00
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 25824 ) {
2013-10-17 06:02:09 +02:00
upgrade_370 ();
2017-12-01 00:11:00 +01:00
}
2013-10-17 06:02:09 +02:00
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 26148 ) {
2013-11-14 05:04:10 +01:00
upgrade_372 ();
2017-12-01 00:11:00 +01:00
}
2013-11-14 05:04:10 +01:00
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 26691 ) {
2013-12-05 22:30:11 +01:00
upgrade_380 ();
2017-12-01 00:11:00 +01:00
}
2013-12-05 22:30:11 +01:00
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 29630 ) {
2014-08-26 21:59:16 +02:00
upgrade_400 ();
2017-12-01 00:11:00 +01:00
}
2014-08-26 21:59:16 +02:00
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 33055 ) {
2015-04-27 18:08:27 +02:00
upgrade_430 ();
2017-12-01 00:11:00 +01:00
}
2015-04-27 18:04:25 +02:00
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 33056 ) {
2015-08-19 13:31:26 +02:00
upgrade_431 ();
2017-12-01 00:11:00 +01:00
}
2015-08-19 13:31:26 +02:00
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 35700 ) {
Schema: Increase the length of `wp_options.option_name`.
It's pretty easy to run over the `option_name` length, which causes undefined behaviour when inserting and retrieving options. Increasing the length from `VARCHAR(64)` to `VARCHAR(191)` significantly reduces the risk of this occurring.
Because `option_name` has a `UNIQUE` index, we can only increase it to 191 characters, rather than 255. The index can only use a prefix of 191 characters, so will incorrectly restrict long different strings that have the same prefix, if we make the column longer.
Props scribu, OriginalEXE, khromov, MikeHansenMe, netweb, pento.
Fixes #13310.
Built from https://develop.svn.wordpress.org/trunk@34030
git-svn-id: http://core.svn.wordpress.org/trunk@33999 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-09-11 03:26:24 +02:00
upgrade_440 ();
2017-12-01 00:11:00 +01:00
}
Schema: Increase the length of `wp_options.option_name`.
It's pretty easy to run over the `option_name` length, which causes undefined behaviour when inserting and retrieving options. Increasing the length from `VARCHAR(64)` to `VARCHAR(191)` significantly reduces the risk of this occurring.
Because `option_name` has a `UNIQUE` index, we can only increase it to 191 characters, rather than 255. The index can only use a prefix of 191 characters, so will incorrectly restrict long different strings that have the same prefix, if we make the column longer.
Props scribu, OriginalEXE, khromov, MikeHansenMe, netweb, pento.
Fixes #13310.
Built from https://develop.svn.wordpress.org/trunk@34030
git-svn-id: http://core.svn.wordpress.org/trunk@33999 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-09-11 03:26:24 +02:00
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 36686 ) {
2016-01-06 07:12:26 +01:00
upgrade_450 ();
2017-12-01 00:11:00 +01:00
}
2016-01-06 07:12:26 +01:00
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 37965 ) {
2016-06-26 16:26:29 +02:00
upgrade_460 ();
2017-12-01 00:11:00 +01:00
}
2016-06-26 16:26:29 +02:00
2019-02-08 01:16:50 +01:00
if ( $wp_current_db_version < 44719 ) {
upgrade_510 ();
2018-12-13 23:27:04 +01:00
}
2019-08-07 02:04:56 +02:00
if ( $wp_current_db_version < 45744 ) {
upgrade_530 ();
2019-08-07 03:01:57 +02:00
}
2019-08-07 02:04:56 +02:00
2020-07-23 20:43:04 +02:00
if ( $wp_current_db_version < 48575 ) {
2020-04-17 21:35:06 +02:00
upgrade_550 ();
}
App Passwords: Prevent conflicts when Basic Auth is already used by the site.
Application Passwords uses Basic Authentication to transfer authentication details. If the site is already using Basic Auth, for instance to implement a private staging environment, then the REST API will treat this as an authentication attempt and would end up generating an error for any REST API request.
Now, Application Password authentication will only be attempted if Application Passwords is in use by a site. This is flagged by setting an option whenever an Application Password is created. An upgrade routine is added to set this option if any App Passwords already exist.
Lastly, creating an Application Password will be prevented if the site appears to already be using Basic Authentication.
Props chexwarrior, georgestephanis, adamsilverstein, helen, Clorith, marybaum, TimothyBlynJacobs.
Fixes #51939.
Built from https://develop.svn.wordpress.org/trunk@49752
git-svn-id: http://core.svn.wordpress.org/trunk@49475 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-12-04 22:44:07 +01:00
if ( $wp_current_db_version < 49752 ) {
2020-11-12 18:55:11 +01:00
upgrade_560 ();
}
2021-10-18 15:30:57 +02:00
if ( $wp_current_db_version < 51917 ) {
upgrade_590 ();
}
Users: Introduce the concept of a large site to single site installations.
Currently in WordPress multisite there is a concept of large networks. The function `wp_is_large_network` is used to determine if a network has a large number of sites or users. If a network is marked as large, then
expensive queries to calculate user counts are not run on page load but deferred to scheduled events. However there are a number of places in a single site installation where this functionality would also be useful, as
expensive calls to count users and roles can make screens in the admin extremely slow.
In this change, the `get_user_count` function and related functionality around it is ported to be available in a single site context. This means that expensive calls to the `count_users` function are replaced with
calls to `get_user_count`. This change also includes a new function called `wp_is_large_user_count` and a filter of the same name, to mark if a site is large.
Props johnbillion, Spacedmonkey, Mista-Flo, lumpysimon, tharsheblows, obenland, miss_jwo, jrchamp, flixos90, macbookandrew, pento, desrosj, johnjamesjacoby, jb510, davidbaumwald, costdev.
Fixes #38741.
Built from https://develop.svn.wordpress.org/trunk@53011
git-svn-id: http://core.svn.wordpress.org/trunk@52600 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-29 14:42:13 +02:00
if ( $wp_current_db_version < 53011 ) {
upgrade_600 ();
}
2023-05-24 19:35:18 +02:00
if ( $wp_current_db_version < 55853 ) {
upgrade_630 ();
}
Media: Disable attachment pages for new installations.
WordPress creates attachment pages by default for every attachment uploaded. On the vast majority of sites, these attachment pages don't contain any meaningful information. They do however exist, get indexed by search engines, and sometimes even rank in search results, leading to bad results for users and site owners.
This commit introduces a `wp_attachment_pages_enabled` database option to control the attachment pages behavior:
* On existing sites, the option is set to `1` on upgrade, so that attachment pages continue to work as is.
* For new sites, the option is set to to `0` by default, which means attachment pages are redirected to the attachment URL.
* Sites that want to enable or disable the attachment pages can set the option to `1` or `0`, respectively.
Follow-up to [2958], [3303], [7149], [34690].
Props aristath, poena, afercia, joostdevalk, jonoaldersonwp, azaozz, johnbillion, joedolson, basiliskan, audrasjb, davelo, rilwis, manfcarlo, tyxla, garrett-eclipse, seedsca, eatingrules, matveb, antpb, zodiac1978, oglekler, zunaid321, costdev, SergeyBiryukov.
Fixes #57913.
Built from https://develop.svn.wordpress.org/trunk@56657
git-svn-id: http://core.svn.wordpress.org/trunk@56169 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-09-22 02:04:41 +02:00
if ( $wp_current_db_version < 56657 ) {
upgrade_640 ();
}
2023-12-04 20:51:23 +01:00
if ( $wp_current_db_version < 57155 ) {
upgrade_650 ();
}
2012-08-17 01:08:07 +02:00
maybe_disable_link_manager ();
2007-04-29 22:53:29 +02:00
maybe_disable_automattic_widgets ();
2006-11-30 09:48:56 +01:00
2009-04-22 01:12:57 +02:00
update_option ( 'db_version' , $wp_db_version );
update_option ( 'db_upgraded' , true );
2004-06-13 19:02:44 +02:00
}
2008-10-02 03:03:26 +02:00
/**
* Execute changes made in WordPress 1.0 .
*
2015-12-16 18:59:27 +01:00
* @ ignore
2008-10-02 03:03:26 +02:00
* @ since 1.0 . 0
2015-05-29 04:06:31 +02:00
*
2015-10-15 01:44:25 +02:00
* @ global wpdb $wpdb WordPress database abstraction object .
2008-10-02 03:03:26 +02:00
*/
2003-12-30 06:36:47 +01:00
function upgrade_100 () {
2004-05-24 10:22:18 +02:00
global $wpdb ;
2003-12-30 06:36:47 +01:00
2020-01-29 01:45:18 +01:00
// Get the title and ID of every post, post_name to check if it already has a value.
2017-12-01 00:11:00 +01:00
$posts = $wpdb -> get_results ( " SELECT ID, post_title, post_name FROM $wpdb->posts WHERE post_name = '' " );
if ( $posts ) {
foreach ( $posts as $post ) {
2020-05-16 20:42:12 +02:00
if ( '' === $post -> post_name ) {
2017-12-01 00:11:00 +01:00
$newtitle = sanitize_title ( $post -> post_title );
$wpdb -> query ( $wpdb -> prepare ( " UPDATE $wpdb->posts SET post_name = %s WHERE ID = %d " , $newtitle , $post -> ID ) );
2004-05-05 10:00:13 +02:00
}
2003-12-30 06:36:47 +01:00
}
}
2006-02-12 08:53:23 +01:00
2017-12-01 00:11:00 +01:00
$categories = $wpdb -> get_results ( " SELECT cat_ID, cat_name, category_nicename FROM $wpdb->categories " );
foreach ( $categories as $category ) {
2020-05-16 20:42:12 +02:00
if ( '' === $category -> category_nicename ) {
2017-12-01 00:11:00 +01:00
$newtitle = sanitize_title ( $category -> cat_name );
$wpdb -> update ( $wpdb -> categories , array ( 'category_nicename' => $newtitle ), array ( 'cat_ID' => $category -> cat_ID ) );
2003-12-30 06:36:47 +01:00
}
}
2014-06-10 02:44:15 +02:00
$sql = " UPDATE $wpdb->options
SET option_value = REPLACE ( option_value , 'wp-links/links-images/' , 'wp-images/links/' )
WHERE option_name LIKE % s
AND option_value LIKE % s " ;
$wpdb -> query ( $wpdb -> prepare ( $sql , $wpdb -> esc_like ( 'links_rating_image' ) . '%' , $wpdb -> esc_like ( 'wp-links/links-images/' ) . '%' ) );
2004-09-05 02:24:28 +02:00
2017-12-01 00:11:00 +01:00
$done_ids = $wpdb -> get_results ( " SELECT DISTINCT post_id FROM $wpdb->post2cat " );
if ( $done_ids ) :
2015-01-16 20:13:23 +01:00
$done_posts = array ();
2017-12-01 00:11:00 +01:00
foreach ( $done_ids as $done_id ) :
2004-05-05 10:00:13 +02:00
$done_posts [] = $done_id -> post_id ;
endforeach ;
2017-12-01 00:11:00 +01:00
$catwhere = ' AND ID NOT IN (' . implode ( ',' , $done_posts ) . ')' ;
else :
2004-05-05 10:00:13 +02:00
$catwhere = '' ;
endif ;
2006-02-12 08:53:23 +01:00
2017-12-01 00:11:00 +01:00
$allposts = $wpdb -> get_results ( " SELECT ID, post_category FROM $wpdb->posts WHERE post_category != '0' $catwhere " );
if ( $allposts ) :
foreach ( $allposts as $post ) {
2020-01-29 01:45:18 +01:00
// Check to see if it's already been imported.
2017-12-01 00:11:00 +01:00
$cat = $wpdb -> get_row ( $wpdb -> prepare ( " SELECT * FROM $wpdb->post2cat WHERE post_id = %d AND category_id = %d " , $post -> ID , $post -> post_category ) );
2020-01-29 01:45:18 +01:00
if ( ! $cat && 0 != $post -> post_category ) { // If there's no result.
2017-12-01 00:11:00 +01:00
$wpdb -> insert (
2018-08-17 03:51:36 +02:00
$wpdb -> post2cat ,
array (
2017-12-01 00:11:00 +01:00
'post_id' => $post -> ID ,
'category_id' => $post -> post_category ,
)
);
2004-05-05 10:00:13 +02:00
}
2003-12-30 06:36:47 +01:00
}
2004-05-05 10:00:13 +02:00
endif ;
2003-12-30 06:36:47 +01:00
}
2008-10-02 03:03:26 +02:00
/**
* Execute changes made in WordPress 1.0 . 1.
*
2015-12-16 18:59:27 +01:00
* @ ignore
2008-10-02 03:03:26 +02:00
* @ since 1.0 . 1
2015-05-29 04:06:31 +02:00
*
2015-10-15 01:44:25 +02:00
* @ global wpdb $wpdb WordPress database abstraction object .
2008-10-02 03:03:26 +02:00
*/
2004-01-04 02:58:31 +01:00
function upgrade_101 () {
2004-05-24 10:22:18 +02:00
global $wpdb ;
2004-09-04 23:52:00 +02:00
2020-01-29 01:45:18 +01:00
// Clean up indices, add a few.
2017-12-01 00:11:00 +01:00
add_clean_index ( $wpdb -> posts , 'post_name' );
add_clean_index ( $wpdb -> posts , 'post_status' );
add_clean_index ( $wpdb -> categories , 'category_nicename' );
add_clean_index ( $wpdb -> comments , 'comment_approved' );
add_clean_index ( $wpdb -> comments , 'comment_post_ID' );
add_clean_index ( $wpdb -> links , 'link_category' );
add_clean_index ( $wpdb -> links , 'link_visible' );
2004-01-04 02:58:31 +01:00
}
2008-10-02 03:03:26 +02:00
/**
* Execute changes made in WordPress 1.2 .
*
2015-12-16 18:59:27 +01:00
* @ ignore
2008-10-02 03:03:26 +02:00
* @ since 1.2 . 0
2015-05-29 04:06:31 +02:00
*
2015-10-15 01:44:25 +02:00
* @ global wpdb $wpdb WordPress database abstraction object .
2008-10-02 03:03:26 +02:00
*/
2004-02-01 13:14:28 +01:00
function upgrade_110 () {
2005-10-28 00:04:12 +02:00
global $wpdb ;
2006-02-12 08:53:23 +01:00
2006-11-19 08:56:05 +01:00
// Set user_nicename.
2017-12-01 00:11:00 +01:00
$users = $wpdb -> get_results ( " SELECT ID, user_nickname, user_nicename FROM $wpdb->users " );
foreach ( $users as $user ) {
2020-05-16 20:42:12 +02:00
if ( '' === $user -> user_nicename ) {
2017-12-01 00:11:00 +01:00
$newname = sanitize_title ( $user -> user_nickname );
$wpdb -> update ( $wpdb -> users , array ( 'user_nicename' => $newname ), array ( 'ID' => $user -> ID ) );
2006-11-19 08:56:05 +01:00
}
}
2004-02-11 05:51:19 +01:00
2017-12-01 00:11:00 +01:00
$users = $wpdb -> get_results ( " SELECT ID, user_pass from $wpdb->users " );
foreach ( $users as $row ) {
if ( ! preg_match ( '/^[A-Fa-f0-9]{32}$/' , $row -> user_pass ) ) {
$wpdb -> update ( $wpdb -> users , array ( 'user_pass' => md5 ( $row -> user_pass ) ), array ( 'ID' => $row -> ID ) );
2004-02-09 10:56:57 +01:00
}
}
2004-04-15 09:53:45 +02:00
2020-01-29 01:45:18 +01:00
// Get the GMT offset, we'll use that later on.
2004-06-13 19:02:44 +02:00
$all_options = get_alloptions_110 ();
2004-03-24 23:53:30 +01:00
$time_difference = $all_options -> time_difference ;
2019-05-26 02:12:54 +02:00
$server_time = time () + gmdate ( 'Z' );
2017-12-01 00:11:00 +01:00
$weblogger_time = $server_time + $time_difference * HOUR_IN_SECONDS ;
$gmt_time = time ();
2004-02-23 02:52:38 +01:00
2017-12-01 00:11:00 +01:00
$diff_gmt_server = ( $gmt_time - $server_time ) / HOUR_IN_SECONDS ;
$diff_weblogger_server = ( $weblogger_time - $server_time ) / HOUR_IN_SECONDS ;
$diff_gmt_weblogger = $diff_gmt_server - $diff_weblogger_server ;
$gmt_offset = - $diff_gmt_weblogger ;
2004-03-24 23:53:30 +01:00
2020-01-29 01:45:18 +01:00
// Add a gmt_offset option, with value $gmt_offset.
2017-12-01 00:11:00 +01:00
add_option ( 'gmt_offset' , $gmt_offset );
2004-03-24 23:53:30 +01:00
2020-01-29 01:45:18 +01:00
/*
* Check if we already set the GMT fields . If we did , then
* MAX ( post_date_gmt ) can 't be ' 0000 - 00 - 00 00 : 00 : 00 ' .
* < michel_v > I just slapped myself silly for not thinking about it earlier .
*/
2020-05-16 20:42:12 +02:00
$got_gmt_fields = ( '0000-00-00 00:00:00' !== $wpdb -> get_var ( " SELECT MAX(post_date_gmt) FROM $wpdb->posts " ) );
2004-05-09 23:30:57 +02:00
2017-12-01 00:11:00 +01:00
if ( ! $got_gmt_fields ) {
2004-03-24 23:53:30 +01:00
2020-01-29 01:45:18 +01:00
// Add or subtract time to all dates, to get GMT dates.
2020-10-08 23:15:13 +02:00
$add_hours = ( int ) $diff_gmt_weblogger ;
$add_minutes = ( int ) ( 60 * ( $diff_gmt_weblogger - $add_hours ) );
2017-12-01 00:11:00 +01:00
$wpdb -> query ( " UPDATE $wpdb->posts SET post_date_gmt = DATE_ADD(post_date, INTERVAL ' $add_hours : $add_minutes ' HOUR_MINUTE) " );
$wpdb -> query ( " UPDATE $wpdb->posts SET post_modified = post_date " );
$wpdb -> query ( " UPDATE $wpdb->posts SET post_modified_gmt = DATE_ADD(post_modified, INTERVAL ' $add_hours : $add_minutes ' HOUR_MINUTE) WHERE post_modified != '0000-00-00 00:00:00' " );
$wpdb -> query ( " UPDATE $wpdb->comments SET comment_date_gmt = DATE_ADD(comment_date, INTERVAL ' $add_hours : $add_minutes ' HOUR_MINUTE) " );
$wpdb -> query ( " UPDATE $wpdb->users SET user_registered = DATE_ADD(user_registered, INTERVAL ' $add_hours : $add_minutes ' HOUR_MINUTE) " );
2004-03-24 23:53:30 +01:00
}
2004-04-27 16:43:10 +02:00
}
2008-10-02 03:03:26 +02:00
/**
* Execute changes made in WordPress 1.5 .
*
2015-12-16 18:59:27 +01:00
* @ ignore
2008-10-02 03:03:26 +02:00
* @ since 1.5 . 0
2015-05-29 04:06:31 +02:00
*
2015-10-15 01:44:25 +02:00
* @ global wpdb $wpdb WordPress database abstraction object .
2008-10-02 03:03:26 +02:00
*/
2004-05-31 17:43:45 +02:00
function upgrade_130 () {
2006-11-19 08:56:05 +01:00
global $wpdb ;
2004-05-31 17:43:45 +02:00
2006-11-19 08:56:05 +01:00
// Remove extraneous backslashes.
2017-12-01 00:11:00 +01:00
$posts = $wpdb -> get_results ( " SELECT ID, post_title, post_content, post_excerpt, guid, post_date, post_name, post_status, post_author FROM $wpdb->posts " );
if ( $posts ) {
foreach ( $posts as $post ) {
$post_content = addslashes ( deslash ( $post -> post_content ) );
$post_title = addslashes ( deslash ( $post -> post_title ) );
$post_excerpt = addslashes ( deslash ( $post -> post_excerpt ) );
if ( empty ( $post -> guid ) ) {
$guid = get_permalink ( $post -> ID );
} else {
2004-09-05 04:41:01 +02:00
$guid = $post -> guid ;
2017-12-01 00:11:00 +01:00
}
2004-09-05 04:41:01 +02:00
2017-12-01 00:11:00 +01:00
$wpdb -> update ( $wpdb -> posts , compact ( 'post_title' , 'post_content' , 'post_excerpt' , 'guid' ), array ( 'ID' => $post -> ID ) );
2009-03-06 05:27:51 +01:00
2004-06-18 02:22:09 +02:00
}
}
2006-11-19 08:56:05 +01:00
// Remove extraneous backslashes.
2017-12-01 00:11:00 +01:00
$comments = $wpdb -> get_results ( " SELECT comment_ID, comment_author, comment_content FROM $wpdb->comments " );
if ( $comments ) {
foreach ( $comments as $comment ) {
$comment_content = deslash ( $comment -> comment_content );
$comment_author = deslash ( $comment -> comment_author );
2009-03-18 03:43:45 +01:00
2017-12-01 00:11:00 +01:00
$wpdb -> update ( $wpdb -> comments , compact ( 'comment_content' , 'comment_author' ), array ( 'comment_ID' => $comment -> comment_ID ) );
2004-06-18 02:22:09 +02:00
}
}
2004-07-16 01:31:06 +02:00
2006-11-19 08:56:05 +01:00
// Remove extraneous backslashes.
2017-12-01 00:11:00 +01:00
$links = $wpdb -> get_results ( " SELECT link_id, link_name, link_description FROM $wpdb->links " );
if ( $links ) {
foreach ( $links as $link ) {
$link_name = deslash ( $link -> link_name );
$link_description = deslash ( $link -> link_description );
2009-03-18 03:43:45 +01:00
2017-12-01 00:11:00 +01:00
$wpdb -> update ( $wpdb -> links , compact ( 'link_name' , 'link_description' ), array ( 'link_id' => $link -> link_id ) );
2004-07-16 01:31:06 +02:00
}
}
2017-12-01 00:11:00 +01:00
$active_plugins = __get_option ( 'active_plugins' );
2005-03-29 07:34:30 +02:00
2014-07-17 11:14:16 +02:00
/*
* If plugins are not stored in an array , they ' re stored in the old
* newline separated format . Convert to new format .
*/
2017-12-01 00:11:00 +01:00
if ( ! is_array ( $active_plugins ) ) {
$active_plugins = explode ( " \n " , trim ( $active_plugins ) );
update_option ( 'active_plugins' , $active_plugins );
2006-11-19 08:56:05 +01:00
}
2004-08-30 09:16:40 +02:00
2020-01-29 01:45:18 +01:00
// Obsolete tables.
2017-12-01 00:11:00 +01:00
$wpdb -> query ( 'DROP TABLE IF EXISTS ' . $wpdb -> prefix . 'optionvalues' );
$wpdb -> query ( 'DROP TABLE IF EXISTS ' . $wpdb -> prefix . 'optiontypes' );
$wpdb -> query ( 'DROP TABLE IF EXISTS ' . $wpdb -> prefix . 'optiongroups' );
$wpdb -> query ( 'DROP TABLE IF EXISTS ' . $wpdb -> prefix . 'optiongroup_options' );
2004-09-27 15:52:46 +02:00
2020-01-29 01:45:18 +01:00
// Update comments table to use comment_type.
2017-12-01 00:11:00 +01:00
$wpdb -> query ( " UPDATE $wpdb->comments SET comment_type='trackback', comment_content = REPLACE(comment_content, '<trackback />', '') WHERE comment_content LIKE '<trackback />%' " );
$wpdb -> query ( " UPDATE $wpdb->comments SET comment_type='pingback', comment_content = REPLACE(comment_content, '<pingback />', '') WHERE comment_content LIKE '<pingback />%' " );
2004-09-27 15:52:46 +02:00
2020-01-29 01:45:18 +01:00
// Some versions have multiple duplicate option_name rows with the same values.
2017-12-01 00:11:00 +01:00
$options = $wpdb -> get_results ( " SELECT option_name, COUNT(option_name) AS dupes FROM ` $wpdb->options ` GROUP BY option_name " );
2004-12-18 22:21:50 +01:00
foreach ( $options as $option ) {
if ( 1 != $option -> dupes ) { // Could this be done in the query?
2017-12-01 00:11:00 +01:00
$limit = $option -> dupes - 1 ;
$dupe_ids = $wpdb -> get_col ( $wpdb -> prepare ( " SELECT option_id FROM $wpdb->options WHERE option_name = %s LIMIT %d " , $option -> option_name , $limit ) );
2009-08-27 00:46:33 +02:00
if ( $dupe_ids ) {
2020-10-18 19:27:06 +02:00
$dupe_ids = implode ( ',' , $dupe_ids );
2017-12-01 00:11:00 +01:00
$wpdb -> query ( " DELETE FROM $wpdb->options WHERE option_id IN ( $dupe_ids ) " );
2009-08-27 00:46:33 +02:00
}
2004-12-18 22:21:50 +01:00
}
}
2005-01-02 11:09:16 +01:00
make_site_theme ();
2004-08-30 09:16:40 +02:00
}
2008-10-02 03:03:26 +02:00
/**
* Execute changes made in WordPress 2.0 .
*
2015-12-16 18:59:27 +01:00
* @ ignore
2008-10-02 03:03:26 +02:00
* @ since 2.0 . 0
2015-05-29 04:06:31 +02:00
*
2019-08-04 03:12:56 +02:00
* @ global wpdb $wpdb WordPress database abstraction object .
* @ global int $wp_current_db_version The old ( current ) database version .
2008-10-02 03:03:26 +02:00
*/
2005-06-12 22:49:13 +02:00
function upgrade_160 () {
2006-03-03 18:19:05 +01:00
global $wpdb , $wp_current_db_version ;
2005-11-15 23:55:24 +01:00
2005-10-28 00:04:12 +02:00
populate_roles_160 ();
2017-12-01 00:11:00 +01:00
$users = $wpdb -> get_results ( " SELECT * FROM $wpdb->users " );
2005-06-12 22:49:13 +02:00
foreach ( $users as $user ) :
2017-12-01 00:11:00 +01:00
if ( ! empty ( $user -> user_firstname ) ) {
update_user_meta ( $user -> ID , 'first_name' , wp_slash ( $user -> user_firstname ) );
}
if ( ! empty ( $user -> user_lastname ) ) {
update_user_meta ( $user -> ID , 'last_name' , wp_slash ( $user -> user_lastname ) );
}
if ( ! empty ( $user -> user_nickname ) ) {
update_user_meta ( $user -> ID , 'nickname' , wp_slash ( $user -> user_nickname ) );
}
if ( ! empty ( $user -> user_level ) ) {
2010-02-22 22:25:32 +01:00
update_user_meta ( $user -> ID , $wpdb -> prefix . 'user_level' , $user -> user_level );
2017-12-01 00:11:00 +01:00
}
if ( ! empty ( $user -> user_icq ) ) {
update_user_meta ( $user -> ID , 'icq' , wp_slash ( $user -> user_icq ) );
}
if ( ! empty ( $user -> user_aim ) ) {
update_user_meta ( $user -> ID , 'aim' , wp_slash ( $user -> user_aim ) );
}
if ( ! empty ( $user -> user_msn ) ) {
update_user_meta ( $user -> ID , 'msn' , wp_slash ( $user -> user_msn ) );
}
if ( ! empty ( $user -> user_yim ) ) {
update_user_meta ( $user -> ID , 'yim' , wp_slash ( $user -> user_icq ) );
}
if ( ! empty ( $user -> user_description ) ) {
update_user_meta ( $user -> ID , 'description' , wp_slash ( $user -> user_description ) );
}
if ( isset ( $user -> user_idmode ) ) :
2005-06-16 08:14:07 +02:00
$idmode = $user -> user_idmode ;
2020-02-09 17:55:09 +01:00
if ( 'nickname' === $idmode ) {
2017-12-01 00:11:00 +01:00
$id = $user -> user_nickname ;
}
2020-02-09 17:55:09 +01:00
if ( 'login' === $idmode ) {
2017-12-01 00:11:00 +01:00
$id = $user -> user_login ;
}
2020-02-09 17:55:09 +01:00
if ( 'firstname' === $idmode ) {
2017-12-01 00:11:00 +01:00
$id = $user -> user_firstname ;
}
2020-02-09 17:55:09 +01:00
if ( 'lastname' === $idmode ) {
2017-12-01 00:11:00 +01:00
$id = $user -> user_lastname ;
}
2020-02-09 17:55:09 +01:00
if ( 'namefl' === $idmode ) {
2017-12-01 00:11:00 +01:00
$id = $user -> user_firstname . ' ' . $user -> user_lastname ;
}
2020-02-09 17:55:09 +01:00
if ( 'namelf' === $idmode ) {
2017-12-01 00:11:00 +01:00
$id = $user -> user_lastname . ' ' . $user -> user_firstname ;
}
if ( ! $idmode ) {
$id = $user -> user_nickname ;
}
$wpdb -> update ( $wpdb -> users , array ( 'display_name' => $id ), array ( 'ID' => $user -> ID ) );
2005-06-16 08:14:07 +02:00
endif ;
2006-02-12 08:53:23 +01:00
2005-07-19 16:24:06 +02:00
// FIXME: RESET_CAPS is temporary code to reset roles and caps if flag is set.
2017-12-01 00:11:00 +01:00
$caps = get_user_meta ( $user -> ID , $wpdb -> prefix . 'capabilities' );
if ( empty ( $caps ) || defined ( 'RESET_CAPS' ) ) {
$level = get_user_meta ( $user -> ID , $wpdb -> prefix . 'user_level' , true );
$role = translate_level_to_role ( $level );
update_user_meta ( $user -> ID , $wpdb -> prefix . 'capabilities' , array ( $role => true ) );
2005-07-17 21:57:41 +02:00
}
2006-02-12 08:53:23 +01:00
2005-06-12 22:49:13 +02:00
endforeach ;
2005-07-09 03:27:46 +02:00
$old_user_fields = array ( 'user_firstname' , 'user_lastname' , 'user_icq' , 'user_aim' , 'user_msn' , 'user_yim' , 'user_idmode' , 'user_ip' , 'user_domain' , 'user_browser' , 'user_description' , 'user_nickname' , 'user_level' );
2005-06-15 01:22:55 +02:00
$wpdb -> hide_errors ();
2017-12-01 00:11:00 +01:00
foreach ( $old_user_fields as $old ) {
$wpdb -> query ( " ALTER TABLE $wpdb->users DROP $old " );
}
2005-06-15 01:22:55 +02:00
$wpdb -> show_errors ();
2006-02-12 08:53:23 +01:00
2014-07-17 11:14:16 +02:00
// Populate comment_count field of posts table.
2005-11-22 04:40:32 +01:00
$comments = $wpdb -> get_results ( " SELECT comment_post_ID, COUNT(*) as c FROM $wpdb->comments WHERE comment_approved = '1' GROUP BY comment_post_ID " );
2017-12-01 00:11:00 +01:00
if ( is_array ( $comments ) ) {
foreach ( $comments as $comment ) {
$wpdb -> update ( $wpdb -> posts , array ( 'comment_count' => $comment -> c ), array ( 'ID' => $comment -> comment_post_ID ) );
}
}
2005-11-16 07:29:36 +01:00
2014-07-17 11:14:16 +02:00
/*
* Some alpha versions used a post status of object instead of attachment
* and put the mime type in post_type instead of post_mime_type .
*/
2005-11-15 23:55:24 +01:00
if ( $wp_current_db_version > 2541 && $wp_current_db_version <= 3091 ) {
2017-12-01 00:11:00 +01:00
$objects = $wpdb -> get_results ( " SELECT ID, post_type FROM $wpdb->posts WHERE post_status = 'object' " );
foreach ( $objects as $object ) {
$wpdb -> update (
2018-08-17 03:51:36 +02:00
$wpdb -> posts ,
array (
2017-12-01 00:11:00 +01:00
'post_status' => 'attachment' ,
'post_mime_type' => $object -> post_type ,
'post_type' => '' ,
),
array ( 'ID' => $object -> ID )
);
$meta = get_post_meta ( $object -> ID , 'imagedata' , true );
if ( ! empty ( $meta [ 'file' ] ) ) {
2006-12-05 23:37:19 +01:00
update_attached_file ( $object -> ID , $meta [ 'file' ] );
2017-12-01 00:11:00 +01:00
}
2005-11-15 23:55:24 +01:00
}
}
2005-06-12 22:49:13 +02:00
}
2008-10-02 03:03:26 +02:00
/**
* Execute changes made in WordPress 2.1 .
*
2015-12-16 18:59:27 +01:00
* @ ignore
2008-10-02 03:03:26 +02:00
* @ since 2.1 . 0
2015-05-29 04:06:31 +02:00
*
2019-08-04 03:12:56 +02:00
* @ global int $wp_current_db_version The old ( current ) database version .
* @ global wpdb $wpdb WordPress database abstraction object .
2008-10-02 03:03:26 +02:00
*/
2006-02-09 11:03:48 +01:00
function upgrade_210 () {
2019-08-04 03:12:56 +02:00
global $wp_current_db_version , $wpdb ;
2006-02-09 11:03:48 +01:00
2006-02-11 10:56:02 +01:00
if ( $wp_current_db_version < 3506 ) {
// Update status and type.
2017-12-01 00:11:00 +01:00
$posts = $wpdb -> get_results ( " SELECT ID, post_status FROM $wpdb->posts " );
if ( ! empty ( $posts ) ) {
foreach ( $posts as $post ) {
$status = $post -> post_status ;
$type = 'post' ;
2020-05-16 20:42:12 +02:00
if ( 'static' === $status ) {
2017-12-01 00:11:00 +01:00
$status = 'publish' ;
$type = 'page' ;
2020-05-16 20:42:12 +02:00
} elseif ( 'attachment' === $status ) {
2017-12-01 00:11:00 +01:00
$status = 'inherit' ;
$type = 'attachment' ;
}
2006-02-12 08:53:23 +01:00
2018-12-14 06:43:52 +01:00
$wpdb -> query ( $wpdb -> prepare ( " UPDATE $wpdb->posts SET post_status = %s, post_type = %s WHERE ID = %d " , $status , $type , $post -> ID ) );
2017-12-01 00:11:00 +01:00
}
2006-02-11 10:56:02 +01:00
}
}
2006-02-12 08:53:23 +01:00
2006-06-05 18:52:21 +02:00
if ( $wp_current_db_version < 3845 ) {
2006-02-12 08:53:23 +01:00
populate_roles_210 ();
2006-02-09 11:03:48 +01:00
}
2006-02-15 00:22:22 +01:00
if ( $wp_current_db_version < 3531 ) {
// Give future posts a post_status of future.
2017-12-01 00:11:00 +01:00
$now = gmdate ( 'Y-m-d H:i:59' );
$wpdb -> query ( " UPDATE $wpdb->posts SET post_status = 'future' WHERE post_status = 'publish' AND post_date_gmt > ' $now ' " );
2006-11-19 08:56:05 +01:00
2017-12-01 00:11:00 +01:00
$posts = $wpdb -> get_results ( " SELECT ID, post_date FROM $wpdb->posts WHERE post_status ='future' " );
if ( ! empty ( $posts ) ) {
foreach ( $posts as $post ) {
wp_schedule_single_event ( mysql2date ( 'U' , $post -> post_date , false ), 'publish_future_post' , array ( $post -> ID ) );
}
}
2006-02-15 00:22:22 +01:00
}
2006-02-09 11:03:48 +01:00
}
2008-10-02 03:03:26 +02:00
/**
* Execute changes made in WordPress 2.3 .
*
2015-12-16 18:59:27 +01:00
* @ ignore
2008-10-02 03:03:26 +02:00
* @ since 2.3 . 0
2015-05-29 04:06:31 +02:00
*
2019-08-04 03:12:56 +02:00
* @ global int $wp_current_db_version The old ( current ) database version .
* @ global wpdb $wpdb WordPress database abstraction object .
2008-10-02 03:03:26 +02:00
*/
2007-04-25 01:27:20 +02:00
function upgrade_230 () {
2007-05-25 00:40:24 +02:00
global $wp_current_db_version , $wpdb ;
2007-06-14 04:25:30 +02:00
2007-04-25 01:27:20 +02:00
if ( $wp_current_db_version < 5200 ) {
populate_roles_230 ();
}
2007-05-25 00:40:24 +02:00
// Convert categories to terms.
2017-12-01 00:11:00 +01:00
$tt_ids = array ();
$have_tags = false ;
$categories = $wpdb -> get_results ( " SELECT * FROM $wpdb->categories ORDER BY cat_ID " );
foreach ( $categories as $category ) {
$term_id = ( int ) $category -> cat_ID ;
$name = $category -> cat_name ;
2008-07-16 18:30:20 +02:00
$description = $category -> category_description ;
2017-12-01 00:11:00 +01:00
$slug = $category -> category_nicename ;
$parent = $category -> category_parent ;
$term_group = 0 ;
2007-05-26 19:47:20 +02:00
// Associate terms with the same slug in a term group and make slugs unique.
2019-07-01 14:52:01 +02:00
$exists = $wpdb -> get_results ( $wpdb -> prepare ( " SELECT term_id, term_group FROM $wpdb->terms WHERE slug = %s " , $slug ) );
if ( $exists ) {
2007-05-26 19:47:20 +02:00
$term_group = $exists [ 0 ] -> term_group ;
2017-12-01 00:11:00 +01:00
$id = $exists [ 0 ] -> term_id ;
$num = 2 ;
2007-08-21 02:11:46 +02:00
do {
$alt_slug = $slug . " - $num " ;
2023-09-09 11:28:26 +02:00
++ $num ;
2017-12-01 00:11:00 +01:00
$slug_check = $wpdb -> get_var ( $wpdb -> prepare ( " SELECT slug FROM $wpdb->terms WHERE slug = %s " , $alt_slug ) );
2007-08-21 02:11:46 +02:00
} while ( $slug_check );
$slug = $alt_slug ;
2007-05-26 19:47:20 +02:00
if ( empty ( $term_group ) ) {
2017-12-01 00:11:00 +01:00
$term_group = $wpdb -> get_var ( " SELECT MAX(term_group) FROM $wpdb->terms GROUP BY term_group " ) + 1 ;
$wpdb -> query ( $wpdb -> prepare ( " UPDATE $wpdb->terms SET term_group = %d WHERE term_id = %d " , $term_group , $id ) );
2007-05-26 19:47:20 +02:00
}
}
2017-12-01 00:11:00 +01:00
$wpdb -> query (
$wpdb -> prepare (
" INSERT INTO $wpdb->terms (term_id, name, slug, term_group) VALUES
2018-08-17 03:51:36 +02:00
( % d , % s , % s , % d ) " ,
$term_id ,
$name ,
$slug ,
$term_group
2017-12-01 00:11:00 +01:00
)
);
2007-05-25 00:40:24 +02:00
2007-06-03 20:57:14 +02:00
$count = 0 ;
2017-12-01 00:11:00 +01:00
if ( ! empty ( $category -> category_count ) ) {
$count = ( int ) $category -> category_count ;
2007-05-25 00:40:24 +02:00
$taxonomy = 'category' ;
2017-12-01 00:11:00 +01:00
$wpdb -> query ( $wpdb -> prepare ( " INSERT INTO $wpdb->term_taxonomy (term_id, taxonomy, description, parent, count) VALUES ( %d, %s, %s, %d, %d) " , $term_id , $taxonomy , $description , $parent , $count ) );
$tt_ids [ $term_id ][ $taxonomy ] = ( int ) $wpdb -> insert_id ;
2007-06-03 20:57:14 +02:00
}
2017-12-01 00:11:00 +01:00
if ( ! empty ( $category -> link_count ) ) {
$count = ( int ) $category -> link_count ;
2007-05-25 00:40:24 +02:00
$taxonomy = 'link_category' ;
2017-12-01 00:11:00 +01:00
$wpdb -> query ( $wpdb -> prepare ( " INSERT INTO $wpdb->term_taxonomy (term_id, taxonomy, description, parent, count) VALUES ( %d, %s, %s, %d, %d) " , $term_id , $taxonomy , $description , $parent , $count ) );
$tt_ids [ $term_id ][ $taxonomy ] = ( int ) $wpdb -> insert_id ;
2007-06-03 20:57:14 +02:00
}
2017-12-01 00:11:00 +01:00
if ( ! empty ( $category -> tag_count ) ) {
2007-10-17 23:09:54 +02:00
$have_tags = true ;
2017-12-01 00:11:00 +01:00
$count = ( int ) $category -> tag_count ;
$taxonomy = 'post_tag' ;
$wpdb -> insert ( $wpdb -> term_taxonomy , compact ( 'term_id' , 'taxonomy' , 'description' , 'parent' , 'count' ) );
$tt_ids [ $term_id ][ $taxonomy ] = ( int ) $wpdb -> insert_id ;
2007-06-03 20:57:14 +02:00
}
2007-06-14 04:25:30 +02:00
2017-12-01 00:11:00 +01:00
if ( empty ( $count ) ) {
$count = 0 ;
2007-05-25 00:40:24 +02:00
$taxonomy = 'category' ;
2017-12-01 00:11:00 +01:00
$wpdb -> insert ( $wpdb -> term_taxonomy , compact ( 'term_id' , 'taxonomy' , 'description' , 'parent' , 'count' ) );
$tt_ids [ $term_id ][ $taxonomy ] = ( int ) $wpdb -> insert_id ;
2007-05-25 00:40:24 +02:00
}
}
2007-10-17 23:09:54 +02:00
$select = 'post_id, category_id' ;
2017-12-01 00:11:00 +01:00
if ( $have_tags ) {
2007-10-17 23:09:54 +02:00
$select .= ', rel_type' ;
2017-12-01 00:11:00 +01:00
}
2007-10-17 23:09:54 +02:00
2017-12-01 00:11:00 +01:00
$posts = $wpdb -> get_results ( " SELECT $select FROM $wpdb->post2cat GROUP BY post_id, category_id " );
2007-05-25 00:40:24 +02:00
foreach ( $posts as $post ) {
2017-12-01 00:11:00 +01:00
$post_id = ( int ) $post -> post_id ;
$term_id = ( int ) $post -> category_id ;
2007-05-25 00:40:24 +02:00
$taxonomy = 'category' ;
2020-05-16 20:42:12 +02:00
if ( ! empty ( $post -> rel_type ) && 'tag' === $post -> rel_type ) {
2007-05-25 00:40:24 +02:00
$taxonomy = 'tag' ;
2017-12-01 00:11:00 +01:00
}
$tt_id = $tt_ids [ $term_id ][ $taxonomy ];
if ( empty ( $tt_id ) ) {
2007-05-25 00:40:24 +02:00
continue ;
2017-12-01 00:11:00 +01:00
}
2007-05-25 00:40:24 +02:00
2017-12-01 00:11:00 +01:00
$wpdb -> insert (
2018-08-17 03:51:36 +02:00
$wpdb -> term_relationships ,
array (
2017-12-01 00:11:00 +01:00
'object_id' => $post_id ,
'term_taxonomy_id' => $tt_id ,
)
);
2007-05-25 00:40:24 +02:00
}
2011-12-14 00:45:31 +01:00
// < 3570 we used linkcategories. >= 3570 we used categories and link2cat.
2007-07-21 22:53:19 +02:00
if ( $wp_current_db_version < 3570 ) {
2014-07-17 11:14:16 +02:00
/*
* Create link_category terms for link categories . Create a map of link
2020-01-29 01:45:18 +01:00
* category IDs to link_category terms .
2014-07-17 11:14:16 +02:00
*/
2017-12-01 00:11:00 +01:00
$link_cat_id_map = array ();
2007-08-25 18:57:56 +02:00
$default_link_cat = 0 ;
2017-12-01 00:11:00 +01:00
$tt_ids = array ();
$link_cats = $wpdb -> get_results ( 'SELECT cat_id, cat_name FROM ' . $wpdb -> prefix . 'linkcategories' );
foreach ( $link_cats as $category ) {
$cat_id = ( int ) $category -> cat_id ;
$term_id = 0 ;
$name = wp_slash ( $category -> cat_name );
$slug = sanitize_title ( $name );
2007-07-21 22:53:19 +02:00
$term_group = 0 ;
2007-09-04 01:19:20 +02:00
2007-07-21 22:53:19 +02:00
// Associate terms with the same slug in a term group and make slugs unique.
2019-07-01 14:52:01 +02:00
$exists = $wpdb -> get_results ( $wpdb -> prepare ( " SELECT term_id, term_group FROM $wpdb->terms WHERE slug = %s " , $slug ) );
if ( $exists ) {
2007-07-21 22:53:19 +02:00
$term_group = $exists [ 0 ] -> term_group ;
2017-12-01 00:11:00 +01:00
$term_id = $exists [ 0 ] -> term_id ;
2007-07-21 22:53:19 +02:00
}
2017-12-01 00:11:00 +01:00
if ( empty ( $term_id ) ) {
$wpdb -> insert ( $wpdb -> terms , compact ( 'name' , 'slug' , 'term_group' ) );
2007-09-04 01:32:58 +02:00
$term_id = ( int ) $wpdb -> insert_id ;
2007-07-21 22:53:19 +02:00
}
2017-12-01 00:11:00 +01:00
$link_cat_id_map [ $cat_id ] = $term_id ;
$default_link_cat = $term_id ;
2007-07-21 22:53:19 +02:00
2017-12-01 00:11:00 +01:00
$wpdb -> insert (
2018-08-17 03:51:36 +02:00
$wpdb -> term_taxonomy ,
array (
2017-12-01 00:11:00 +01:00
'term_id' => $term_id ,
'taxonomy' => 'link_category' ,
'description' => '' ,
'parent' => 0 ,
'count' => 0 ,
)
);
$tt_ids [ $term_id ] = ( int ) $wpdb -> insert_id ;
2007-07-21 22:53:19 +02:00
}
2007-05-25 00:40:24 +02:00
2020-01-29 01:45:18 +01:00
// Associate links to categories.
2017-12-01 00:11:00 +01:00
$links = $wpdb -> get_results ( " SELECT link_id, link_category FROM $wpdb->links " );
if ( ! empty ( $links ) ) {
foreach ( $links as $link ) {
if ( 0 == $link -> link_category ) {
continue ;
}
if ( ! isset ( $link_cat_id_map [ $link -> link_category ] ) ) {
continue ;
}
$term_id = $link_cat_id_map [ $link -> link_category ];
$tt_id = $tt_ids [ $term_id ];
if ( empty ( $tt_id ) ) {
continue ;
}
2007-07-21 22:53:19 +02:00
2017-12-01 00:11:00 +01:00
$wpdb -> insert (
2018-08-17 03:51:36 +02:00
$wpdb -> term_relationships ,
array (
2017-12-01 00:11:00 +01:00
'object_id' => $link -> link_id ,
'term_taxonomy_id' => $tt_id ,
)
);
}
2007-07-21 22:53:19 +02:00
}
// Set default to the last category we grabbed during the upgrade loop.
2017-12-01 00:11:00 +01:00
update_option ( 'default_link_category' , $default_link_cat );
2007-07-21 22:53:19 +02:00
} else {
2017-12-01 00:11:00 +01:00
$links = $wpdb -> get_results ( " SELECT link_id, category_id FROM $wpdb->link2cat GROUP BY link_id, category_id " );
2007-07-21 22:53:19 +02:00
foreach ( $links as $link ) {
2017-12-01 00:11:00 +01:00
$link_id = ( int ) $link -> link_id ;
$term_id = ( int ) $link -> category_id ;
2007-07-21 22:53:19 +02:00
$taxonomy = 'link_category' ;
2017-12-01 00:11:00 +01:00
$tt_id = $tt_ids [ $term_id ][ $taxonomy ];
if ( empty ( $tt_id ) ) {
2007-07-21 22:53:19 +02:00
continue ;
2017-12-01 00:11:00 +01:00
}
$wpdb -> insert (
2018-08-17 03:51:36 +02:00
$wpdb -> term_relationships ,
array (
2017-12-01 00:11:00 +01:00
'object_id' => $link_id ,
'term_taxonomy_id' => $tt_id ,
)
);
2007-07-21 22:53:19 +02:00
}
}
if ( $wp_current_db_version < 4772 ) {
2020-01-29 01:45:18 +01:00
// Obsolete linkcategories table.
2017-12-01 00:11:00 +01:00
$wpdb -> query ( 'DROP TABLE IF EXISTS ' . $wpdb -> prefix . 'linkcategories' );
2007-05-25 00:40:24 +02:00
}
2007-07-21 22:53:19 +02:00
2020-01-29 01:45:18 +01:00
// Recalculate all counts.
2017-12-01 00:11:00 +01:00
$terms = $wpdb -> get_results ( " SELECT term_taxonomy_id, taxonomy FROM $wpdb->term_taxonomy " );
2007-07-21 23:52:35 +02:00
foreach ( ( array ) $terms as $term ) {
2020-05-16 20:42:12 +02:00
if ( 'post_tag' === $term -> taxonomy || 'category' === $term -> taxonomy ) {
2017-12-01 00:11:00 +01:00
$count = $wpdb -> get_var ( $wpdb -> prepare ( " SELECT COUNT(*) FROM $wpdb->term_relationships , $wpdb->posts WHERE $wpdb->posts .ID = $wpdb->term_relationships .object_id AND post_status = 'publish' AND post_type = 'post' AND term_taxonomy_id = %d " , $term -> term_taxonomy_id ) );
} else {
$count = $wpdb -> get_var ( $wpdb -> prepare ( " SELECT COUNT(*) FROM $wpdb->term_relationships WHERE term_taxonomy_id = %d " , $term -> term_taxonomy_id ) );
}
$wpdb -> update ( $wpdb -> term_taxonomy , array ( 'count' => $count ), array ( 'term_taxonomy_id' => $term -> term_taxonomy_id ) );
2007-07-21 23:52:35 +02:00
}
2007-04-25 01:27:20 +02:00
}
2008-10-02 03:03:26 +02:00
/**
* Remove old options from the database .
*
2015-12-16 18:59:27 +01:00
* @ ignore
2008-10-02 03:03:26 +02:00
* @ since 2.3 . 0
2015-05-29 04:06:31 +02:00
*
2015-10-15 01:44:25 +02:00
* @ global wpdb $wpdb WordPress database abstraction object .
2008-10-02 03:03:26 +02:00
*/
2007-09-05 21:20:53 +02:00
function upgrade_230_options_table () {
global $wpdb ;
$old_options_fields = array ( 'option_can_override' , 'option_type' , 'option_width' , 'option_height' , 'option_description' , 'option_admin_level' );
$wpdb -> hide_errors ();
2017-12-01 00:11:00 +01:00
foreach ( $old_options_fields as $old ) {
$wpdb -> query ( " ALTER TABLE $wpdb->options DROP $old " );
}
2007-09-05 21:20:53 +02:00
$wpdb -> show_errors ();
}
2008-10-02 03:03:26 +02:00
/**
* Remove old categories , link2cat , and post2cat database tables .
*
2015-12-16 18:59:27 +01:00
* @ ignore
2008-10-02 03:03:26 +02:00
* @ since 2.3 . 0
2015-05-29 04:06:31 +02:00
*
2015-10-15 01:44:25 +02:00
* @ global wpdb $wpdb WordPress database abstraction object .
2008-10-02 03:03:26 +02:00
*/
2007-09-18 18:37:21 +02:00
function upgrade_230_old_tables () {
global $wpdb ;
2017-12-01 00:11:00 +01:00
$wpdb -> query ( 'DROP TABLE IF EXISTS ' . $wpdb -> prefix . 'categories' );
$wpdb -> query ( 'DROP TABLE IF EXISTS ' . $wpdb -> prefix . 'link2cat' );
$wpdb -> query ( 'DROP TABLE IF EXISTS ' . $wpdb -> prefix . 'post2cat' );
2007-09-18 18:37:21 +02:00
}
2008-10-02 03:03:26 +02:00
/**
* Upgrade old slugs made in version 2.2 .
*
2015-12-16 18:59:27 +01:00
* @ ignore
2008-10-02 03:03:26 +02:00
* @ since 2.2 . 0
2015-05-29 04:06:31 +02:00
*
2015-10-15 01:44:25 +02:00
* @ global wpdb $wpdb WordPress database abstraction object .
2008-10-02 03:03:26 +02:00
*/
2006-11-30 09:48:56 +01:00
function upgrade_old_slugs () {
2014-07-17 11:14:16 +02:00
// Upgrade people who were using the Redirect Old Slugs plugin.
2006-11-30 09:48:56 +01:00
global $wpdb ;
2017-12-01 00:11:00 +01:00
$wpdb -> query ( " UPDATE $wpdb->postmeta SET meta_key = '_wp_old_slug' WHERE meta_key = 'old_slug' " );
2006-11-30 09:48:56 +01:00
}
2008-10-02 03:03:26 +02:00
/**
* Execute changes made in WordPress 2.5 . 0.
*
2015-12-16 18:59:27 +01:00
* @ ignore
2008-10-02 03:03:26 +02:00
* @ since 2.5 . 0
2015-05-29 04:06:31 +02:00
*
2019-08-04 03:12:56 +02:00
* @ global int $wp_current_db_version The old ( current ) database version .
2008-10-02 03:03:26 +02:00
*/
2008-02-02 08:57:51 +01:00
function upgrade_250 () {
global $wp_current_db_version ;
if ( $wp_current_db_version < 6689 ) {
populate_roles_250 ();
}
}
2008-10-02 03:03:26 +02:00
/**
* Execute changes made in WordPress 2.5 . 2.
*
2015-12-16 18:59:27 +01:00
* @ ignore
2008-10-02 03:03:26 +02:00
* @ since 2.5 . 2
2015-05-29 04:06:31 +02:00
*
2015-10-15 01:44:25 +02:00
* @ global wpdb $wpdb WordPress database abstraction object .
2008-10-02 03:03:26 +02:00
*/
2008-05-15 22:07:54 +02:00
function upgrade_252 () {
global $wpdb ;
2017-12-01 00:11:00 +01:00
$wpdb -> query ( " UPDATE $wpdb->users SET user_activation_key = '' " );
2008-05-15 22:07:54 +02:00
}
2008-10-02 03:03:26 +02:00
/**
* Execute changes made in WordPress 2.6 .
*
2015-12-16 18:59:27 +01:00
* @ ignore
2008-10-02 03:03:26 +02:00
* @ since 2.6 . 0
2015-05-29 04:06:31 +02:00
*
2019-08-04 03:12:56 +02:00
* @ global int $wp_current_db_version The old ( current ) database version .
2008-10-02 03:03:26 +02:00
*/
2008-06-06 21:21:35 +02:00
function upgrade_260 () {
2008-09-17 23:47:27 +02:00
global $wp_current_db_version ;
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 8000 ) {
2008-06-27 00:39:57 +02:00
populate_roles_260 ();
2017-12-01 00:11:00 +01:00
}
2008-06-06 21:21:35 +02:00
}
2008-10-02 03:03:26 +02:00
/**
* Execute changes made in WordPress 2.7 .
*
2015-12-16 18:59:27 +01:00
* @ ignore
2008-10-02 03:03:26 +02:00
* @ since 2.7 . 0
2015-05-29 04:06:31 +02:00
*
2019-08-04 03:12:56 +02:00
* @ global int $wp_current_db_version The old ( current ) database version .
* @ global wpdb $wpdb WordPress database abstraction object .
2008-10-02 03:03:26 +02:00
*/
2008-08-04 23:01:09 +02:00
function upgrade_270 () {
2019-08-04 03:12:56 +02:00
global $wp_current_db_version , $wpdb ;
2008-09-17 23:47:27 +02:00
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 8980 ) {
2008-08-04 23:01:09 +02:00
populate_roles_270 ();
2017-12-01 00:11:00 +01:00
}
2008-09-17 23:47:27 +02:00
2020-01-29 01:45:18 +01:00
// Update post_date for unpublished posts with empty timestamp.
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 8921 ) {
2008-09-17 23:47:27 +02:00
$wpdb -> query ( " UPDATE $wpdb->posts SET post_date = post_modified WHERE post_date = '0000-00-00 00:00:00' " );
2017-12-01 00:11:00 +01:00
}
2008-08-04 23:01:09 +02:00
}
2009-02-12 00:10:11 +01:00
/**
* Execute changes made in WordPress 2.8 .
*
2015-12-16 18:59:27 +01:00
* @ ignore
2009-02-12 00:10:11 +01:00
* @ since 2.8 . 0
2015-05-29 04:06:31 +02:00
*
2019-08-04 03:12:56 +02:00
* @ global int $wp_current_db_version The old ( current ) database version .
* @ global wpdb $wpdb WordPress database abstraction object .
2009-02-12 00:10:11 +01:00
*/
function upgrade_280 () {
2010-03-08 17:31:12 +01:00
global $wp_current_db_version , $wpdb ;
2009-02-12 00:10:11 +01:00
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 10360 ) {
2009-02-12 00:10:11 +01:00
populate_roles_280 ();
2017-12-01 00:11:00 +01:00
}
2010-03-08 17:31:12 +01:00
if ( is_multisite () ) {
$start = 0 ;
2017-12-01 00:11:00 +01:00
while ( $rows = $wpdb -> get_results ( " SELECT option_name, option_value FROM $wpdb->options ORDER BY option_id LIMIT $start , 20 " ) ) {
2015-08-25 22:28:22 +02:00
foreach ( $rows as $row ) {
2022-01-06 18:07:03 +01:00
$value = maybe_unserialize ( $row -> option_value );
if ( $value === $row -> option_value ) {
2010-03-08 17:31:12 +01:00
$value = stripslashes ( $value );
2017-12-01 00:11:00 +01:00
}
2010-03-08 17:31:12 +01:00
if ( $value !== $row -> option_value ) {
update_option ( $row -> option_name , $value );
}
}
$start += 20 ;
}
2017-10-03 21:05:46 +02:00
clean_blog_cache ( get_current_blog_id () );
2010-03-08 17:31:12 +01:00
}
2009-02-12 00:10:11 +01:00
}
2009-09-22 08:00:46 +02:00
/**
* Execute changes made in WordPress 2.9 .
*
2015-12-16 18:59:27 +01:00
* @ ignore
2009-09-22 08:00:46 +02:00
* @ since 2.9 . 0
2015-05-29 04:06:31 +02:00
*
2019-08-04 03:12:56 +02:00
* @ global int $wp_current_db_version The old ( current ) database version .
2009-09-22 08:00:46 +02:00
*/
function upgrade_290 () {
global $wp_current_db_version ;
if ( $wp_current_db_version < 11958 ) {
2023-07-09 22:07:22 +02:00
/*
* Previously , setting depth to 1 would redundantly disable threading ,
* but now 2 is the minimum depth to avoid confusion .
*/
2009-09-22 08:00:46 +02:00
if ( get_option ( 'thread_comments_depth' ) == '1' ) {
update_option ( 'thread_comments_depth' , 2 );
update_option ( 'thread_comments' , 0 );
}
}
}
2010-01-18 23:21:36 +01:00
/**
* Execute changes made in WordPress 3.0 .
*
2015-12-16 18:59:27 +01:00
* @ ignore
2010-02-02 22:53:26 +01:00
* @ since 3.0 . 0
2015-05-29 04:06:31 +02:00
*
2019-08-04 03:12:56 +02:00
* @ global int $wp_current_db_version The old ( current ) database version .
* @ global wpdb $wpdb WordPress database abstraction object .
2010-01-18 23:21:36 +01:00
*/
function upgrade_300 () {
2010-03-22 20:56:16 +01:00
global $wp_current_db_version , $wpdb ;
2010-02-19 18:56:40 +01:00
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 15093 ) {
2010-02-19 18:56:40 +01:00
populate_roles_300 ();
2017-12-01 00:11:00 +01:00
}
2010-05-27 11:49:38 +02:00
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 14139 && is_multisite () && is_main_site () && ! defined ( 'MULTISITE' ) && get_site_option ( 'siteurl' ) === false ) {
2015-10-07 19:11:25 +02:00
add_site_option ( 'siteurl' , '' );
2017-12-01 00:11:00 +01:00
}
2010-03-22 20:56:16 +01:00
2010-06-10 16:41:51 +02:00
// 3.0 screen options key name changes.
2015-07-03 06:34:24 +02:00
if ( wp_should_upgrade_global_tables () ) {
2017-12-01 00:11:00 +01:00
$sql = " DELETE FROM $wpdb->usermeta
2014-06-10 02:44:15 +02:00
WHERE meta_key LIKE % s
OR meta_key LIKE % s
OR meta_key LIKE % s
OR meta_key LIKE % s
OR meta_key LIKE % s
OR meta_key LIKE % s
OR meta_key = 'manageedittagscolumnshidden'
OR meta_key = 'managecategoriescolumnshidden'
OR meta_key = 'manageedit-tagscolumnshidden'
OR meta_key = 'manageeditcolumnshidden'
OR meta_key = 'categories_per_page'
OR meta_key = 'edit_tags_per_page' " ;
$prefix = $wpdb -> esc_like ( $wpdb -> base_prefix );
2017-12-01 00:11:00 +01:00
$wpdb -> query (
$wpdb -> prepare (
$sql ,
$prefix . '%' . $wpdb -> esc_like ( 'meta-box-hidden' ) . '%' ,
$prefix . '%' . $wpdb -> esc_like ( 'closedpostboxes' ) . '%' ,
$prefix . '%' . $wpdb -> esc_like ( 'manage-' ) . '%' . $wpdb -> esc_like ( '-columns-hidden' ) . '%' ,
$prefix . '%' . $wpdb -> esc_like ( 'meta-box-order' ) . '%' ,
$prefix . '%' . $wpdb -> esc_like ( 'metaboxorder' ) . '%' ,
$prefix . '%' . $wpdb -> esc_like ( 'screen_layout' ) . '%'
)
);
2010-05-13 17:59:17 +02:00
}
2010-01-18 23:21:36 +01:00
}
2008-08-04 23:01:09 +02:00
2011-09-29 23:41:22 +02:00
/**
2011-10-25 07:50:39 +02:00
* Execute changes made in WordPress 3.3 .
2011-09-29 23:41:22 +02:00
*
2015-12-16 18:59:27 +01:00
* @ ignore
2011-09-29 23:41:22 +02:00
* @ since 3.3 . 0
2015-05-29 04:06:31 +02:00
*
2019-08-04 03:12:56 +02:00
* @ global int $wp_current_db_version The old ( current ) database version .
* @ global wpdb $wpdb WordPress database abstraction object .
2015-05-29 04:06:31 +02:00
* @ global array $wp_registered_widgets
* @ global array $sidebars_widgets
2011-09-29 23:41:22 +02:00
*/
2011-10-25 07:50:39 +02:00
function upgrade_330 () {
global $wp_current_db_version , $wpdb , $wp_registered_widgets , $sidebars_widgets ;
2015-07-03 06:34:24 +02:00
if ( $wp_current_db_version < 19061 && wp_should_upgrade_global_tables () ) {
2011-10-25 07:50:39 +02:00
$wpdb -> query ( " DELETE FROM $wpdb->usermeta WHERE meta_key IN ('show_admin_bar_admin', 'plugins_last_view') " );
}
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version >= 11548 ) {
2011-10-25 07:50:39 +02:00
return ;
2017-12-01 00:11:00 +01:00
}
2011-09-29 23:41:22 +02:00
2017-12-01 00:11:00 +01:00
$sidebars_widgets = get_option ( 'sidebars_widgets' , array () );
2011-09-29 23:41:22 +02:00
$_sidebars_widgets = array ();
2017-12-01 00:11:00 +01:00
if ( isset ( $sidebars_widgets [ 'wp_inactive_widgets' ] ) || empty ( $sidebars_widgets ) ) {
2011-09-29 23:41:22 +02:00
$sidebars_widgets [ 'array_version' ] = 3 ;
2017-12-01 00:11:00 +01:00
} elseif ( ! isset ( $sidebars_widgets [ 'array_version' ] ) ) {
2011-09-29 23:41:22 +02:00
$sidebars_widgets [ 'array_version' ] = 1 ;
2017-12-01 00:11:00 +01:00
}
2011-09-29 23:41:22 +02:00
switch ( $sidebars_widgets [ 'array_version' ] ) {
2017-12-01 00:11:00 +01:00
case 1 :
foreach ( ( array ) $sidebars_widgets as $index => $sidebar ) {
if ( is_array ( $sidebar ) ) {
foreach ( ( array ) $sidebar as $i => $name ) {
$id = strtolower ( $name );
if ( isset ( $wp_registered_widgets [ $id ] ) ) {
$_sidebars_widgets [ $index ][ $i ] = $id ;
continue ;
}
Coding Standards: Use strict comparison where `strtolower()` is involved.
Follow-up to [649], [7736], [18821], [19444], [20886], [20893], [23303], [55642], [55652], [55653], [55654].
Props aristath, poena, afercia, SergeyBiryukov.
See #57839.
Built from https://develop.svn.wordpress.org/trunk@55677
git-svn-id: http://core.svn.wordpress.org/trunk@55189 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-04-22 17:19:22 +02:00
2017-12-01 00:11:00 +01:00
$id = sanitize_title ( $name );
if ( isset ( $wp_registered_widgets [ $id ] ) ) {
$_sidebars_widgets [ $index ][ $i ] = $id ;
continue ;
}
2011-09-29 23:41:22 +02:00
2017-12-01 00:11:00 +01:00
$found = false ;
foreach ( $wp_registered_widgets as $widget_id => $widget ) {
Coding Standards: Use strict comparison where `strtolower()` is involved.
Follow-up to [649], [7736], [18821], [19444], [20886], [20893], [23303], [55642], [55652], [55653], [55654].
Props aristath, poena, afercia, SergeyBiryukov.
See #57839.
Built from https://develop.svn.wordpress.org/trunk@55677
git-svn-id: http://core.svn.wordpress.org/trunk@55189 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-04-22 17:19:22 +02:00
if ( strtolower ( $widget [ 'name' ] ) === strtolower ( $name ) ) {
2017-12-01 00:11:00 +01:00
$_sidebars_widgets [ $index ][ $i ] = $widget [ 'id' ];
Coding Standards: Use strict comparison where `strtolower()` is involved.
Follow-up to [649], [7736], [18821], [19444], [20886], [20893], [23303], [55642], [55652], [55653], [55654].
Props aristath, poena, afercia, SergeyBiryukov.
See #57839.
Built from https://develop.svn.wordpress.org/trunk@55677
git-svn-id: http://core.svn.wordpress.org/trunk@55189 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-04-22 17:19:22 +02:00
$found = true ;
2017-12-01 00:11:00 +01:00
break ;
Coding Standards: Use strict comparison where `strtolower()` is involved.
Follow-up to [649], [7736], [18821], [19444], [20886], [20893], [23303], [55642], [55652], [55653], [55654].
Props aristath, poena, afercia, SergeyBiryukov.
See #57839.
Built from https://develop.svn.wordpress.org/trunk@55677
git-svn-id: http://core.svn.wordpress.org/trunk@55189 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-04-22 17:19:22 +02:00
} elseif ( sanitize_title ( $widget [ 'name' ] ) === sanitize_title ( $name ) ) {
2017-12-01 00:11:00 +01:00
$_sidebars_widgets [ $index ][ $i ] = $widget [ 'id' ];
Coding Standards: Use strict comparison where `strtolower()` is involved.
Follow-up to [649], [7736], [18821], [19444], [20886], [20893], [23303], [55642], [55652], [55653], [55654].
Props aristath, poena, afercia, SergeyBiryukov.
See #57839.
Built from https://develop.svn.wordpress.org/trunk@55677
git-svn-id: http://core.svn.wordpress.org/trunk@55189 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-04-22 17:19:22 +02:00
$found = true ;
2017-12-01 00:11:00 +01:00
break ;
}
}
2011-09-29 23:41:22 +02:00
2017-12-01 00:11:00 +01:00
if ( $found ) {
continue ;
}
2011-09-29 23:41:22 +02:00
2017-12-01 00:11:00 +01:00
unset ( $_sidebars_widgets [ $index ][ $i ] );
}
}
2011-09-29 23:41:22 +02:00
}
$_sidebars_widgets [ 'array_version' ] = 2 ;
2017-12-01 00:11:00 +01:00
$sidebars_widgets = $_sidebars_widgets ;
unset ( $_sidebars_widgets );
2011-09-29 23:41:22 +02:00
2020-01-29 01:45:18 +01:00
// Intentional fall-through to upgrade to the next version.
2017-12-01 00:11:00 +01:00
case 2 :
2021-09-09 23:40:57 +02:00
$sidebars_widgets = retrieve_widgets ();
2011-09-29 23:41:22 +02:00
$sidebars_widgets [ 'array_version' ] = 3 ;
update_option ( 'sidebars_widgets' , $sidebars_widgets );
}
}
2012-01-31 18:45:22 +01:00
/**
* Execute changes made in WordPress 3.4 .
*
2015-12-16 18:59:27 +01:00
* @ ignore
2012-01-31 18:45:22 +01:00
* @ since 3.4 . 0
2015-05-29 04:06:31 +02:00
*
2019-08-04 03:12:56 +02:00
* @ global int $wp_current_db_version The old ( current ) database version .
* @ global wpdb $wpdb WordPress database abstraction object .
2012-01-31 18:45:22 +01:00
*/
function upgrade_340 () {
global $wp_current_db_version , $wpdb ;
2012-01-31 19:26:07 +01:00
if ( $wp_current_db_version < 19798 ) {
$wpdb -> hide_errors ();
$wpdb -> query ( " ALTER TABLE $wpdb->options DROP COLUMN blog_id " );
$wpdb -> show_errors ();
}
if ( $wp_current_db_version < 19799 ) {
$wpdb -> hide_errors ();
2017-12-01 00:11:00 +01:00
$wpdb -> query ( " ALTER TABLE $wpdb->comments DROP INDEX comment_approved " );
2012-01-31 19:26:07 +01:00
$wpdb -> show_errors ();
}
2012-02-28 21:13:21 +01:00
2015-07-03 06:34:24 +02:00
if ( $wp_current_db_version < 20022 && wp_should_upgrade_global_tables () ) {
2012-02-28 21:13:21 +01:00
$wpdb -> query ( " DELETE FROM $wpdb->usermeta WHERE meta_key = 'themes_last_view' " );
}
2012-03-02 21:13:35 +01:00
if ( $wp_current_db_version < 20080 ) {
2020-05-16 20:42:12 +02:00
if ( 'yes' === $wpdb -> get_var ( " SELECT autoload FROM $wpdb->options WHERE option_name = 'uninstall_plugins' " ) ) {
2012-03-02 21:13:35 +01:00
$uninstall_plugins = get_option ( 'uninstall_plugins' );
delete_option ( 'uninstall_plugins' );
add_option ( 'uninstall_plugins' , $uninstall_plugins , null , 'no' );
}
}
2012-01-31 19:26:07 +01:00
}
2012-08-13 18:18:42 +02:00
/**
* Execute changes made in WordPress 3.5 .
*
2015-12-16 18:59:27 +01:00
* @ ignore
2012-08-13 18:18:42 +02:00
* @ since 3.5 . 0
2015-05-29 04:06:31 +02:00
*
2019-08-04 03:12:56 +02:00
* @ global int $wp_current_db_version The old ( current ) database version .
* @ global wpdb $wpdb WordPress database abstraction object .
2012-08-13 18:18:42 +02:00
*/
function upgrade_350 () {
global $wp_current_db_version , $wpdb ;
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 22006 && $wpdb -> get_var ( " SELECT link_id FROM $wpdb->links LIMIT 1 " ) ) {
2020-01-29 01:45:18 +01:00
update_option ( 'link_manager_enabled' , 1 ); // Previously set to 0 by populate_options().
2017-12-01 00:11:00 +01:00
}
2012-09-11 04:08:29 +02:00
2015-07-03 06:34:24 +02:00
if ( $wp_current_db_version < 21811 && wp_should_upgrade_global_tables () ) {
2012-09-11 04:08:29 +02:00
$meta_keys = array ();
foreach ( array_merge ( get_post_types (), get_taxonomies () ) as $name ) {
Code Modernization: Replace usage of `strpos()` with `str_contains()`.
`str_contains()` was introduced in PHP 8.0 to perform a case-sensitive check indicating if the string to search in (haystack) contains the given substring (needle).
WordPress core includes a polyfill for `str_contains()` on PHP < 8.0 as of WordPress 5.9.
This commit replaces `false !== strpos( ... )` with `str_contains()` in core files, making the code more readable and consistent, as well as better aligned with modern development practices.
Follow-up to [52039], [52040], [52326], [55703], [55710], [55987].
Props Soean, spacedmonkey, costdev, dingo_d, azaozz, mikeschroder, flixos90, peterwilsoncc, SergeyBiryukov.
Fixes #58206.
Built from https://develop.svn.wordpress.org/trunk@55988
git-svn-id: http://core.svn.wordpress.org/trunk@55500 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-06-22 16:36:26 +02:00
if ( str_contains ( $name , '-' ) ) {
2017-12-01 00:11:00 +01:00
$meta_keys [] = 'edit_' . str_replace ( '-' , '_' , $name ) . '_per_page' ;
}
2012-09-11 04:08:29 +02:00
}
if ( $meta_keys ) {
$meta_keys = implode ( " ', ' " , $meta_keys );
$wpdb -> query ( " DELETE FROM $wpdb->usermeta WHERE meta_key IN (' $meta_keys ') " );
}
}
2019-07-01 14:52:01 +02:00
if ( $wp_current_db_version < 22422 ) {
$term = get_term_by ( 'slug' , 'post-format-standard' , 'post_format' );
if ( $term ) {
wp_delete_term ( $term -> term_id , 'post_format' );
}
2017-12-01 00:11:00 +01:00
}
2012-08-13 18:18:42 +02:00
}
2013-10-17 06:02:09 +02:00
/**
* Execute changes made in WordPress 3.7 .
*
2015-12-16 18:59:27 +01:00
* @ ignore
2013-10-17 06:02:09 +02:00
* @ since 3.7 . 0
2015-05-29 04:06:31 +02:00
*
2019-08-04 03:12:56 +02:00
* @ global int $wp_current_db_version The old ( current ) database version .
2013-10-17 06:02:09 +02:00
*/
function upgrade_370 () {
global $wp_current_db_version ;
2020-07-08 12:58:05 +02:00
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 25824 ) {
2013-10-17 06:02:09 +02:00
wp_clear_scheduled_hook ( 'wp_auto_updates_maybe_update' );
2017-12-01 00:11:00 +01:00
}
2013-10-17 06:02:09 +02:00
}
2013-11-14 05:04:10 +01:00
/**
* Execute changes made in WordPress 3.7 . 2.
*
2015-12-16 18:59:27 +01:00
* @ ignore
2013-11-14 05:04:10 +01:00
* @ since 3.7 . 2
2015-05-29 04:06:31 +02:00
*
2019-08-04 03:12:56 +02:00
* @ global int $wp_current_db_version The old ( current ) database version .
2013-11-14 05:04:10 +01:00
*/
function upgrade_372 () {
global $wp_current_db_version ;
2020-07-08 12:58:05 +02:00
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 26148 ) {
2013-11-14 05:04:10 +01:00
wp_clear_scheduled_hook ( 'wp_maybe_auto_update' );
2017-12-01 00:11:00 +01:00
}
2013-11-14 05:04:10 +01:00
}
2013-12-05 22:30:11 +01:00
/**
* Execute changes made in WordPress 3.8 . 0.
*
2015-12-16 18:59:27 +01:00
* @ ignore
2013-12-05 22:30:11 +01:00
* @ since 3.8 . 0
2015-05-29 04:06:31 +02:00
*
2019-08-04 03:12:56 +02:00
* @ global int $wp_current_db_version The old ( current ) database version .
2013-12-05 22:30:11 +01:00
*/
function upgrade_380 () {
global $wp_current_db_version ;
2020-07-08 12:58:05 +02:00
2013-12-05 22:30:11 +01:00
if ( $wp_current_db_version < 26691 ) {
deactivate_plugins ( array ( 'mp6/mp6.php' ), true );
}
}
2014-08-26 21:59:16 +02:00
/**
* Execute changes made in WordPress 4.0 . 0.
*
2015-12-16 18:59:27 +01:00
* @ ignore
2014-08-26 21:59:16 +02:00
* @ since 4.0 . 0
2015-05-29 04:06:31 +02:00
*
2019-08-04 03:12:56 +02:00
* @ global int $wp_current_db_version The old ( current ) database version .
2014-08-26 21:59:16 +02:00
*/
function upgrade_400 () {
global $wp_current_db_version ;
2020-07-08 12:58:05 +02:00
2014-08-26 21:59:16 +02:00
if ( $wp_current_db_version < 29630 ) {
if ( ! is_multisite () && false === get_option ( 'WPLANG' ) ) {
2020-04-05 05:02:11 +02:00
if ( defined ( 'WPLANG' ) && ( '' !== WPLANG ) && in_array ( WPLANG , get_available_languages (), true ) ) {
2014-08-26 21:59:16 +02:00
update_option ( 'WPLANG' , WPLANG );
} else {
update_option ( 'WPLANG' , '' );
}
}
}
}
2015-02-06 05:51:22 +01:00
/**
* Execute changes made in WordPress 4.2 . 0.
*
2015-12-16 18:59:27 +01:00
* @ ignore
2015-02-06 05:51:22 +01:00
* @ since 4.2 . 0
*/
2015-07-03 05:26:24 +02:00
function upgrade_420 () {}
2015-02-06 05:51:22 +01:00
2015-04-27 18:04:25 +02:00
/**
2015-07-13 21:56:24 +02:00
* Executes changes made in WordPress 4.3 . 0.
2015-04-27 18:04:25 +02:00
*
2015-12-16 18:59:27 +01:00
* @ ignore
2015-04-27 18:08:27 +02:00
* @ since 4.3 . 0
2015-05-29 04:06:31 +02:00
*
2019-08-04 03:12:56 +02:00
* @ global int $wp_current_db_version The old ( current ) database version .
2015-07-13 21:56:24 +02:00
* @ global wpdb $wpdb WordPress database abstraction object .
2015-04-27 18:04:25 +02:00
*/
2015-04-27 18:08:27 +02:00
function upgrade_430 () {
2015-04-27 18:04:25 +02:00
global $wp_current_db_version , $wpdb ;
2015-05-06 05:00:25 +02:00
if ( $wp_current_db_version < 32364 ) {
2015-07-01 09:35:24 +02:00
upgrade_430_fix_comments ();
}
2015-05-07 01:11:26 +02:00
2015-08-14 05:59:26 +02:00
// Shared terms are split in a separate process.
2015-07-01 09:35:24 +02:00
if ( $wp_current_db_version < 32814 ) {
2015-08-17 16:29:25 +02:00
update_option ( 'finished_splitting_shared_terms' , 0 );
2015-08-14 05:59:26 +02:00
wp_schedule_single_event ( time () + ( 1 * MINUTE_IN_SECONDS ), 'wp_split_shared_term_batch' );
2015-07-01 09:35:24 +02:00
}
2015-07-03 05:26:24 +02:00
if ( $wp_current_db_version < 33055 && 'utf8mb4' === $wpdb -> charset ) {
if ( is_multisite () ) {
$tables = $wpdb -> tables ( 'blog' );
} else {
$tables = $wpdb -> tables ( 'all' );
2015-07-03 07:44:24 +02:00
if ( ! wp_should_upgrade_global_tables () ) {
$global_tables = $wpdb -> tables ( 'global' );
2017-12-01 00:11:00 +01:00
$tables = array_diff_assoc ( $tables , $global_tables );
2015-07-03 07:44:24 +02:00
}
2015-07-03 05:26:24 +02:00
}
2015-08-17 23:39:25 +02:00
2015-07-03 05:26:24 +02:00
foreach ( $tables as $table ) {
maybe_convert_table_to_utf8mb4 ( $table );
}
}
2015-07-01 09:35:24 +02:00
}
2015-05-07 01:11:26 +02:00
2015-07-01 09:35:24 +02:00
/**
2015-07-13 21:56:24 +02:00
* Executes comments changes made in WordPress 4.3 . 0.
2015-07-01 09:35:24 +02:00
*
2015-12-16 18:59:27 +01:00
* @ ignore
2015-07-01 09:35:24 +02:00
* @ since 4.3 . 0
*
2019-12-17 17:45:03 +01:00
* @ global wpdb $wpdb WordPress database abstraction object .
2015-07-01 09:35:24 +02:00
*/
function upgrade_430_fix_comments () {
2019-12-17 17:45:03 +01:00
global $wpdb ;
2015-04-27 18:04:25 +02:00
2015-07-01 09:35:24 +02:00
$content_length = $wpdb -> get_col_length ( $wpdb -> comments , 'comment_content' );
2015-05-06 05:00:25 +02:00
2015-07-01 09:35:24 +02:00
if ( is_wp_error ( $content_length ) ) {
return ;
}
2015-05-06 05:00:25 +02:00
2015-07-01 09:35:24 +02:00
if ( false === $content_length ) {
$content_length = array (
'type' => 'byte' ,
'length' => 65535 ,
2015-04-27 18:04:25 +02:00
);
2015-07-01 09:35:24 +02:00
} elseif ( ! is_array ( $content_length ) ) {
2017-12-01 00:11:00 +01:00
$length = ( int ) $content_length > 0 ? ( int ) $content_length : 65535 ;
2015-07-01 09:35:24 +02:00
$content_length = array (
2017-12-01 00:11:00 +01:00
'type' => 'byte' ,
'length' => $length ,
2015-07-01 09:35:24 +02:00
);
}
2015-04-27 18:04:25 +02:00
2015-07-01 09:35:24 +02:00
if ( 'byte' !== $content_length [ 'type' ] || 0 === $content_length [ 'length' ] ) {
// Sites with malformed DB schemas are on their own.
return ;
2015-04-27 18:04:25 +02:00
}
2015-06-17 03:53:26 +02:00
2020-10-08 23:15:13 +02:00
$allowed_length = ( int ) $content_length [ 'length' ] - 10 ;
2015-07-01 09:35:24 +02:00
$comments = $wpdb -> get_results (
" SELECT `comment_ID` FROM ` { $wpdb -> comments } `
WHERE `comment_date_gmt` > '2015-04-26'
AND LENGTH ( `comment_content` ) >= { $allowed_length }
AND ( `comment_content` LIKE '%<%' OR `comment_content` LIKE '%>%' ) "
);
foreach ( $comments as $comment ) {
wp_delete_comment ( $comment -> comment_ID , true );
2015-06-17 03:53:26 +02:00
}
2015-04-27 18:04:25 +02:00
}
2015-08-19 13:31:26 +02:00
/**
* Executes changes made in WordPress 4.3 . 1.
*
2015-12-16 18:59:27 +01:00
* @ ignore
2015-08-19 13:31:26 +02:00
* @ since 4.3 . 1
*/
function upgrade_431 () {
2020-01-29 01:45:18 +01:00
// Fix incorrect cron entries for term splitting.
2015-08-19 13:31:26 +02:00
$cron_array = _get_cron_array ();
if ( isset ( $cron_array [ 'wp_batch_split_terms' ] ) ) {
2015-08-25 06:32:21 +02:00
unset ( $cron_array [ 'wp_batch_split_terms' ] );
_set_cron_array ( $cron_array );
2015-08-19 13:31:26 +02:00
}
}
Schema: Increase the length of `wp_options.option_name`.
It's pretty easy to run over the `option_name` length, which causes undefined behaviour when inserting and retrieving options. Increasing the length from `VARCHAR(64)` to `VARCHAR(191)` significantly reduces the risk of this occurring.
Because `option_name` has a `UNIQUE` index, we can only increase it to 191 characters, rather than 255. The index can only use a prefix of 191 characters, so will incorrectly restrict long different strings that have the same prefix, if we make the column longer.
Props scribu, OriginalEXE, khromov, MikeHansenMe, netweb, pento.
Fixes #13310.
Built from https://develop.svn.wordpress.org/trunk@34030
git-svn-id: http://core.svn.wordpress.org/trunk@33999 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-09-11 03:26:24 +02:00
/**
* Executes changes made in WordPress 4.4 . 0.
*
2015-12-16 18:59:27 +01:00
* @ ignore
Schema: Increase the length of `wp_options.option_name`.
It's pretty easy to run over the `option_name` length, which causes undefined behaviour when inserting and retrieving options. Increasing the length from `VARCHAR(64)` to `VARCHAR(191)` significantly reduces the risk of this occurring.
Because `option_name` has a `UNIQUE` index, we can only increase it to 191 characters, rather than 255. The index can only use a prefix of 191 characters, so will incorrectly restrict long different strings that have the same prefix, if we make the column longer.
Props scribu, OriginalEXE, khromov, MikeHansenMe, netweb, pento.
Fixes #13310.
Built from https://develop.svn.wordpress.org/trunk@34030
git-svn-id: http://core.svn.wordpress.org/trunk@33999 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-09-11 03:26:24 +02:00
* @ since 4.4 . 0
*
2019-08-04 03:12:56 +02:00
* @ global int $wp_current_db_version The old ( current ) database version .
Schema: Increase the length of `wp_options.option_name`.
It's pretty easy to run over the `option_name` length, which causes undefined behaviour when inserting and retrieving options. Increasing the length from `VARCHAR(64)` to `VARCHAR(191)` significantly reduces the risk of this occurring.
Because `option_name` has a `UNIQUE` index, we can only increase it to 191 characters, rather than 255. The index can only use a prefix of 191 characters, so will incorrectly restrict long different strings that have the same prefix, if we make the column longer.
Props scribu, OriginalEXE, khromov, MikeHansenMe, netweb, pento.
Fixes #13310.
Built from https://develop.svn.wordpress.org/trunk@34030
git-svn-id: http://core.svn.wordpress.org/trunk@33999 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-09-11 03:26:24 +02:00
* @ global wpdb $wpdb WordPress database abstraction object .
*/
function upgrade_440 () {
global $wp_current_db_version , $wpdb ;
if ( $wp_current_db_version < 34030 ) {
$wpdb -> query ( " ALTER TABLE { $wpdb -> options } MODIFY option_name VARCHAR(191) " );
}
2015-11-19 04:53:28 +01:00
// Remove the unused 'add_users' role.
$roles = wp_roles ();
foreach ( $roles -> role_objects as $role ) {
if ( $role -> has_cap ( 'add_users' ) ) {
$role -> remove_cap ( 'add_users' );
}
}
Schema: Increase the length of `wp_options.option_name`.
It's pretty easy to run over the `option_name` length, which causes undefined behaviour when inserting and retrieving options. Increasing the length from `VARCHAR(64)` to `VARCHAR(191)` significantly reduces the risk of this occurring.
Because `option_name` has a `UNIQUE` index, we can only increase it to 191 characters, rather than 255. The index can only use a prefix of 191 characters, so will incorrectly restrict long different strings that have the same prefix, if we make the column longer.
Props scribu, OriginalEXE, khromov, MikeHansenMe, netweb, pento.
Fixes #13310.
Built from https://develop.svn.wordpress.org/trunk@34030
git-svn-id: http://core.svn.wordpress.org/trunk@33999 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2015-09-11 03:26:24 +02:00
}
2016-01-06 07:12:26 +01:00
/**
2016-03-03 10:01:26 +01:00
* Executes changes made in WordPress 4.5 . 0.
2016-01-06 07:12:26 +01:00
*
* @ ignore
* @ since 4.5 . 0
*
2019-08-04 03:12:56 +02:00
* @ global int $wp_current_db_version The old ( current ) database version .
2016-03-03 10:01:26 +01:00
* @ global wpdb $wpdb WordPress database abstraction object .
2016-01-06 07:12:26 +01:00
*/
function upgrade_450 () {
2016-02-24 16:34:28 +01:00
global $wp_current_db_version , $wpdb ;
if ( $wp_current_db_version < 36180 ) {
2016-01-06 07:12:26 +01:00
wp_clear_scheduled_hook ( 'wp_maybe_auto_update' );
2016-02-24 16:34:28 +01:00
}
// Remove unused email confirmation options, moved to usermeta.
if ( $wp_current_db_version < 36679 && is_multisite () ) {
$wpdb -> query ( " DELETE FROM $wpdb->options WHERE option_name REGEXP '^[0-9]+_new_email $ ' " );
}
2016-03-14 02:39:26 +01:00
// Remove unused user setting for wpLink.
delete_user_setting ( 'wplink' );
2016-01-06 07:12:26 +01:00
}
2016-06-26 16:26:29 +02:00
/**
* Executes changes made in WordPress 4.6 . 0.
*
* @ ignore
* @ since 4.6 . 0
*
2019-08-04 03:12:56 +02:00
* @ global int $wp_current_db_version The old ( current ) database version .
2016-06-26 16:26:29 +02:00
*/
function upgrade_460 () {
2016-07-05 15:28:29 +02:00
global $wp_current_db_version ;
// Remove unused post meta.
if ( $wp_current_db_version < 37854 ) {
delete_post_meta_by_key ( '_post_restored_from' );
}
// Remove plugins with callback as an array object/method as the uninstall hook, see #13786.
if ( $wp_current_db_version < 37965 ) {
$uninstall_plugins = get_option ( 'uninstall_plugins' , array () );
if ( ! empty ( $uninstall_plugins ) ) {
foreach ( $uninstall_plugins as $basename => $callback ) {
if ( is_array ( $callback ) && is_object ( $callback [ 0 ] ) ) {
unset ( $uninstall_plugins [ $basename ] );
}
}
update_option ( 'uninstall_plugins' , $uninstall_plugins );
}
}
2016-06-26 16:26:29 +02:00
}
2018-12-13 23:27:04 +01:00
/**
* Executes changes made in WordPress 5.0 . 0.
*
* @ ignore
* @ since 5.0 . 0
2019-02-08 01:16:50 +01:00
* @ deprecated 5.1 . 0
2018-12-13 23:27:04 +01:00
*/
function upgrade_500 () {
2019-02-08 01:16:50 +01:00
}
Help/About: WordPress 5.0 About Page.
The About page describes all the great changes in WordPress 5.0.
Highlights:
- Warn users of Gutenberg plugin of its deactivation upon 5.0 upgrade.
- Added illustrations to the Four Freedoms page.
- Include a link to wporg user’s plugin favorites as a way to display only the classic plugin as a suggestion for install.
- Detail the Classic Editor plugin and the support timeline.
Props pixelverbieger, ocean90, karmatosed, pento, boemedia, lonelyvegan, sami.keijonen, TimothyBlynJacobs, xkon, afercia, laurelfulford, joostdevalk, ipstenu, matveb, joen, tinkerbelly, chanthaboune, kjellr, alexislloyd, melchoyce, mcsf, courtney0burton, Otto42, cathibosco, tobifjellner, helen, audrasjb, antpb, jjj, elrae, desrosj, azaozz, joemcgill, skithund, gziolo.
Merges [43913], [43921-43922], [43937-43938], [43946-43947], [43952-43953], [43967-43969] into trunk.
Fixes #45178.
Built from https://develop.svn.wordpress.org/trunk@44264
git-svn-id: http://core.svn.wordpress.org/trunk@44094 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2018-12-17 17:36:59 +01:00
2019-02-08 01:16:50 +01:00
/**
* Executes changes made in WordPress 5.1 . 0.
*
* @ ignore
* @ since 5.1 . 0
*/
function upgrade_510 () {
delete_site_option ( 'upgrade_500_was_gutenberg_active' );
2018-12-13 23:27:04 +01:00
}
2019-08-07 02:04:56 +02:00
/**
* Executes changes made in WordPress 5.3 . 0.
*
* @ ignore
* @ since 5.3 . 0
*/
function upgrade_530 () {
2020-01-29 01:45:18 +01:00
/*
* The `admin_email_lifespan` option may have been set by an admin that just logged in ,
* saw the verification screen , clicked on a button there , and is now upgrading the db ,
* or by populate_options () that is called earlier in upgrade_all () .
* In the second case `admin_email_lifespan` should be reset so the verification screen
* is shown next time an admin logs in .
*/
2019-08-13 19:40:55 +02:00
if ( function_exists ( 'current_user_can' ) && ! current_user_can ( 'manage_options' ) ) {
update_option ( 'admin_email_lifespan' , 0 );
}
2019-08-07 02:04:56 +02:00
}
2020-04-17 21:35:06 +02:00
/**
* Executes changes made in WordPress 5.5 . 0.
*
* @ ignore
* @ since 5.5 . 0
2022-11-03 14:38:17 +01:00
*
* @ global int $wp_current_db_version The old ( current ) database version .
2020-04-17 21:35:06 +02:00
*/
function upgrade_550 () {
2020-07-07 21:21:06 +02:00
global $wp_current_db_version ;
if ( $wp_current_db_version < 48121 ) {
$comment_previously_approved = get_option ( 'comment_whitelist' , '' );
update_option ( 'comment_previously_approved' , $comment_previously_approved );
delete_option ( 'comment_whitelist' );
}
General: Update code for readability and inclusion
There are two pieces in here:
1) The update to change blacklist to blocklist is moved to disallowed_list. "Block" has a meaning in our code, and there could be ambiguity between this code and code related to blocks.
2) This improves backwards compatibility for code that was accessing the now deprecated code.
Previously: [48477], [48405], [48400], [48121], [48122], [48124], [48142], [48566]
Props: desrosj, SergeyBiryukov, johnjamesjacoby
Fixes: #50413
Built from https://develop.svn.wordpress.org/trunk@48575
git-svn-id: http://core.svn.wordpress.org/trunk@48337 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-07-23 05:14:06 +02:00
2020-07-23 20:43:04 +02:00
if ( $wp_current_db_version < 48575 ) {
General: Update code for readability and inclusion
There are two pieces in here:
1) The update to change blacklist to blocklist is moved to disallowed_list. "Block" has a meaning in our code, and there could be ambiguity between this code and code related to blocks.
2) This improves backwards compatibility for code that was accessing the now deprecated code.
Previously: [48477], [48405], [48400], [48121], [48122], [48124], [48142], [48566]
Props: desrosj, SergeyBiryukov, johnjamesjacoby
Fixes: #50413
Built from https://develop.svn.wordpress.org/trunk@48575
git-svn-id: http://core.svn.wordpress.org/trunk@48337 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-07-23 05:14:06 +02:00
// Use more clear and inclusive language.
$disallowed_list = get_option ( 'blacklist_keys' );
2020-07-23 20:43:04 +02:00
/*
* This option key was briefly renamed `blocklist_keys` .
* Account for sites that have this key present when the original key does not exist .
*/
General: Update code for readability and inclusion
There are two pieces in here:
1) The update to change blacklist to blocklist is moved to disallowed_list. "Block" has a meaning in our code, and there could be ambiguity between this code and code related to blocks.
2) This improves backwards compatibility for code that was accessing the now deprecated code.
Previously: [48477], [48405], [48400], [48121], [48122], [48124], [48142], [48566]
Props: desrosj, SergeyBiryukov, johnjamesjacoby
Fixes: #50413
Built from https://develop.svn.wordpress.org/trunk@48575
git-svn-id: http://core.svn.wordpress.org/trunk@48337 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-07-23 05:14:06 +02:00
if ( false === $disallowed_list ) {
$disallowed_list = get_option ( 'blocklist_keys' );
}
update_option ( 'disallowed_keys' , $disallowed_list );
delete_option ( 'blacklist_keys' );
delete_option ( 'blocklist_keys' );
}
2020-08-07 18:32:03 +02:00
if ( $wp_current_db_version < 48748 ) {
update_option ( 'finished_updating_comment_type' , 0 );
wp_schedule_single_event ( time () + ( 1 * MINUTE_IN_SECONDS ), 'wp_update_comment_type_batch' );
}
2020-04-17 21:35:06 +02:00
}
2020-11-12 18:55:11 +01:00
/**
* Executes changes made in WordPress 5.6 . 0.
*
* @ ignore
* @ since 5.6 . 0
2022-11-03 14:38:17 +01:00
*
* @ global int $wp_current_db_version The old ( current ) database version .
* @ global wpdb $wpdb WordPress database abstraction object .
2020-11-12 18:55:11 +01:00
*/
function upgrade_560 () {
2020-11-17 18:24:06 +01:00
global $wp_current_db_version , $wpdb ;
2020-11-12 18:55:11 +01:00
2020-11-17 18:24:06 +01:00
if ( $wp_current_db_version < 49572 ) {
/*
* Clean up the `post_category` column removed from schema in version 2.8 . 0.
* Its presence may conflict with `WP_Post::__get()` .
*/
$post_category_exists = $wpdb -> get_var ( " SHOW COLUMNS FROM $wpdb->posts LIKE 'post_category' " );
if ( ! is_null ( $post_category_exists ) ) {
$wpdb -> query ( " ALTER TABLE $wpdb->posts DROP COLUMN `post_category` " );
}
/*
* When upgrading from WP < 5.6 . 0 set the core major auto - updates option to `unset` by default .
* This overrides the same option from populate_options () that is intended for new installs .
* See https :// core . trac . wordpress . org / ticket / 51742.
*/
update_option ( 'auto_update_core_major' , 'unset' );
2020-11-12 18:55:11 +01:00
}
2020-11-12 21:22:09 +01:00
2020-11-17 18:24:06 +01:00
if ( $wp_current_db_version < 49632 ) {
/*
* Regenerate the . htaccess file to add the `HTTP_AUTHORIZATION` rewrite rule .
* See https :// core . trac . wordpress . org / ticket / 51723.
*/
save_mod_rewrite_rules ();
}
Multisite: Cache absolute `dirsize` paths to avoid PHP 8 fatal.
r49212 greatly improved the performance of `get_dirsize()`, but also changed the structure of the data stored in the `dirsize_cache` transient. It stored relative paths instead of absolute ones, and also removed the unnecessary `size` array.
That difference in data structures led to a fatal error in the following environment:
* PHP 8
* Multisite
* A custom `WP_CONTENT_DIR` which is not a child of WP's `ABSPATH` folder (e.g., [https://roots.io/bedrock/ Bedrock])
* The `upload_space_check_disabled` option set to `0`
After upgrading to WP 5.6, the `dirsize_cache` transient still had data in the old format. When `wp-admin.php/index.php` was visited, `get_space_used()` received an `array` instead of an `int`, and tried to divide it by another `int`. PHP 7 would silently cast the arguments to match data types, but [https://wiki.php.net/rfc/arithmetic_operator_type_checks PHP 8 throws a fatal error]:
`Uncaught TypeError: Unsupported operand types: array / int`
`recurse_dirsize()` was using `ABSPATH` to convert the absolute paths to relative ones, but some upload locations are not located under `ABSPATH`. In those cases, `$directory` and `$cache_path` were identical, and that triggered the early return of the old `array`, instead of the expected `int`.
In order to avoid that, this commit restores the absolute paths, but without the `size` array. It also adds a type check when returning cached values. Using absolute paths without `size` has the result of overwriting the old data, so that it matches the new format. The type check and upgrade routine are additional safety measures.
Props peterwilsoncc, janthiel, helen, hellofromtonya, francina, pbiron.
Fixes #51913. See #19879.
Built from https://develop.svn.wordpress.org/trunk@49744
git-svn-id: http://core.svn.wordpress.org/trunk@49467 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-12-03 21:39:02 +01:00
if ( $wp_current_db_version < 49735 ) {
delete_transient ( 'dirsize_cache' );
}
App Passwords: Prevent conflicts when Basic Auth is already used by the site.
Application Passwords uses Basic Authentication to transfer authentication details. If the site is already using Basic Auth, for instance to implement a private staging environment, then the REST API will treat this as an authentication attempt and would end up generating an error for any REST API request.
Now, Application Password authentication will only be attempted if Application Passwords is in use by a site. This is flagged by setting an option whenever an Application Password is created. An upgrade routine is added to set this option if any App Passwords already exist.
Lastly, creating an Application Password will be prevented if the site appears to already be using Basic Authentication.
Props chexwarrior, georgestephanis, adamsilverstein, helen, Clorith, marybaum, TimothyBlynJacobs.
Fixes #51939.
Built from https://develop.svn.wordpress.org/trunk@49752
git-svn-id: http://core.svn.wordpress.org/trunk@49475 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-12-04 22:44:07 +01:00
if ( $wp_current_db_version < 49752 ) {
$results = $wpdb -> get_results (
$wpdb -> prepare (
" SELECT 1 FROM { $wpdb -> usermeta } WHERE meta_key = %s LIMIT 1 " ,
WP_Application_Passwords :: USERMETA_KEY_APPLICATION_PASSWORDS
)
);
if ( ! empty ( $results ) ) {
2020-12-07 16:59:04 +01:00
$network_id = get_main_network_id ();
update_network_option ( $network_id , WP_Application_Passwords :: OPTION_KEY_IN_USE , 1 );
App Passwords: Prevent conflicts when Basic Auth is already used by the site.
Application Passwords uses Basic Authentication to transfer authentication details. If the site is already using Basic Auth, for instance to implement a private staging environment, then the REST API will treat this as an authentication attempt and would end up generating an error for any REST API request.
Now, Application Password authentication will only be attempted if Application Passwords is in use by a site. This is flagged by setting an option whenever an Application Password is created. An upgrade routine is added to set this option if any App Passwords already exist.
Lastly, creating an Application Password will be prevented if the site appears to already be using Basic Authentication.
Props chexwarrior, georgestephanis, adamsilverstein, helen, Clorith, marybaum, TimothyBlynJacobs.
Fixes #51939.
Built from https://develop.svn.wordpress.org/trunk@49752
git-svn-id: http://core.svn.wordpress.org/trunk@49475 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2020-12-04 22:44:07 +01:00
}
}
2020-11-12 18:55:11 +01:00
}
2021-10-18 15:30:57 +02:00
/**
* Executes changes made in WordPress 5.9 . 0.
*
* @ ignore
* @ since 5.9 . 0
2021-12-12 18:57:00 +01:00
*
* @ global int $wp_current_db_version The old ( current ) database version .
2021-10-18 15:30:57 +02:00
*/
function upgrade_590 () {
global $wp_current_db_version ;
if ( $wp_current_db_version < 51917 ) {
$crons = _get_cron_array ();
2022-02-01 01:14:06 +01:00
if ( $crons && is_array ( $crons ) ) {
2022-02-03 00:22:06 +01:00
// Remove errant `false` values, see #53950, #54906.
2022-02-01 01:14:06 +01:00
$crons = array_filter ( $crons );
_set_cron_array ( $crons );
}
2021-10-18 15:30:57 +02:00
}
}
Users: Introduce the concept of a large site to single site installations.
Currently in WordPress multisite there is a concept of large networks. The function `wp_is_large_network` is used to determine if a network has a large number of sites or users. If a network is marked as large, then
expensive queries to calculate user counts are not run on page load but deferred to scheduled events. However there are a number of places in a single site installation where this functionality would also be useful, as
expensive calls to count users and roles can make screens in the admin extremely slow.
In this change, the `get_user_count` function and related functionality around it is ported to be available in a single site context. This means that expensive calls to the `count_users` function are replaced with
calls to `get_user_count`. This change also includes a new function called `wp_is_large_user_count` and a filter of the same name, to mark if a site is large.
Props johnbillion, Spacedmonkey, Mista-Flo, lumpysimon, tharsheblows, obenland, miss_jwo, jrchamp, flixos90, macbookandrew, pento, desrosj, johnjamesjacoby, jb510, davidbaumwald, costdev.
Fixes #38741.
Built from https://develop.svn.wordpress.org/trunk@53011
git-svn-id: http://core.svn.wordpress.org/trunk@52600 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-03-29 14:42:13 +02:00
/**
* Executes changes made in WordPress 6.0 . 0.
*
* @ ignore
* @ since 6.0 . 0
*
* @ global int $wp_current_db_version The old ( current ) database version .
*/
function upgrade_600 () {
global $wp_current_db_version ;
if ( $wp_current_db_version < 53011 ) {
wp_update_user_counts ();
}
}
2023-05-24 19:35:18 +02:00
/**
* Executes changes made in WordPress 6.3 . 0.
*
* @ ignore
* @ since 6.3 . 0
*
* @ global int $wp_current_db_version The old ( current ) database version .
*/
function upgrade_630 () {
global $wp_current_db_version ;
if ( $wp_current_db_version < 55853 ) {
if ( ! is_multisite () ) {
// Replace non-autoload option can_compress_scripts with autoload option, see #55270
$can_compress_scripts = get_option ( 'can_compress_scripts' , false );
if ( false !== $can_compress_scripts ) {
delete_option ( 'can_compress_scripts' );
2023-07-18 12:09:29 +02:00
add_option ( 'can_compress_scripts' , $can_compress_scripts , '' , 'yes' );
2023-05-24 19:35:18 +02:00
}
}
}
}
Media: Disable attachment pages for new installations.
WordPress creates attachment pages by default for every attachment uploaded. On the vast majority of sites, these attachment pages don't contain any meaningful information. They do however exist, get indexed by search engines, and sometimes even rank in search results, leading to bad results for users and site owners.
This commit introduces a `wp_attachment_pages_enabled` database option to control the attachment pages behavior:
* On existing sites, the option is set to `1` on upgrade, so that attachment pages continue to work as is.
* For new sites, the option is set to to `0` by default, which means attachment pages are redirected to the attachment URL.
* Sites that want to enable or disable the attachment pages can set the option to `1` or `0`, respectively.
Follow-up to [2958], [3303], [7149], [34690].
Props aristath, poena, afercia, joostdevalk, jonoaldersonwp, azaozz, johnbillion, joedolson, basiliskan, audrasjb, davelo, rilwis, manfcarlo, tyxla, garrett-eclipse, seedsca, eatingrules, matveb, antpb, zodiac1978, oglekler, zunaid321, costdev, SergeyBiryukov.
Fixes #57913.
Built from https://develop.svn.wordpress.org/trunk@56657
git-svn-id: http://core.svn.wordpress.org/trunk@56169 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-09-22 02:04:41 +02:00
/**
* Executes changes made in WordPress 6.4 . 0.
*
* @ ignore
* @ since 6.4 . 0
*
* @ global int $wp_current_db_version The old ( current ) database version .
*/
function upgrade_640 () {
global $wp_current_db_version ;
if ( $wp_current_db_version < 56657 ) {
// Enable attachment pages.
2023-09-22 03:18:18 +02:00
update_option ( 'wp_attachment_pages_enabled' , 1 );
2023-09-22 21:08:19 +02:00
// Remove the wp_https_detection cron. Https status is checked directly in an async Site Health check.
$scheduled = wp_get_scheduled_event ( 'wp_https_detection' );
if ( $scheduled ) {
wp_clear_scheduled_hook ( 'wp_https_detection' );
}
Media: Disable attachment pages for new installations.
WordPress creates attachment pages by default for every attachment uploaded. On the vast majority of sites, these attachment pages don't contain any meaningful information. They do however exist, get indexed by search engines, and sometimes even rank in search results, leading to bad results for users and site owners.
This commit introduces a `wp_attachment_pages_enabled` database option to control the attachment pages behavior:
* On existing sites, the option is set to `1` on upgrade, so that attachment pages continue to work as is.
* For new sites, the option is set to to `0` by default, which means attachment pages are redirected to the attachment URL.
* Sites that want to enable or disable the attachment pages can set the option to `1` or `0`, respectively.
Follow-up to [2958], [3303], [7149], [34690].
Props aristath, poena, afercia, joostdevalk, jonoaldersonwp, azaozz, johnbillion, joedolson, basiliskan, audrasjb, davelo, rilwis, manfcarlo, tyxla, garrett-eclipse, seedsca, eatingrules, matveb, antpb, zodiac1978, oglekler, zunaid321, costdev, SergeyBiryukov.
Fixes #57913.
Built from https://develop.svn.wordpress.org/trunk@56657
git-svn-id: http://core.svn.wordpress.org/trunk@56169 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-09-22 02:04:41 +02:00
}
}
2023-12-04 20:51:23 +01:00
/**
* Executes changes made in WordPress 6.5 . 0.
*
* @ ignore
* @ since 6.5 . 0
*
* @ global int $wp_current_db_version The old ( current ) database version .
* @ global wpdb $wpdb WordPress database abstraction object .
*/
function upgrade_650 () {
global $wp_current_db_version , $wpdb ;
if ( $wp_current_db_version < 57155 ) {
$stylesheet = get_stylesheet ();
// Set autoload=no for all themes except the current one.
$theme_mods_options = $wpdb -> get_col (
$wpdb -> prepare (
" SELECT option_name FROM $wpdb->options WHERE autoload = 'yes' AND option_name != %s AND option_name LIKE %s " ,
" theme_mods_ $stylesheet " ,
$wpdb -> esc_like ( 'theme_mods_' ) . '%'
)
);
$autoload = array_fill_keys ( $theme_mods_options , 'no' );
wp_set_option_autoload_values ( $autoload );
}
}
2010-02-02 22:53:26 +01:00
/**
2015-01-19 10:15:22 +01:00
* Executes network - level upgrade routines .
2010-02-02 22:53:26 +01:00
*
* @ since 3.0 . 0
2015-05-29 04:06:31 +02:00
*
2019-08-04 03:12:56 +02:00
* @ global int $wp_current_db_version The old ( current ) database version .
* @ global wpdb $wpdb WordPress database abstraction object .
2010-02-02 22:53:26 +01:00
*/
function upgrade_network () {
2010-03-08 17:31:12 +01:00
global $wp_current_db_version , $wpdb ;
2013-10-25 00:55:02 +02:00
2020-01-29 01:45:18 +01:00
// Always clear expired transients.
2017-10-21 15:22:49 +02:00
delete_expired_transients ( true );
2013-10-25 00:55:02 +02:00
2020-05-12 20:40:07 +02:00
// 2.8.0
2010-02-02 22:53:26 +01:00
if ( $wp_current_db_version < 11549 ) {
2017-12-01 00:11:00 +01:00
$wpmu_sitewide_plugins = get_site_option ( 'wpmu_sitewide_plugins' );
2015-10-07 19:11:25 +02:00
$active_sitewide_plugins = get_site_option ( 'active_sitewide_plugins' );
2010-02-02 22:53:26 +01:00
if ( $wpmu_sitewide_plugins ) {
2017-12-01 00:11:00 +01:00
if ( ! $active_sitewide_plugins ) {
2010-02-02 22:53:26 +01:00
$sitewide_plugins = ( array ) $wpmu_sitewide_plugins ;
2017-12-01 00:11:00 +01:00
} else {
2010-02-02 22:53:26 +01:00
$sitewide_plugins = array_merge ( ( array ) $active_sitewide_plugins , ( array ) $wpmu_sitewide_plugins );
2017-12-01 00:11:00 +01:00
}
2010-02-02 22:53:26 +01:00
2015-10-07 19:11:25 +02:00
update_site_option ( 'active_sitewide_plugins' , $sitewide_plugins );
2010-02-02 22:53:26 +01:00
}
2015-10-07 19:11:25 +02:00
delete_site_option ( 'wpmu_sitewide_plugins' );
delete_site_option ( 'deactivated_sitewide_plugins' );
2010-03-08 17:31:12 +01:00
$start = 0 ;
2017-12-01 00:11:00 +01:00
while ( $rows = $wpdb -> get_results ( " SELECT meta_key, meta_value FROM { $wpdb -> sitemeta } ORDER BY meta_id LIMIT $start , 20 " ) ) {
2015-08-25 22:28:22 +02:00
foreach ( $rows as $row ) {
2010-03-08 17:31:12 +01:00
$value = $row -> meta_value ;
2017-12-01 00:11:00 +01:00
if ( ! @ unserialize ( $value ) ) {
2010-03-08 17:31:12 +01:00
$value = stripslashes ( $value );
2017-12-01 00:11:00 +01:00
}
2010-03-08 17:31:12 +01:00
if ( $value !== $row -> meta_value ) {
2015-10-07 19:11:25 +02:00
update_site_option ( $row -> meta_key , $value );
2010-03-08 17:31:12 +01:00
}
}
$start += 20 ;
}
2010-02-02 22:53:26 +01:00
}
2012-03-08 04:22:39 +01:00
2020-05-12 20:40:07 +02:00
// 3.0.0
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 13576 ) {
2015-10-07 19:11:25 +02:00
update_site_option ( 'global_terms_enabled' , '1' );
2017-12-01 00:11:00 +01:00
}
2012-03-08 04:22:39 +01:00
2020-05-12 20:40:07 +02:00
// 3.3.0
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 19390 ) {
2015-10-07 19:11:25 +02:00
update_site_option ( 'initial_db_version' , $wp_current_db_version );
2017-12-01 00:11:00 +01:00
}
2012-03-08 04:22:39 +01:00
2011-11-28 21:35:36 +01:00
if ( $wp_current_db_version < 19470 ) {
2017-12-01 00:11:00 +01:00
if ( false === get_site_option ( 'active_sitewide_plugins' ) ) {
2015-10-07 19:11:25 +02:00
update_site_option ( 'active_sitewide_plugins' , array () );
2017-12-01 00:11:00 +01:00
}
2011-11-28 21:35:36 +01:00
}
2012-03-08 04:22:39 +01:00
2020-05-12 20:40:07 +02:00
// 3.4.0
2012-03-08 04:22:39 +01:00
if ( $wp_current_db_version < 20148 ) {
// 'allowedthemes' keys things by stylesheet. 'allowed_themes' keyed things by name.
2017-12-01 00:11:00 +01:00
$allowedthemes = get_site_option ( 'allowedthemes' );
2015-10-07 19:11:25 +02:00
$allowed_themes = get_site_option ( 'allowed_themes' );
2012-03-08 04:22:39 +01:00
if ( false === $allowedthemes && is_array ( $allowed_themes ) && $allowed_themes ) {
$converted = array ();
2017-12-01 00:11:00 +01:00
$themes = wp_get_themes ();
2012-03-08 04:22:39 +01:00
foreach ( $themes as $stylesheet => $theme_data ) {
2017-12-01 00:11:00 +01:00
if ( isset ( $allowed_themes [ $theme_data -> get ( 'Name' ) ] ) ) {
2012-03-08 04:22:39 +01:00
$converted [ $stylesheet ] = true ;
2017-12-01 00:11:00 +01:00
}
2012-03-08 04:22:39 +01:00
}
2015-10-07 19:11:25 +02:00
update_site_option ( 'allowedthemes' , $converted );
delete_site_option ( 'allowed_themes' );
2012-03-08 04:22:39 +01:00
}
}
2012-09-12 00:22:20 +02:00
2020-05-12 20:40:07 +02:00
// 3.5.0
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version < 21823 ) {
2015-10-07 19:11:25 +02:00
update_site_option ( 'ms_files_rewriting' , '1' );
2017-12-01 00:11:00 +01:00
}
2013-06-20 00:06:42 +02:00
// 3.5.2
if ( $wp_current_db_version < 24448 ) {
2015-10-07 19:11:25 +02:00
$illegal_names = get_site_option ( 'illegal_names' );
2013-06-20 00:06:42 +02:00
if ( is_array ( $illegal_names ) && count ( $illegal_names ) === 1 ) {
2017-12-01 00:11:00 +01:00
$illegal_name = reset ( $illegal_names );
2013-06-20 00:06:42 +02:00
$illegal_names = explode ( ' ' , $illegal_name );
2015-10-07 19:11:25 +02:00
update_site_option ( 'illegal_names' , $illegal_names );
2013-06-20 00:06:42 +02:00
}
}
2015-02-06 05:51:22 +01:00
2020-05-12 20:40:07 +02:00
// 4.2.0
2020-02-09 17:55:09 +01:00
if ( $wp_current_db_version < 31351 && 'utf8mb4' === $wpdb -> charset ) {
2015-07-03 06:34:24 +02:00
if ( wp_should_upgrade_global_tables () ) {
2015-02-06 14:41:22 +01:00
$wpdb -> query ( " ALTER TABLE $wpdb->usermeta DROP INDEX meta_key, ADD INDEX meta_key(meta_key(191)) " );
2015-02-06 05:51:22 +01:00
$wpdb -> query ( " ALTER TABLE $wpdb->site DROP INDEX domain, ADD INDEX domain(domain(140),path(51)) " );
$wpdb -> query ( " ALTER TABLE $wpdb->sitemeta DROP INDEX meta_key, ADD INDEX meta_key(meta_key(191)) " );
2015-05-06 09:34:24 +02:00
$wpdb -> query ( " ALTER TABLE $wpdb->signups DROP INDEX domain_path, ADD INDEX domain_path(domain(140),path(51)) " );
2015-02-06 05:51:22 +01:00
$tables = $wpdb -> tables ( 'global' );
2015-08-09 04:22:26 +02:00
// sitecategories may not exist.
2015-08-12 01:44:24 +02:00
if ( ! $wpdb -> get_var ( " SHOW TABLES LIKE ' { $tables [ 'sitecategories' ] } ' " ) ) {
2015-08-09 04:22:26 +02:00
unset ( $tables [ 'sitecategories' ] );
}
2015-02-06 05:51:22 +01:00
foreach ( $tables as $table ) {
maybe_convert_table_to_utf8mb4 ( $table );
}
}
}
2015-05-06 09:34:24 +02:00
2020-05-12 20:40:07 +02:00
// 4.3.0
2015-07-03 05:26:24 +02:00
if ( $wp_current_db_version < 33055 && 'utf8mb4' === $wpdb -> charset ) {
2015-07-03 06:34:24 +02:00
if ( wp_should_upgrade_global_tables () ) {
2015-05-06 09:34:24 +02:00
$upgrade = false ;
$indexes = $wpdb -> get_results ( " SHOW INDEXES FROM $wpdb->signups " );
2015-08-25 22:28:22 +02:00
foreach ( $indexes as $index ) {
2020-05-16 20:42:12 +02:00
if ( 'domain_path' === $index -> Key_name && 'domain' === $index -> Column_name && 140 != $index -> Sub_part ) {
2015-05-06 09:34:24 +02:00
$upgrade = true ;
break ;
}
}
if ( $upgrade ) {
$wpdb -> query ( " ALTER TABLE $wpdb->signups DROP INDEX domain_path, ADD INDEX domain_path(domain(140),path(51)) " );
}
2015-07-03 05:26:24 +02:00
$tables = $wpdb -> tables ( 'global' );
2015-08-09 04:22:26 +02:00
// sitecategories may not exist.
2015-08-12 01:44:24 +02:00
if ( ! $wpdb -> get_var ( " SHOW TABLES LIKE ' { $tables [ 'sitecategories' ] } ' " ) ) {
2015-08-09 04:22:26 +02:00
unset ( $tables [ 'sitecategories' ] );
}
2015-07-03 05:26:24 +02:00
foreach ( $tables as $table ) {
maybe_convert_table_to_utf8mb4 ( $table );
}
2015-05-06 09:34:24 +02:00
}
}
2018-03-16 03:15:31 +01:00
2020-05-12 20:40:07 +02:00
// 5.1.0
2019-01-08 09:18:50 +01:00
if ( $wp_current_db_version < 44467 ) {
2018-03-16 03:15:31 +01:00
$network_id = get_main_network_id ();
delete_network_option ( $network_id , 'site_meta_supported' );
is_site_meta_supported ();
}
2010-02-02 22:53:26 +01:00
}
2015-01-19 10:15:22 +01:00
//
2020-01-29 01:45:18 +01:00
// General functions we use to actually do stuff.
2015-01-19 10:15:22 +01:00
//
2008-10-02 03:03:26 +02:00
/**
2020-05-12 20:40:07 +02:00
* Creates a table in the database , if it doesn ' t already exist .
2008-10-02 03:03:26 +02:00
*
2023-07-19 13:33:26 +02:00
* This method checks for an existing database table and creates a new one if it ' s not
2015-01-19 10:15:22 +01:00
* already present . It doesn 't rely on MySQL' s " IF NOT EXISTS " statement , but chooses
* to query all tables first and then run the SQL statement creating the table .
2008-10-02 03:03:26 +02:00
*
2010-12-01 20:24:38 +01:00
* @ since 1.0 . 0
2008-10-02 03:03:26 +02:00
*
2019-08-04 03:12:56 +02:00
* @ global wpdb $wpdb WordPress database abstraction object .
2015-05-29 04:06:31 +02:00
*
2020-05-12 20:40:07 +02:00
* @ param string $table_name Database table name .
2008-10-02 03:03:26 +02:00
* @ param string $create_ddl SQL statement to create table .
2020-05-12 20:40:07 +02:00
* @ return bool True on success or if the table already exists . False on failure .
2008-10-02 03:03:26 +02:00
*/
2017-12-01 00:11:00 +01:00
function maybe_create_table ( $table_name , $create_ddl ) {
2006-11-19 08:56:05 +01:00
global $wpdb ;
2014-08-26 21:59:16 +02:00
2017-12-01 00:11:00 +01:00
$query = $wpdb -> prepare ( 'SHOW TABLES LIKE %s' , $wpdb -> esc_like ( $table_name ) );
2014-06-10 02:44:15 +02:00
2020-05-12 20:32:08 +02:00
if ( $wpdb -> get_var ( $query ) === $table_name ) {
2009-01-27 23:35:21 +01:00
return true ;
2014-06-10 02:44:15 +02:00
}
2014-07-17 11:14:16 +02:00
2020-01-29 01:45:18 +01:00
// Didn't find it, so try to create it.
2017-12-01 00:11:00 +01:00
$wpdb -> query ( $create_ddl );
2014-07-17 11:14:16 +02:00
// We cannot directly tell that whether this succeeded!
2020-05-12 20:32:08 +02:00
if ( $wpdb -> get_var ( $query ) === $table_name ) {
2009-01-27 23:35:21 +01:00
return true ;
2014-06-10 02:44:15 +02:00
}
2020-05-12 20:32:08 +02:00
2006-11-19 08:56:05 +01:00
return false ;
2004-08-30 09:16:40 +02:00
}
2008-10-02 03:03:26 +02:00
/**
2015-01-19 10:15:22 +01:00
* Drops a specified index from a table .
2008-10-02 03:03:26 +02:00
*
2010-12-01 20:24:38 +01:00
* @ since 1.0 . 1
2008-10-02 03:03:26 +02:00
*
2019-08-04 03:12:56 +02:00
* @ global wpdb $wpdb WordPress database abstraction object .
2015-05-29 04:06:31 +02:00
*
2008-10-02 03:03:26 +02:00
* @ param string $table Database table name .
* @ param string $index Index name to drop .
2015-05-29 22:17:26 +02:00
* @ return true True , when finished .
2008-10-02 03:03:26 +02:00
*/
2017-12-01 00:11:00 +01:00
function drop_index ( $table , $index ) {
2004-08-30 09:16:40 +02:00
global $wpdb ;
2020-05-12 20:32:08 +02:00
2004-08-30 09:16:40 +02:00
$wpdb -> hide_errors ();
2020-05-12 20:32:08 +02:00
2017-12-01 00:11:00 +01:00
$wpdb -> query ( " ALTER TABLE ` $table ` DROP INDEX ` $index ` " );
2020-05-12 20:32:08 +02:00
2020-01-29 01:45:18 +01:00
// Now we need to take out all the extra ones we may have created.
2017-12-01 00:11:00 +01:00
for ( $i = 0 ; $i < 25 ; $i ++ ) {
$wpdb -> query ( " ALTER TABLE ` $table ` DROP INDEX ` { $index } _ $i ` " );
2004-08-30 09:16:40 +02:00
}
2020-05-12 20:32:08 +02:00
2004-08-30 09:16:40 +02:00
$wpdb -> show_errors ();
2020-05-12 20:32:08 +02:00
2004-08-30 09:16:40 +02:00
return true ;
}
2008-10-02 03:03:26 +02:00
/**
2015-01-19 10:15:22 +01:00
* Adds an index to a specified table .
2008-10-02 03:03:26 +02:00
*
2010-12-01 20:24:38 +01:00
* @ since 1.0 . 1
2008-10-02 03:03:26 +02:00
*
2019-08-04 03:12:56 +02:00
* @ global wpdb $wpdb WordPress database abstraction object .
2015-05-29 04:06:31 +02:00
*
2008-10-02 03:03:26 +02:00
* @ param string $table Database table name .
* @ param string $index Database table index column .
2015-05-29 22:17:26 +02:00
* @ return true True , when done with execution .
2008-10-02 03:03:26 +02:00
*/
2017-12-01 00:11:00 +01:00
function add_clean_index ( $table , $index ) {
2004-08-30 09:16:40 +02:00
global $wpdb ;
2020-05-12 20:32:08 +02:00
2017-12-01 00:11:00 +01:00
drop_index ( $table , $index );
$wpdb -> query ( " ALTER TABLE ` $table ` ADD INDEX ( ` $index ` ) " );
2020-05-12 20:32:08 +02:00
2004-08-30 09:16:40 +02:00
return true ;
}
/**
2020-05-12 20:40:07 +02:00
* Adds column to a database table , if it doesn ' t already exist .
2015-01-19 10:15:22 +01:00
*
* @ since 1.3 . 0
*
2019-08-04 03:12:56 +02:00
* @ global wpdb $wpdb WordPress database abstraction object .
2015-05-29 04:06:31 +02:00
*
2020-05-12 20:40:07 +02:00
* @ param string $table_name Database table name .
* @ param string $column_name Table column name .
* @ param string $create_ddl SQL statement to add column .
* @ return bool True on success or if the column already exists . False on failure .
2004-08-30 09:16:40 +02:00
*/
2017-12-01 00:11:00 +01:00
function maybe_add_column ( $table_name , $column_name , $create_ddl ) {
2012-02-17 01:02:42 +01:00
global $wpdb ;
2020-05-12 20:32:08 +02:00
2017-12-01 00:11:00 +01:00
foreach ( $wpdb -> get_col ( " DESC $table_name " , 0 ) as $column ) {
2020-05-12 20:32:08 +02:00
if ( $column === $column_name ) {
2006-11-19 08:56:05 +01:00
return true ;
}
}
2014-07-17 11:14:16 +02:00
2020-01-29 01:45:18 +01:00
// Didn't find it, so try to create it.
2017-12-01 00:11:00 +01:00
$wpdb -> query ( $create_ddl );
2014-07-17 11:14:16 +02:00
// We cannot directly tell that whether this succeeded!
2017-12-01 00:11:00 +01:00
foreach ( $wpdb -> get_col ( " DESC $table_name " , 0 ) as $column ) {
2020-05-12 20:32:08 +02:00
if ( $column === $column_name ) {
2006-11-19 08:56:05 +01:00
return true ;
}
}
2020-05-12 20:32:08 +02:00
2006-11-19 08:56:05 +01:00
return false ;
2004-08-30 09:16:40 +02:00
}
2015-02-06 05:51:22 +01:00
/**
* If a table only contains utf8 or utf8mb4 columns , convert it to utf8mb4 .
*
* @ since 4.2 . 0
*
2019-08-04 03:12:56 +02:00
* @ global wpdb $wpdb WordPress database abstraction object .
2015-05-29 04:06:31 +02:00
*
2015-02-06 05:51:22 +01:00
* @ param string $table The table to convert .
2020-05-12 20:40:07 +02:00
* @ return bool True if the table was converted , false if it wasn ' t .
2015-02-06 05:51:22 +01:00
*/
function maybe_convert_table_to_utf8mb4 ( $table ) {
global $wpdb ;
$results = $wpdb -> get_results ( " SHOW FULL COLUMNS FROM ` $table ` " );
if ( ! $results ) {
return false ;
}
foreach ( $results as $column ) {
if ( $column -> Collation ) {
2015-02-06 06:26:21 +01:00
list ( $charset ) = explode ( '_' , $column -> Collation );
2017-12-01 00:11:00 +01:00
$charset = strtolower ( $charset );
2015-02-06 06:59:23 +01:00
if ( 'utf8' !== $charset && 'utf8mb4' !== $charset ) {
2015-02-06 05:51:22 +01:00
// Don't upgrade tables that have non-utf8 columns.
return false ;
}
}
}
2015-05-08 14:22:25 +02:00
$table_details = $wpdb -> get_row ( " SHOW TABLE STATUS LIKE ' $table ' " );
if ( ! $table_details ) {
return false ;
}
list ( $table_charset ) = explode ( '_' , $table_details -> Collation );
2017-12-01 00:11:00 +01:00
$table_charset = strtolower ( $table_charset );
2015-05-08 14:22:25 +02:00
if ( 'utf8mb4' === $table_charset ) {
return true ;
}
2015-02-06 05:51:22 +01:00
return $wpdb -> query ( " ALTER TABLE $table CONVERT TO CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci " );
}
2008-10-02 03:03:26 +02:00
/**
* Retrieve all options as it was for 1.2 .
*
* @ since 1.2 . 0
*
2019-08-04 03:12:56 +02:00
* @ global wpdb $wpdb WordPress database abstraction object .
2015-05-29 04:06:31 +02:00
*
2014-12-01 02:00:22 +01:00
* @ return stdClass List of options .
2008-10-02 03:03:26 +02:00
*/
2004-08-30 09:16:40 +02:00
function get_alloptions_110 () {
global $wpdb ;
2022-11-29 16:51:14 +01:00
$all_options = new stdClass ();
2019-07-01 14:52:01 +02:00
$options = $wpdb -> get_results ( " SELECT option_name, option_value FROM $wpdb->options " );
if ( $options ) {
2012-01-05 22:21:51 +01:00
foreach ( $options as $option ) {
2020-05-16 20:42:12 +02:00
if ( 'siteurl' === $option -> option_name || 'home' === $option -> option_name || 'category_base' === $option -> option_name ) {
2012-01-05 22:21:51 +01:00
$option -> option_value = untrailingslashit ( $option -> option_value );
2017-12-01 00:11:00 +01:00
}
2012-01-05 22:21:51 +01:00
$all_options -> { $option -> option_name } = stripslashes ( $option -> option_value );
2004-08-30 09:16:40 +02:00
}
}
return $all_options ;
}
2008-10-02 03:03:26 +02:00
/**
2017-08-22 13:52:48 +02:00
* Utility version of get_option that is private to installation / upgrade .
2008-10-02 03:03:26 +02:00
*
2015-01-19 10:15:22 +01:00
* @ ignore
2010-12-01 20:24:38 +01:00
* @ since 1.5 . 1
2008-10-02 03:03:26 +02:00
* @ access private
*
2019-08-04 03:12:56 +02:00
* @ global wpdb $wpdb WordPress database abstraction object .
2015-05-29 04:06:31 +02:00
*
2008-10-02 03:03:26 +02:00
* @ param string $setting Option name .
* @ return mixed
*/
2019-09-25 15:47:58 +02:00
function __get_option ( $setting ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionDoubleUnderscore,PHPCompatibility.FunctionNameRestrictions.ReservedFunctionNames.FunctionDoubleUnderscore
2005-03-29 07:34:30 +02:00
global $wpdb ;
2007-06-14 04:25:30 +02:00
2020-02-09 17:55:09 +01:00
if ( 'home' === $setting && defined ( 'WP_HOME' ) ) {
2012-01-05 22:21:51 +01:00
return untrailingslashit ( WP_HOME );
2017-12-01 00:11:00 +01:00
}
2007-06-14 04:25:30 +02:00
2020-02-09 17:55:09 +01:00
if ( 'siteurl' === $setting && defined ( 'WP_SITEURL' ) ) {
2012-01-05 22:21:51 +01:00
return untrailingslashit ( WP_SITEURL );
2017-12-01 00:11:00 +01:00
}
2007-06-14 04:25:30 +02:00
2017-12-01 00:11:00 +01:00
$option = $wpdb -> get_var ( $wpdb -> prepare ( " SELECT option_value FROM $wpdb->options WHERE option_name = %s " , $setting ) );
2005-03-29 07:34:30 +02:00
2020-08-26 18:57:16 +02:00
if ( 'home' === $setting && ! $option ) {
2012-01-05 22:21:51 +01:00
return __get_option ( 'siteurl' );
2017-12-01 00:11:00 +01:00
}
2005-11-17 06:32:55 +01:00
2020-05-16 20:42:12 +02:00
if ( in_array ( $setting , array ( 'siteurl' , 'home' , 'category_base' , 'tag_base' ), true ) ) {
2012-01-05 22:21:51 +01:00
$option = untrailingslashit ( $option );
2017-12-01 00:11:00 +01:00
}
2005-11-17 06:32:55 +01:00
2013-07-10 06:01:20 +02:00
return maybe_unserialize ( $option );
2005-03-29 07:34:30 +02:00
}
2008-10-02 03:03:26 +02:00
/**
2016-07-05 00:45:29 +02:00
* Filters for content to remove unnecessary slashes .
2008-10-02 03:03:26 +02:00
*
2010-12-01 20:24:38 +01:00
* @ since 1.5 . 0
2008-10-02 03:03:26 +02:00
*
2015-01-19 10:15:22 +01:00
* @ param string $content The content to modify .
* @ return string The de - slashed content .
2008-10-02 03:03:26 +02:00
*/
2017-12-01 00:11:00 +01:00
function deslash ( $content ) {
2006-11-19 08:56:05 +01:00
// Note: \\\ inside a regex denotes a single backslash.
2004-08-30 09:16:40 +02:00
2014-07-17 11:14:16 +02:00
/*
* Replace one or more backslashes followed by a single quote with
* a single quote .
*/
2017-12-01 00:11:00 +01:00
$content = preg_replace ( " / \\ \ +'/ " , " ' " , $content );
2004-08-30 09:16:40 +02:00
2014-07-17 11:14:16 +02:00
/*
* Replace one or more backslashes followed by a double quote with
* a double quote .
*/
2017-12-01 00:11:00 +01:00
$content = preg_replace ( '/\\\+"/' , '"' , $content );
2004-08-30 09:16:40 +02:00
2006-11-19 08:56:05 +01:00
// Replace one or more backslashes with one backslash.
2017-12-01 00:11:00 +01:00
$content = preg_replace ( '/\\\+/' , '\\' , $content );
2004-08-30 09:16:40 +02:00
2006-11-19 08:56:05 +01:00
return $content ;
2004-08-30 09:16:40 +02:00
}
2008-10-02 03:03:26 +02:00
/**
2015-01-19 10:15:22 +01:00
* Modifies the database based on specified SQL statements .
2008-10-02 03:03:26 +02:00
*
2015-01-19 10:15:22 +01:00
* Useful for creating new tables and updating existing tables to a new structure .
2008-10-02 03:03:26 +02:00
*
2010-12-01 20:24:38 +01:00
* @ since 1.5 . 0
Database: Ignore display width for integer data types in `dbDelta()` on MySQL 8.0.17 or later.
MySQL 8.0.17 deprecated the display width attribute for integer data types:
> As of MySQL 8.0.17, the `ZEROFILL` attribute is deprecated for numeric data types, as is the display width attribute for integer data types. You should expect support for `ZEROFILL` and display widths for integer data types to be removed in a future version of MySQL. Consider using an alternative means of producing the effect of these attributes. For example, applications can use the `LPAD()` function to zero-pad numbers up to the desired width, or they can store the formatted numbers in `CHAR` columns.
In practice, this means that display width is removed for integer types when creating a table:
* `BIGINT(20)` → `BIGINT`
* `INT(11)` → `INT`
* `MEDIUMINT(9)` → `MEDIUMINT`
* `SMALLINT(6)` → `SMALLINT`
* `TINYINT(4)` → `TINYINT`
Note: This only applies specifically to MySQL 8.0.17 or later. In MariaDB, display width for integer types is still available and expected.
This commit ensures that `dbDelta()`, which relies on the `DESCRIBE` SQL command to get the existing table structure and field types, when running on MySQL 8.0.17 or later, does not unnecessarily attempt to convert `BIGINT` fields back to `BIGINT(20)`, `INT` back to `INT(11)`, etc. When comparing the field type in the query with the existing field type, if display width is the only difference, it can be safely ignored to match MySQL behavior.
The change is covered by existing `dbDelta()` unit tests:
* A test for not altering `wp_get_db_schema()` queries on an existing install using MySQL 8.0.17+ now passes.
* More than twenty tests which previously failed on PHP 8.0.x + MariaDB due to incorrect expectations, caused by MariaDB version reporting not being consistent between PHP versions, now pass.
References:
* [https://dev.mysql.com/doc/refman/8.0/en/numeric-type-attributes.html MySQL: Nymeric Type Attributes]
* [https://mariadb.com/kb/en/data-types-numeric-data-types/ MariaDB: Numeric Data Types]
Follow-up to [1575], [18899], [37525], [47183], [47184].
Props SergeyBiryukov, pbearne, leewillis77, JavierCasares, desrosj, costdev, johnbillion.
Fixes #49364. See #51740.
Built from https://develop.svn.wordpress.org/trunk@53897
git-svn-id: http://core.svn.wordpress.org/trunk@53456 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-08-15 15:18:13 +02:00
* @ since 6.1 . 0 Ignores display width for integer data types on MySQL 8.0 . 17 or later ,
* to match MySQL behavior . Note : This does not affect MariaDB .
2008-10-02 03:03:26 +02:00
*
2019-08-04 03:12:56 +02:00
* @ global wpdb $wpdb WordPress database abstraction object .
2015-05-29 04:06:31 +02:00
*
2018-03-25 20:10:32 +02:00
* @ param string [] | string $queries Optional . The query to run . Can be multiple queries
* in an array , or a string of queries separated by
* semicolons . Default empty string .
* @ param bool $execute Optional . Whether or not to execute the query right away .
* Default true .
2015-01-19 10:15:22 +01:00
* @ return array Strings containing the results of the various update queries .
2008-10-02 03:03:26 +02:00
*/
2019-07-01 10:01:57 +02:00
function dbDelta ( $queries = '' , $execute = true ) { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
2004-08-30 09:16:40 +02:00
global $wpdb ;
2006-02-12 08:53:23 +01:00
2017-12-01 00:11:00 +01:00
if ( in_array ( $queries , array ( '' , 'all' , 'blog' , 'global' , 'ms_global' ), true ) ) {
$queries = wp_get_db_schema ( $queries );
}
2011-10-06 02:21:24 +02:00
2020-01-29 01:45:18 +01:00
// Separate individual queries into an array.
2017-12-01 00:11:00 +01:00
if ( ! is_array ( $queries ) ) {
2004-08-30 09:16:40 +02:00
$queries = explode ( ';' , $queries );
2012-01-05 22:22:44 +01:00
$queries = array_filter ( $queries );
2004-08-30 09:16:40 +02:00
}
2014-05-06 19:27:15 +02:00
/**
2016-05-22 20:01:30 +02:00
* Filters the dbDelta SQL queries .
2014-04-06 00:30:14 +02:00
*
* @ since 3.3 . 0
*
2018-03-25 20:10:32 +02:00
* @ param string [] $queries An array of dbDelta SQL queries .
2014-04-06 00:30:14 +02:00
*/
2011-08-11 06:42:59 +02:00
$queries = apply_filters ( 'dbdelta_queries' , $queries );
2006-02-12 08:53:23 +01:00
2020-01-29 01:45:18 +01:00
$cqueries = array (); // Creation queries.
$iqueries = array (); // Insertion queries.
2004-08-30 09:16:40 +02:00
$for_update = array ();
2006-02-12 08:53:23 +01:00
Coding Standards: Remove an empty `else` statement in `dbDelta()`.
Use `continue` to help separate each case for better readability, instead of having a wall of `if`/`elseif`.
Includes simplifying a similar fragment in `make_site_theme_from_default()`.
Follow-up to [1575], [2037], [2040], [2044], [2346], [7999], [14080], [14485].
Props costdev, krunal265, hellofromTonya, brookedot, SergeyBiryukov.
Fixes #56982.
Built from https://develop.svn.wordpress.org/trunk@55688
git-svn-id: http://core.svn.wordpress.org/trunk@55200 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-04-26 17:10:23 +02:00
// Create a tablename index for an array ($cqueries) of recognized query types.
2017-12-01 00:11:00 +01:00
foreach ( $queries as $qry ) {
if ( preg_match ( '|CREATE TABLE ([^ ]*)|' , $qry , $matches ) ) {
2012-05-02 23:19:37 +02:00
$cqueries [ trim ( $matches [ 1 ], '`' ) ] = $qry ;
2017-12-01 00:11:00 +01:00
$for_update [ $matches [ 1 ] ] = 'Created table ' . $matches [ 1 ];
Coding Standards: Remove an empty `else` statement in `dbDelta()`.
Use `continue` to help separate each case for better readability, instead of having a wall of `if`/`elseif`.
Includes simplifying a similar fragment in `make_site_theme_from_default()`.
Follow-up to [1575], [2037], [2040], [2044], [2346], [7999], [14080], [14485].
Props costdev, krunal265, hellofromTonya, brookedot, SergeyBiryukov.
Fixes #56982.
Built from https://develop.svn.wordpress.org/trunk@55688
git-svn-id: http://core.svn.wordpress.org/trunk@55200 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-04-26 17:10:23 +02:00
continue ;
}
if ( preg_match ( '|CREATE DATABASE ([^ ]*)|' , $qry , $matches ) ) {
2015-01-08 08:05:25 +01:00
array_unshift ( $cqueries , $qry );
Coding Standards: Remove an empty `else` statement in `dbDelta()`.
Use `continue` to help separate each case for better readability, instead of having a wall of `if`/`elseif`.
Includes simplifying a similar fragment in `make_site_theme_from_default()`.
Follow-up to [1575], [2037], [2040], [2044], [2346], [7999], [14080], [14485].
Props costdev, krunal265, hellofromTonya, brookedot, SergeyBiryukov.
Fixes #56982.
Built from https://develop.svn.wordpress.org/trunk@55688
git-svn-id: http://core.svn.wordpress.org/trunk@55200 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-04-26 17:10:23 +02:00
continue ;
}
if ( preg_match ( '|INSERT INTO ([^ ]*)|' , $qry , $matches ) ) {
2004-08-30 09:16:40 +02:00
$iqueries [] = $qry ;
Coding Standards: Remove an empty `else` statement in `dbDelta()`.
Use `continue` to help separate each case for better readability, instead of having a wall of `if`/`elseif`.
Includes simplifying a similar fragment in `make_site_theme_from_default()`.
Follow-up to [1575], [2037], [2040], [2044], [2346], [7999], [14080], [14485].
Props costdev, krunal265, hellofromTonya, brookedot, SergeyBiryukov.
Fixes #56982.
Built from https://develop.svn.wordpress.org/trunk@55688
git-svn-id: http://core.svn.wordpress.org/trunk@55200 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-04-26 17:10:23 +02:00
continue ;
}
if ( preg_match ( '|UPDATE ([^ ]*)|' , $qry , $matches ) ) {
2004-08-30 09:16:40 +02:00
$iqueries [] = $qry ;
Coding Standards: Remove an empty `else` statement in `dbDelta()`.
Use `continue` to help separate each case for better readability, instead of having a wall of `if`/`elseif`.
Includes simplifying a similar fragment in `make_site_theme_from_default()`.
Follow-up to [1575], [2037], [2040], [2044], [2346], [7999], [14080], [14485].
Props costdev, krunal265, hellofromTonya, brookedot, SergeyBiryukov.
Fixes #56982.
Built from https://develop.svn.wordpress.org/trunk@55688
git-svn-id: http://core.svn.wordpress.org/trunk@55200 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-04-26 17:10:23 +02:00
continue ;
2004-08-30 09:16:40 +02:00
}
2006-02-12 08:53:23 +01:00
}
2014-05-06 19:27:15 +02:00
/**
2016-05-22 20:01:30 +02:00
* Filters the dbDelta SQL queries for creating tables and / or databases .
2014-04-06 00:30:14 +02:00
*
* Queries filterable via this hook contain " CREATE TABLE " or " CREATE DATABASE " .
2014-05-06 19:27:15 +02:00
*
2014-04-06 00:30:14 +02:00
* @ since 3.3 . 0
*
2018-03-25 20:10:32 +02:00
* @ param string [] $cqueries An array of dbDelta create SQL queries .
2014-04-06 00:30:14 +02:00
*/
2011-08-11 06:42:59 +02:00
$cqueries = apply_filters ( 'dbdelta_create_queries' , $cqueries );
2014-04-06 00:30:14 +02:00
2014-05-06 19:27:15 +02:00
/**
2016-05-22 20:01:30 +02:00
* Filters the dbDelta SQL queries for inserting or updating .
2014-04-06 00:30:14 +02:00
*
* Queries filterable via this hook contain " INSERT INTO " or " UPDATE " .
2014-05-06 19:27:15 +02:00
*
2014-04-06 00:30:14 +02:00
* @ since 3.3 . 0
*
2018-03-25 20:10:32 +02:00
* @ param string [] $iqueries An array of dbDelta insert or update SQL queries .
2014-04-06 00:30:14 +02:00
*/
2011-08-11 06:42:59 +02:00
$iqueries = apply_filters ( 'dbdelta_insert_queries' , $iqueries );
2004-08-30 09:16:40 +02:00
2016-05-23 10:36:28 +02:00
$text_fields = array ( 'tinytext' , 'text' , 'mediumtext' , 'longtext' );
$blob_fields = array ( 'tinyblob' , 'blob' , 'mediumblob' , 'longblob' );
Database: Ignore display width for integer data types in `dbDelta()` on MySQL 8.0.17 or later.
MySQL 8.0.17 deprecated the display width attribute for integer data types:
> As of MySQL 8.0.17, the `ZEROFILL` attribute is deprecated for numeric data types, as is the display width attribute for integer data types. You should expect support for `ZEROFILL` and display widths for integer data types to be removed in a future version of MySQL. Consider using an alternative means of producing the effect of these attributes. For example, applications can use the `LPAD()` function to zero-pad numbers up to the desired width, or they can store the formatted numbers in `CHAR` columns.
In practice, this means that display width is removed for integer types when creating a table:
* `BIGINT(20)` → `BIGINT`
* `INT(11)` → `INT`
* `MEDIUMINT(9)` → `MEDIUMINT`
* `SMALLINT(6)` → `SMALLINT`
* `TINYINT(4)` → `TINYINT`
Note: This only applies specifically to MySQL 8.0.17 or later. In MariaDB, display width for integer types is still available and expected.
This commit ensures that `dbDelta()`, which relies on the `DESCRIBE` SQL command to get the existing table structure and field types, when running on MySQL 8.0.17 or later, does not unnecessarily attempt to convert `BIGINT` fields back to `BIGINT(20)`, `INT` back to `INT(11)`, etc. When comparing the field type in the query with the existing field type, if display width is the only difference, it can be safely ignored to match MySQL behavior.
The change is covered by existing `dbDelta()` unit tests:
* A test for not altering `wp_get_db_schema()` queries on an existing install using MySQL 8.0.17+ now passes.
* More than twenty tests which previously failed on PHP 8.0.x + MariaDB due to incorrect expectations, caused by MariaDB version reporting not being consistent between PHP versions, now pass.
References:
* [https://dev.mysql.com/doc/refman/8.0/en/numeric-type-attributes.html MySQL: Nymeric Type Attributes]
* [https://mariadb.com/kb/en/data-types-numeric-data-types/ MariaDB: Numeric Data Types]
Follow-up to [1575], [18899], [37525], [47183], [47184].
Props SergeyBiryukov, pbearne, leewillis77, JavierCasares, desrosj, costdev, johnbillion.
Fixes #49364. See #51740.
Built from https://develop.svn.wordpress.org/trunk@53897
git-svn-id: http://core.svn.wordpress.org/trunk@53456 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-08-15 15:18:13 +02:00
$int_fields = array ( 'tinyint' , 'smallint' , 'mediumint' , 'int' , 'integer' , 'bigint' );
$global_tables = $wpdb -> tables ( 'global' );
$db_version = $wpdb -> db_version ();
$db_server_info = $wpdb -> db_server_info ();
2016-05-23 10:36:28 +02:00
2011-10-22 00:35:33 +02:00
foreach ( $cqueries as $table => $qry ) {
2015-07-03 06:34:24 +02:00
// Upgrade global tables only for the main site. Don't upgrade at all if conditions are not optimal.
2020-04-05 05:02:11 +02:00
if ( in_array ( $table , $global_tables , true ) && ! wp_should_upgrade_global_tables () ) {
2013-12-03 18:44:10 +01:00
unset ( $cqueries [ $table ], $for_update [ $table ] );
2011-10-22 00:35:33 +02:00
continue ;
2013-12-03 18:44:10 +01:00
}
2011-10-22 00:35:33 +02:00
2020-01-29 01:45:18 +01:00
// Fetch the table column structure from the database.
2017-12-01 00:11:00 +01:00
$suppress = $wpdb -> suppress_errors ();
$tablefields = $wpdb -> get_results ( " DESCRIBE { $table } ; " );
2013-11-18 21:45:11 +01:00
$wpdb -> suppress_errors ( $suppress );
2011-10-22 00:35:33 +02:00
2017-12-01 00:11:00 +01:00
if ( ! $tablefields ) {
2011-10-22 00:35:33 +02:00
continue ;
2017-12-01 00:11:00 +01:00
}
2010-07-07 15:55:14 +02:00
2014-07-17 11:14:16 +02:00
// Clear the field and index arrays.
2019-07-01 14:52:01 +02:00
$cfields = array ();
$indices = array ();
$indices_without_subparts = array ();
2014-07-17 11:14:16 +02:00
// Get all of the field names in the query from between the parentheses.
2017-12-01 00:11:00 +01:00
preg_match ( '|\((.*)\)|ms' , $qry , $match2 );
$qryline = trim ( $match2 [ 1 ] );
2011-10-22 00:40:30 +02:00
2014-07-17 11:14:16 +02:00
// Separate field lines into an array.
2017-12-01 00:11:00 +01:00
$flds = explode ( " \n " , $qryline );
2011-10-22 00:40:30 +02:00
2014-07-17 11:14:16 +02:00
// For every field line specified in the query.
Database: Normalize index definitions in `dbDelta()`.
`dbDelta()` compares the index definitions against the result of `SHOW INDEX FROM $table_name`. This requires a specific format so indices are not unnecessarily re-created. This format wasn't ensured, until now.
* Parse the raw index definition to extract the type, name and columns so a normalized definition can be built (#20263, #34873).
* Standardize on uppercase types (#34871) and on 'KEY'. 'INDEX' is only a synonym for 'KEY'.
* Escape index names with backticks (#20263).
* Normalize columns: Ignore ASC and DESC definitions (#34959), remove whitespaces (#34869) and escape column names with backticks (#20263).
* Add backticks to all index change queries (#20263).
Props ocean90, pento, kurtpayne.
Fixes #20263, #34869, #34871, #34873, #34959.
Built from https://develop.svn.wordpress.org/trunk@37583
git-svn-id: http://core.svn.wordpress.org/trunk@37551 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-05-27 13:57:30 +02:00
foreach ( $flds as $fld ) {
$fld = trim ( $fld , " \t \n \r \0 \x0B , " ); // Default trim characters, plus ','.
2014-07-17 11:14:16 +02:00
// Extract the field name.
Database: Normalize index definitions in `dbDelta()`.
`dbDelta()` compares the index definitions against the result of `SHOW INDEX FROM $table_name`. This requires a specific format so indices are not unnecessarily re-created. This format wasn't ensured, until now.
* Parse the raw index definition to extract the type, name and columns so a normalized definition can be built (#20263, #34873).
* Standardize on uppercase types (#34871) and on 'KEY'. 'INDEX' is only a synonym for 'KEY'.
* Escape index names with backticks (#20263).
* Normalize columns: Ignore ASC and DESC definitions (#34959), remove whitespaces (#34869) and escape column names with backticks (#20263).
* Add backticks to all index change queries (#20263).
Props ocean90, pento, kurtpayne.
Fixes #20263, #34869, #34871, #34873, #34959.
Built from https://develop.svn.wordpress.org/trunk@37583
git-svn-id: http://core.svn.wordpress.org/trunk@37551 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-05-27 13:57:30 +02:00
preg_match ( '|^([^ ]*)|' , $fld , $fvals );
2017-12-01 00:11:00 +01:00
$fieldname = trim ( $fvals [ 1 ], '`' );
2016-05-23 16:58:27 +02:00
$fieldname_lowercased = strtolower ( $fieldname );
2011-10-22 00:40:30 +02:00
2014-07-17 11:14:16 +02:00
// Verify the found field name.
2011-10-22 00:40:30 +02:00
$validfield = true ;
2016-05-23 16:58:27 +02:00
switch ( $fieldname_lowercased ) {
case '' :
case 'primary' :
case 'index' :
case 'fulltext' :
case 'unique' :
case 'key' :
2016-05-26 06:59:27 +02:00
case 'spatial' :
2016-05-23 16:58:27 +02:00
$validfield = false ;
Database: Normalize index definitions in `dbDelta()`.
`dbDelta()` compares the index definitions against the result of `SHOW INDEX FROM $table_name`. This requires a specific format so indices are not unnecessarily re-created. This format wasn't ensured, until now.
* Parse the raw index definition to extract the type, name and columns so a normalized definition can be built (#20263, #34873).
* Standardize on uppercase types (#34871) and on 'KEY'. 'INDEX' is only a synonym for 'KEY'.
* Escape index names with backticks (#20263).
* Normalize columns: Ignore ASC and DESC definitions (#34959), remove whitespaces (#34869) and escape column names with backticks (#20263).
* Add backticks to all index change queries (#20263).
Props ocean90, pento, kurtpayne.
Fixes #20263, #34869, #34871, #34873, #34959.
Built from https://develop.svn.wordpress.org/trunk@37583
git-svn-id: http://core.svn.wordpress.org/trunk@37551 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-05-27 13:57:30 +02:00
/*
* Normalize the index definition .
*
* This is done so the definition can be compared against the result of a
* `SHOW INDEX FROM $table_name` query which returns the current table
* index information .
*/
// Extract type, name and columns from the definition.
preg_match (
2023-11-04 01:26:20 +01:00
' /^
( ? P < index_type > # 1) Type of the index.
PRIMARY\s + KEY | ( ? : UNIQUE | FULLTEXT | SPATIAL ) \s + ( ? : KEY | INDEX ) | KEY | INDEX
)
\s + # Followed by at least one white space character.
( ? : # Name of the index. Optional if type is PRIMARY KEY.
` ? # Name can be escaped with a backtick.
( ? P < index_name > # 2) Name of the index.
( ? : [ 0 - 9 a - zA - Z $_ - ] | [ \xC2 - \xDF ][ \x80 - \xBF ]) +
)
` ? # Name can be escaped with a backtick.
\s + # Followed by at least one white space character.
) *
\ ( # Opening bracket for the columns.
( ? P < index_columns >
.+ ? # 3) Column names, index prefixes, and orders.
)
\ ) # Closing bracket for the columns.
$ / imx ' ,
Database: Normalize index definitions in `dbDelta()`.
`dbDelta()` compares the index definitions against the result of `SHOW INDEX FROM $table_name`. This requires a specific format so indices are not unnecessarily re-created. This format wasn't ensured, until now.
* Parse the raw index definition to extract the type, name and columns so a normalized definition can be built (#20263, #34873).
* Standardize on uppercase types (#34871) and on 'KEY'. 'INDEX' is only a synonym for 'KEY'.
* Escape index names with backticks (#20263).
* Normalize columns: Ignore ASC and DESC definitions (#34959), remove whitespaces (#34869) and escape column names with backticks (#20263).
* Add backticks to all index change queries (#20263).
Props ocean90, pento, kurtpayne.
Fixes #20263, #34869, #34871, #34873, #34959.
Built from https://develop.svn.wordpress.org/trunk@37583
git-svn-id: http://core.svn.wordpress.org/trunk@37551 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-05-27 13:57:30 +02:00
$fld ,
$index_matches
);
// Uppercase the index type and normalize space characters.
$index_type = strtoupper ( preg_replace ( '/\s+/' , ' ' , trim ( $index_matches [ 'index_type' ] ) ) );
// 'INDEX' is a synonym for 'KEY', standardize on 'KEY'.
$index_type = str_replace ( 'INDEX' , 'KEY' , $index_type );
// Escape the index name with backticks. An index for a primary key has no name.
2016-09-12 07:09:30 +02:00
$index_name = ( 'PRIMARY KEY' === $index_type ) ? '' : '`' . strtolower ( $index_matches [ 'index_name' ] ) . '`' ;
Database: Normalize index definitions in `dbDelta()`.
`dbDelta()` compares the index definitions against the result of `SHOW INDEX FROM $table_name`. This requires a specific format so indices are not unnecessarily re-created. This format wasn't ensured, until now.
* Parse the raw index definition to extract the type, name and columns so a normalized definition can be built (#20263, #34873).
* Standardize on uppercase types (#34871) and on 'KEY'. 'INDEX' is only a synonym for 'KEY'.
* Escape index names with backticks (#20263).
* Normalize columns: Ignore ASC and DESC definitions (#34959), remove whitespaces (#34869) and escape column names with backticks (#20263).
* Add backticks to all index change queries (#20263).
Props ocean90, pento, kurtpayne.
Fixes #20263, #34869, #34871, #34873, #34959.
Built from https://develop.svn.wordpress.org/trunk@37583
git-svn-id: http://core.svn.wordpress.org/trunk@37551 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-05-27 13:57:30 +02:00
// Parse the columns. Multiple columns are separated by a comma.
2019-07-01 14:52:01 +02:00
$index_columns = array_map ( 'trim' , explode ( ',' , $index_matches [ 'index_columns' ] ) );
$index_columns_without_subparts = $index_columns ;
Database: Normalize index definitions in `dbDelta()`.
`dbDelta()` compares the index definitions against the result of `SHOW INDEX FROM $table_name`. This requires a specific format so indices are not unnecessarily re-created. This format wasn't ensured, until now.
* Parse the raw index definition to extract the type, name and columns so a normalized definition can be built (#20263, #34873).
* Standardize on uppercase types (#34871) and on 'KEY'. 'INDEX' is only a synonym for 'KEY'.
* Escape index names with backticks (#20263).
* Normalize columns: Ignore ASC and DESC definitions (#34959), remove whitespaces (#34869) and escape column names with backticks (#20263).
* Add backticks to all index change queries (#20263).
Props ocean90, pento, kurtpayne.
Fixes #20263, #34869, #34871, #34873, #34959.
Built from https://develop.svn.wordpress.org/trunk@37583
git-svn-id: http://core.svn.wordpress.org/trunk@37551 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-05-27 13:57:30 +02:00
// Normalize columns.
2017-01-17 05:01:42 +01:00
foreach ( $index_columns as $id => & $index_column ) {
Database: Normalize index definitions in `dbDelta()`.
`dbDelta()` compares the index definitions against the result of `SHOW INDEX FROM $table_name`. This requires a specific format so indices are not unnecessarily re-created. This format wasn't ensured, until now.
* Parse the raw index definition to extract the type, name and columns so a normalized definition can be built (#20263, #34873).
* Standardize on uppercase types (#34871) and on 'KEY'. 'INDEX' is only a synonym for 'KEY'.
* Escape index names with backticks (#20263).
* Normalize columns: Ignore ASC and DESC definitions (#34959), remove whitespaces (#34869) and escape column names with backticks (#20263).
* Add backticks to all index change queries (#20263).
Props ocean90, pento, kurtpayne.
Fixes #20263, #34869, #34871, #34873, #34959.
Built from https://develop.svn.wordpress.org/trunk@37583
git-svn-id: http://core.svn.wordpress.org/trunk@37551 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-05-27 13:57:30 +02:00
// Extract column name and number of indexed characters (sub_part).
preg_match (
2023-11-04 01:26:20 +01:00
' /
` ? # Name can be escaped with a backtick.
( ? P < column_name > # 1) Name of the column.
( ? : [ 0 - 9 a - zA - Z $_ - ] | [ \xC2 - \xDF ][ \x80 - \xBF ]) +
)
` ? # Name can be escaped with a backtick.
( ? : # Optional sub part.
\s * # Optional white space character between name and opening bracket.
\ ( # Opening bracket for the sub part.
\s * # Optional white space character after opening bracket.
( ? P < sub_part >
\d + # 2) Number of indexed characters.
)
\s * # Optional white space character before closing bracket.
\ ) # Closing bracket for the sub part.
) ?
/ x ' ,
Database: Normalize index definitions in `dbDelta()`.
`dbDelta()` compares the index definitions against the result of `SHOW INDEX FROM $table_name`. This requires a specific format so indices are not unnecessarily re-created. This format wasn't ensured, until now.
* Parse the raw index definition to extract the type, name and columns so a normalized definition can be built (#20263, #34873).
* Standardize on uppercase types (#34871) and on 'KEY'. 'INDEX' is only a synonym for 'KEY'.
* Escape index names with backticks (#20263).
* Normalize columns: Ignore ASC and DESC definitions (#34959), remove whitespaces (#34869) and escape column names with backticks (#20263).
* Add backticks to all index change queries (#20263).
Props ocean90, pento, kurtpayne.
Fixes #20263, #34869, #34871, #34873, #34959.
Built from https://develop.svn.wordpress.org/trunk@37583
git-svn-id: http://core.svn.wordpress.org/trunk@37551 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-05-27 13:57:30 +02:00
$index_column ,
$index_column_matches
);
// Escape the column name with backticks.
$index_column = '`' . $index_column_matches [ 'column_name' ] . '`' ;
2017-01-17 05:01:42 +01:00
// We don't need to add the subpart to $index_columns_without_subparts
$index_columns_without_subparts [ $id ] = $index_column ;
Database: Normalize index definitions in `dbDelta()`.
`dbDelta()` compares the index definitions against the result of `SHOW INDEX FROM $table_name`. This requires a specific format so indices are not unnecessarily re-created. This format wasn't ensured, until now.
* Parse the raw index definition to extract the type, name and columns so a normalized definition can be built (#20263, #34873).
* Standardize on uppercase types (#34871) and on 'KEY'. 'INDEX' is only a synonym for 'KEY'.
* Escape index names with backticks (#20263).
* Normalize columns: Ignore ASC and DESC definitions (#34959), remove whitespaces (#34869) and escape column names with backticks (#20263).
* Add backticks to all index change queries (#20263).
Props ocean90, pento, kurtpayne.
Fixes #20263, #34869, #34871, #34873, #34959.
Built from https://develop.svn.wordpress.org/trunk@37583
git-svn-id: http://core.svn.wordpress.org/trunk@37551 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-05-27 13:57:30 +02:00
// Append the optional sup part with the number of indexed characters.
if ( isset ( $index_column_matches [ 'sub_part' ] ) ) {
$index_column .= '(' . $index_column_matches [ 'sub_part' ] . ')' ;
}
}
// Build the normalized index definition and add it to the list of indices.
2017-12-01 00:11:00 +01:00
$indices [] = " { $index_type } { $index_name } ( " . implode ( ',' , $index_columns ) . ')' ;
$indices_without_subparts [] = " { $index_type } { $index_name } ( " . implode ( ',' , $index_columns_without_subparts ) . ')' ;
Database: Normalize index definitions in `dbDelta()`.
`dbDelta()` compares the index definitions against the result of `SHOW INDEX FROM $table_name`. This requires a specific format so indices are not unnecessarily re-created. This format wasn't ensured, until now.
* Parse the raw index definition to extract the type, name and columns so a normalized definition can be built (#20263, #34873).
* Standardize on uppercase types (#34871) and on 'KEY'. 'INDEX' is only a synonym for 'KEY'.
* Escape index names with backticks (#20263).
* Normalize columns: Ignore ASC and DESC definitions (#34959), remove whitespaces (#34869) and escape column names with backticks (#20263).
* Add backticks to all index change queries (#20263).
Props ocean90, pento, kurtpayne.
Fixes #20263, #34869, #34871, #34873, #34959.
Built from https://develop.svn.wordpress.org/trunk@37583
git-svn-id: http://core.svn.wordpress.org/trunk@37551 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-05-27 13:57:30 +02:00
// Destroy no longer needed variables.
2017-01-17 05:01:42 +01:00
unset ( $index_column , $index_column_matches , $index_matches , $index_type , $index_name , $index_columns , $index_columns_without_subparts );
Database: Normalize index definitions in `dbDelta()`.
`dbDelta()` compares the index definitions against the result of `SHOW INDEX FROM $table_name`. This requires a specific format so indices are not unnecessarily re-created. This format wasn't ensured, until now.
* Parse the raw index definition to extract the type, name and columns so a normalized definition can be built (#20263, #34873).
* Standardize on uppercase types (#34871) and on 'KEY'. 'INDEX' is only a synonym for 'KEY'.
* Escape index names with backticks (#20263).
* Normalize columns: Ignore ASC and DESC definitions (#34959), remove whitespaces (#34869) and escape column names with backticks (#20263).
* Add backticks to all index change queries (#20263).
Props ocean90, pento, kurtpayne.
Fixes #20263, #34869, #34871, #34873, #34959.
Built from https://develop.svn.wordpress.org/trunk@37583
git-svn-id: http://core.svn.wordpress.org/trunk@37551 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-05-27 13:57:30 +02:00
2016-05-23 16:58:27 +02:00
break ;
2011-10-22 00:40:30 +02:00
}
2006-02-12 08:53:23 +01:00
2014-07-17 11:14:16 +02:00
// If it's a valid field, add it to the field array.
2016-05-23 16:58:27 +02:00
if ( $validfield ) {
Database: Normalize index definitions in `dbDelta()`.
`dbDelta()` compares the index definitions against the result of `SHOW INDEX FROM $table_name`. This requires a specific format so indices are not unnecessarily re-created. This format wasn't ensured, until now.
* Parse the raw index definition to extract the type, name and columns so a normalized definition can be built (#20263, #34873).
* Standardize on uppercase types (#34871) and on 'KEY'. 'INDEX' is only a synonym for 'KEY'.
* Escape index names with backticks (#20263).
* Normalize columns: Ignore ASC and DESC definitions (#34959), remove whitespaces (#34869) and escape column names with backticks (#20263).
* Add backticks to all index change queries (#20263).
Props ocean90, pento, kurtpayne.
Fixes #20263, #34869, #34871, #34873, #34959.
Built from https://develop.svn.wordpress.org/trunk@37583
git-svn-id: http://core.svn.wordpress.org/trunk@37551 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-05-27 13:57:30 +02:00
$cfields [ $fieldname_lowercased ] = $fld ;
2011-10-22 00:40:30 +02:00
}
}
2014-07-17 11:14:16 +02:00
// For every field in the table.
2016-05-23 16:58:27 +02:00
foreach ( $tablefields as $tablefield ) {
$tablefield_field_lowercased = strtolower ( $tablefield -> Field );
2017-12-01 00:11:00 +01:00
$tablefield_type_lowercased = strtolower ( $tablefield -> Type );
2014-07-17 11:14:16 +02:00
Database: Ignore display width for integer data types in `dbDelta()` on MySQL 8.0.17 or later.
MySQL 8.0.17 deprecated the display width attribute for integer data types:
> As of MySQL 8.0.17, the `ZEROFILL` attribute is deprecated for numeric data types, as is the display width attribute for integer data types. You should expect support for `ZEROFILL` and display widths for integer data types to be removed in a future version of MySQL. Consider using an alternative means of producing the effect of these attributes. For example, applications can use the `LPAD()` function to zero-pad numbers up to the desired width, or they can store the formatted numbers in `CHAR` columns.
In practice, this means that display width is removed for integer types when creating a table:
* `BIGINT(20)` → `BIGINT`
* `INT(11)` → `INT`
* `MEDIUMINT(9)` → `MEDIUMINT`
* `SMALLINT(6)` → `SMALLINT`
* `TINYINT(4)` → `TINYINT`
Note: This only applies specifically to MySQL 8.0.17 or later. In MariaDB, display width for integer types is still available and expected.
This commit ensures that `dbDelta()`, which relies on the `DESCRIBE` SQL command to get the existing table structure and field types, when running on MySQL 8.0.17 or later, does not unnecessarily attempt to convert `BIGINT` fields back to `BIGINT(20)`, `INT` back to `INT(11)`, etc. When comparing the field type in the query with the existing field type, if display width is the only difference, it can be safely ignored to match MySQL behavior.
The change is covered by existing `dbDelta()` unit tests:
* A test for not altering `wp_get_db_schema()` queries on an existing install using MySQL 8.0.17+ now passes.
* More than twenty tests which previously failed on PHP 8.0.x + MariaDB due to incorrect expectations, caused by MariaDB version reporting not being consistent between PHP versions, now pass.
References:
* [https://dev.mysql.com/doc/refman/8.0/en/numeric-type-attributes.html MySQL: Nymeric Type Attributes]
* [https://mariadb.com/kb/en/data-types-numeric-data-types/ MariaDB: Numeric Data Types]
Follow-up to [1575], [18899], [37525], [47183], [47184].
Props SergeyBiryukov, pbearne, leewillis77, JavierCasares, desrosj, costdev, johnbillion.
Fixes #49364. See #51740.
Built from https://develop.svn.wordpress.org/trunk@53897
git-svn-id: http://core.svn.wordpress.org/trunk@53456 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-08-15 15:18:13 +02:00
$tablefield_type_without_parentheses = preg_replace (
'/'
. '(.+)' // Field type, e.g. `int`.
. '\(\d*\)' // Display width.
. '(.*)' // Optional attributes, e.g. `unsigned`.
. '/' ,
'$1$2' ,
$tablefield_type_lowercased
);
// Get the type without attributes, e.g. `int`.
$tablefield_type_base = strtok ( $tablefield_type_without_parentheses , ' ' );
2020-01-29 01:45:18 +01:00
// If the table field exists in the field array...
2016-05-23 16:58:27 +02:00
if ( array_key_exists ( $tablefield_field_lowercased , $cfields ) ) {
2014-07-17 11:14:16 +02:00
// Get the field type from the query.
2016-05-23 20:12:28 +02:00
preg_match ( '|`?' . $tablefield -> Field . '`? ([^ ]*( unsigned)?)|i' , $cfields [ $tablefield_field_lowercased ], $matches );
2017-12-01 00:11:00 +01:00
$fieldtype = $matches [ 1 ];
2016-05-23 16:58:27 +02:00
$fieldtype_lowercased = strtolower ( $fieldtype );
2011-10-22 00:40:30 +02:00
Database: Ignore display width for integer data types in `dbDelta()` on MySQL 8.0.17 or later.
MySQL 8.0.17 deprecated the display width attribute for integer data types:
> As of MySQL 8.0.17, the `ZEROFILL` attribute is deprecated for numeric data types, as is the display width attribute for integer data types. You should expect support for `ZEROFILL` and display widths for integer data types to be removed in a future version of MySQL. Consider using an alternative means of producing the effect of these attributes. For example, applications can use the `LPAD()` function to zero-pad numbers up to the desired width, or they can store the formatted numbers in `CHAR` columns.
In practice, this means that display width is removed for integer types when creating a table:
* `BIGINT(20)` → `BIGINT`
* `INT(11)` → `INT`
* `MEDIUMINT(9)` → `MEDIUMINT`
* `SMALLINT(6)` → `SMALLINT`
* `TINYINT(4)` → `TINYINT`
Note: This only applies specifically to MySQL 8.0.17 or later. In MariaDB, display width for integer types is still available and expected.
This commit ensures that `dbDelta()`, which relies on the `DESCRIBE` SQL command to get the existing table structure and field types, when running on MySQL 8.0.17 or later, does not unnecessarily attempt to convert `BIGINT` fields back to `BIGINT(20)`, `INT` back to `INT(11)`, etc. When comparing the field type in the query with the existing field type, if display width is the only difference, it can be safely ignored to match MySQL behavior.
The change is covered by existing `dbDelta()` unit tests:
* A test for not altering `wp_get_db_schema()` queries on an existing install using MySQL 8.0.17+ now passes.
* More than twenty tests which previously failed on PHP 8.0.x + MariaDB due to incorrect expectations, caused by MariaDB version reporting not being consistent between PHP versions, now pass.
References:
* [https://dev.mysql.com/doc/refman/8.0/en/numeric-type-attributes.html MySQL: Nymeric Type Attributes]
* [https://mariadb.com/kb/en/data-types-numeric-data-types/ MariaDB: Numeric Data Types]
Follow-up to [1575], [18899], [37525], [47183], [47184].
Props SergeyBiryukov, pbearne, leewillis77, JavierCasares, desrosj, costdev, johnbillion.
Fixes #49364. See #51740.
Built from https://develop.svn.wordpress.org/trunk@53897
git-svn-id: http://core.svn.wordpress.org/trunk@53456 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-08-15 15:18:13 +02:00
$fieldtype_without_parentheses = preg_replace (
'/'
. '(.+)' // Field type, e.g. `int`.
. '\(\d*\)' // Display width.
. '(.*)' // Optional attributes, e.g. `unsigned`.
. '/' ,
'$1$2' ,
$fieldtype_lowercased
);
// Get the type without attributes, e.g. `int`.
$fieldtype_base = strtok ( $fieldtype_without_parentheses , ' ' );
2011-10-22 00:40:30 +02:00
// Is actual field type different from the field type in query?
2017-12-01 00:11:00 +01:00
if ( $tablefield -> Type != $fieldtype ) {
2016-05-23 10:36:28 +02:00
$do_change = true ;
2020-04-05 05:02:11 +02:00
if ( in_array ( $fieldtype_lowercased , $text_fields , true ) && in_array ( $tablefield_type_lowercased , $text_fields , true ) ) {
if ( array_search ( $fieldtype_lowercased , $text_fields , true ) < array_search ( $tablefield_type_lowercased , $text_fields , true ) ) {
2016-05-23 10:36:28 +02:00
$do_change = false ;
}
}
2020-04-05 05:02:11 +02:00
if ( in_array ( $fieldtype_lowercased , $blob_fields , true ) && in_array ( $tablefield_type_lowercased , $blob_fields , true ) ) {
if ( array_search ( $fieldtype_lowercased , $blob_fields , true ) < array_search ( $tablefield_type_lowercased , $blob_fields , true ) ) {
2016-05-23 10:36:28 +02:00
$do_change = false ;
}
}
Database: Ignore display width for integer data types in `dbDelta()` on MySQL 8.0.17 or later.
MySQL 8.0.17 deprecated the display width attribute for integer data types:
> As of MySQL 8.0.17, the `ZEROFILL` attribute is deprecated for numeric data types, as is the display width attribute for integer data types. You should expect support for `ZEROFILL` and display widths for integer data types to be removed in a future version of MySQL. Consider using an alternative means of producing the effect of these attributes. For example, applications can use the `LPAD()` function to zero-pad numbers up to the desired width, or they can store the formatted numbers in `CHAR` columns.
In practice, this means that display width is removed for integer types when creating a table:
* `BIGINT(20)` → `BIGINT`
* `INT(11)` → `INT`
* `MEDIUMINT(9)` → `MEDIUMINT`
* `SMALLINT(6)` → `SMALLINT`
* `TINYINT(4)` → `TINYINT`
Note: This only applies specifically to MySQL 8.0.17 or later. In MariaDB, display width for integer types is still available and expected.
This commit ensures that `dbDelta()`, which relies on the `DESCRIBE` SQL command to get the existing table structure and field types, when running on MySQL 8.0.17 or later, does not unnecessarily attempt to convert `BIGINT` fields back to `BIGINT(20)`, `INT` back to `INT(11)`, etc. When comparing the field type in the query with the existing field type, if display width is the only difference, it can be safely ignored to match MySQL behavior.
The change is covered by existing `dbDelta()` unit tests:
* A test for not altering `wp_get_db_schema()` queries on an existing install using MySQL 8.0.17+ now passes.
* More than twenty tests which previously failed on PHP 8.0.x + MariaDB due to incorrect expectations, caused by MariaDB version reporting not being consistent between PHP versions, now pass.
References:
* [https://dev.mysql.com/doc/refman/8.0/en/numeric-type-attributes.html MySQL: Nymeric Type Attributes]
* [https://mariadb.com/kb/en/data-types-numeric-data-types/ MariaDB: Numeric Data Types]
Follow-up to [1575], [18899], [37525], [47183], [47184].
Props SergeyBiryukov, pbearne, leewillis77, JavierCasares, desrosj, costdev, johnbillion.
Fixes #49364. See #51740.
Built from https://develop.svn.wordpress.org/trunk@53897
git-svn-id: http://core.svn.wordpress.org/trunk@53456 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2022-08-15 15:18:13 +02:00
if ( in_array ( $fieldtype_base , $int_fields , true ) && in_array ( $tablefield_type_base , $int_fields , true )
&& $fieldtype_without_parentheses === $tablefield_type_without_parentheses
) {
/*
* MySQL 8.0 . 17 or later does not support display width for integer data types ,
* so if display width is the only difference , it can be safely ignored .
* Note : This is specific to MySQL and does not affect MariaDB .
*/
if ( version_compare ( $db_version , '8.0.17' , '>=' )
&& ! str_contains ( $db_server_info , 'MariaDB' )
) {
$do_change = false ;
}
}
2016-05-23 10:36:28 +02:00
if ( $do_change ) {
2016-05-23 16:58:27 +02:00
// Add a query to change the column type.
2020-01-29 01:45:18 +01:00
$cqueries [] = " ALTER TABLE { $table } CHANGE COLUMN ` { $tablefield -> Field } ` " . $cfields [ $tablefield_field_lowercased ];
2017-12-01 00:11:00 +01:00
$for_update [ $table . '.' . $tablefield -> Field ] = " Changed type of { $table } . { $tablefield -> Field } from { $tablefield -> Type } to { $fieldtype } " ;
2016-05-23 10:36:28 +02:00
}
2004-08-30 09:16:40 +02:00
}
2006-02-12 08:53:23 +01:00
2016-05-23 16:58:27 +02:00
// Get the default value from the array.
if ( preg_match ( " | DEFAULT '(.*?)'|i " , $cfields [ $tablefield_field_lowercased ], $matches ) ) {
2011-10-22 00:40:30 +02:00
$default_value = $matches [ 1 ];
2017-12-01 00:11:00 +01:00
if ( $tablefield -> Default != $default_value ) {
2011-10-22 00:40:30 +02:00
// Add a query to change the column's default value
2020-01-29 01:45:18 +01:00
$cqueries [] = " ALTER TABLE { $table } ALTER COLUMN ` { $tablefield -> Field } ` SET DEFAULT ' { $default_value } ' " ;
2017-12-01 00:11:00 +01:00
$for_update [ $table . '.' . $tablefield -> Field ] = " Changed default value of { $table } . { $tablefield -> Field } from { $tablefield -> Default } to { $default_value } " ;
2004-08-30 09:16:40 +02:00
}
}
2014-07-17 11:14:16 +02:00
// Remove the field from the array (so it's not added).
2016-05-23 16:58:27 +02:00
unset ( $cfields [ $tablefield_field_lowercased ] );
2011-10-22 00:40:30 +02:00
} else {
// This field exists in the table, but not in the creation queries?
}
}
2006-02-12 08:53:23 +01:00
2014-07-17 11:14:16 +02:00
// For every remaining field specified for the table.
2017-12-01 00:11:00 +01:00
foreach ( $cfields as $fieldname => $fielddef ) {
2014-07-17 11:14:16 +02:00
// Push a query line into $cqueries that adds the field to that table.
2020-01-29 01:45:18 +01:00
$cqueries [] = " ALTER TABLE { $table } ADD COLUMN $fielddef " ;
2017-12-01 00:11:00 +01:00
$for_update [ $table . '.' . $fieldname ] = 'Added column ' . $table . '.' . $fieldname ;
2011-10-22 00:40:30 +02:00
}
2006-02-12 08:53:23 +01:00
2014-07-17 11:14:16 +02:00
// Index stuff goes here. Fetch the table index structure from the database.
2017-12-01 00:11:00 +01:00
$tableindices = $wpdb -> get_results ( " SHOW INDEX FROM { $table } ; " );
2004-08-30 09:16:40 +02:00
2017-12-01 00:11:00 +01:00
if ( $tableindices ) {
2014-07-17 11:14:16 +02:00
// Clear the index array.
2014-12-20 23:47:22 +01:00
$index_ary = array ();
2011-10-22 00:40:30 +02:00
2014-07-17 11:14:16 +02:00
// For every index in the table.
2017-12-01 00:11:00 +01:00
foreach ( $tableindices as $tableindex ) {
2020-01-29 01:45:18 +01:00
$keyname = strtolower ( $tableindex -> Key_name );
2014-07-17 11:14:16 +02:00
// Add the index to the index data array.
2017-12-01 00:11:00 +01:00
$index_ary [ $keyname ][ 'columns' ][] = array (
'fieldname' => $tableindex -> Column_name ,
'subpart' => $tableindex -> Sub_part ,
);
2020-02-09 17:55:09 +01:00
$index_ary [ $keyname ][ 'unique' ] = ( 0 == $tableindex -> Non_unique ) ? true : false ;
2017-12-01 00:11:00 +01:00
$index_ary [ $keyname ][ 'index_type' ] = $tableindex -> Index_type ;
2011-10-22 00:40:30 +02:00
}
2004-08-30 09:16:40 +02:00
2014-07-17 11:14:16 +02:00
// For each actual index in the index array.
2017-12-01 00:11:00 +01:00
foreach ( $index_ary as $index_name => $index_data ) {
2014-07-17 11:14:16 +02:00
// Build a create string to compare to the query.
2011-10-22 00:40:30 +02:00
$index_string = '' ;
2020-02-09 17:55:09 +01:00
if ( 'primary' === $index_name ) {
2011-10-22 00:40:30 +02:00
$index_string .= 'PRIMARY ' ;
2015-01-08 08:05:25 +01:00
} elseif ( $index_data [ 'unique' ] ) {
2011-10-22 00:40:30 +02:00
$index_string .= 'UNIQUE ' ;
2015-11-02 00:10:25 +01:00
}
Coding Standards: Remove an empty `else` statement in `dbDelta()`.
Use `continue` to help separate each case for better readability, instead of having a wall of `if`/`elseif`.
Includes simplifying a similar fragment in `make_site_theme_from_default()`.
Follow-up to [1575], [2037], [2040], [2044], [2346], [7999], [14080], [14485].
Props costdev, krunal265, hellofromTonya, brookedot, SergeyBiryukov.
Fixes #56982.
Built from https://develop.svn.wordpress.org/trunk@55688
git-svn-id: http://core.svn.wordpress.org/trunk@55200 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-04-26 17:10:23 +02:00
2015-11-02 00:10:25 +01:00
if ( 'FULLTEXT' === strtoupper ( $index_data [ 'index_type' ] ) ) {
$index_string .= 'FULLTEXT ' ;
2011-10-22 00:40:30 +02:00
}
Coding Standards: Remove an empty `else` statement in `dbDelta()`.
Use `continue` to help separate each case for better readability, instead of having a wall of `if`/`elseif`.
Includes simplifying a similar fragment in `make_site_theme_from_default()`.
Follow-up to [1575], [2037], [2040], [2044], [2346], [7999], [14080], [14485].
Props costdev, krunal265, hellofromTonya, brookedot, SergeyBiryukov.
Fixes #56982.
Built from https://develop.svn.wordpress.org/trunk@55688
git-svn-id: http://core.svn.wordpress.org/trunk@55200 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-04-26 17:10:23 +02:00
2016-05-26 06:59:27 +02:00
if ( 'SPATIAL' === strtoupper ( $index_data [ 'index_type' ] ) ) {
$index_string .= 'SPATIAL ' ;
}
Coding Standards: Remove an empty `else` statement in `dbDelta()`.
Use `continue` to help separate each case for better readability, instead of having a wall of `if`/`elseif`.
Includes simplifying a similar fragment in `make_site_theme_from_default()`.
Follow-up to [1575], [2037], [2040], [2044], [2346], [7999], [14080], [14485].
Props costdev, krunal265, hellofromTonya, brookedot, SergeyBiryukov.
Fixes #56982.
Built from https://develop.svn.wordpress.org/trunk@55688
git-svn-id: http://core.svn.wordpress.org/trunk@55200 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-04-26 17:10:23 +02:00
2011-10-22 00:40:30 +02:00
$index_string .= 'KEY ' ;
2017-12-01 00:11:00 +01:00
if ( 'primary' !== $index_name ) {
Database: Normalize index definitions in `dbDelta()`.
`dbDelta()` compares the index definitions against the result of `SHOW INDEX FROM $table_name`. This requires a specific format so indices are not unnecessarily re-created. This format wasn't ensured, until now.
* Parse the raw index definition to extract the type, name and columns so a normalized definition can be built (#20263, #34873).
* Standardize on uppercase types (#34871) and on 'KEY'. 'INDEX' is only a synonym for 'KEY'.
* Escape index names with backticks (#20263).
* Normalize columns: Ignore ASC and DESC definitions (#34959), remove whitespaces (#34869) and escape column names with backticks (#20263).
* Add backticks to all index change queries (#20263).
Props ocean90, pento, kurtpayne.
Fixes #20263, #34869, #34871, #34873, #34959.
Built from https://develop.svn.wordpress.org/trunk@37583
git-svn-id: http://core.svn.wordpress.org/trunk@37551 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-05-27 13:57:30 +02:00
$index_string .= '`' . $index_name . '`' ;
2011-10-22 00:40:30 +02:00
}
Coding Standards: Remove an empty `else` statement in `dbDelta()`.
Use `continue` to help separate each case for better readability, instead of having a wall of `if`/`elseif`.
Includes simplifying a similar fragment in `make_site_theme_from_default()`.
Follow-up to [1575], [2037], [2040], [2044], [2346], [7999], [14080], [14485].
Props costdev, krunal265, hellofromTonya, brookedot, SergeyBiryukov.
Fixes #56982.
Built from https://develop.svn.wordpress.org/trunk@55688
git-svn-id: http://core.svn.wordpress.org/trunk@55200 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-04-26 17:10:23 +02:00
2011-10-22 00:40:30 +02:00
$index_columns = '' ;
2014-07-17 11:14:16 +02:00
// For each column in the index.
2017-12-01 00:11:00 +01:00
foreach ( $index_data [ 'columns' ] as $column_data ) {
2020-05-16 20:42:12 +02:00
if ( '' !== $index_columns ) {
Database: Normalize index definitions in `dbDelta()`.
`dbDelta()` compares the index definitions against the result of `SHOW INDEX FROM $table_name`. This requires a specific format so indices are not unnecessarily re-created. This format wasn't ensured, until now.
* Parse the raw index definition to extract the type, name and columns so a normalized definition can be built (#20263, #34873).
* Standardize on uppercase types (#34871) and on 'KEY'. 'INDEX' is only a synonym for 'KEY'.
* Escape index names with backticks (#20263).
* Normalize columns: Ignore ASC and DESC definitions (#34959), remove whitespaces (#34869) and escape column names with backticks (#20263).
* Add backticks to all index change queries (#20263).
Props ocean90, pento, kurtpayne.
Fixes #20263, #34869, #34871, #34873, #34959.
Built from https://develop.svn.wordpress.org/trunk@37583
git-svn-id: http://core.svn.wordpress.org/trunk@37551 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-05-27 13:57:30 +02:00
$index_columns .= ',' ;
}
2014-07-17 11:14:16 +02:00
// Add the field to the column list string.
Database: Normalize index definitions in `dbDelta()`.
`dbDelta()` compares the index definitions against the result of `SHOW INDEX FROM $table_name`. This requires a specific format so indices are not unnecessarily re-created. This format wasn't ensured, until now.
* Parse the raw index definition to extract the type, name and columns so a normalized definition can be built (#20263, #34873).
* Standardize on uppercase types (#34871) and on 'KEY'. 'INDEX' is only a synonym for 'KEY'.
* Escape index names with backticks (#20263).
* Normalize columns: Ignore ASC and DESC definitions (#34959), remove whitespaces (#34869) and escape column names with backticks (#20263).
* Add backticks to all index change queries (#20263).
Props ocean90, pento, kurtpayne.
Fixes #20263, #34869, #34871, #34873, #34959.
Built from https://develop.svn.wordpress.org/trunk@37583
git-svn-id: http://core.svn.wordpress.org/trunk@37551 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2016-05-27 13:57:30 +02:00
$index_columns .= '`' . $column_data [ 'fieldname' ] . '`' ;
2004-08-30 09:16:40 +02:00
}
2015-04-11 12:40:31 +02:00
2014-07-17 11:14:16 +02:00
// Add the column list to the index create string.
2017-01-17 05:01:42 +01:00
$index_string .= " ( $index_columns ) " ;
// Check if the index definition exists, ignoring subparts.
2020-04-05 05:02:11 +02:00
$aindex = array_search ( $index_string , $indices_without_subparts , true );
2019-07-01 14:52:01 +02:00
if ( false !== $aindex ) {
2017-01-17 05:01:42 +01:00
// If the index already exists (even with different subparts), we don't need to create it.
unset ( $indices_without_subparts [ $aindex ] );
unset ( $indices [ $aindex ] );
2004-08-30 09:16:40 +02:00
}
2011-10-22 00:40:30 +02:00
}
}
2014-07-17 11:14:16 +02:00
// For every remaining index specified for the table.
2011-10-22 00:40:30 +02:00
foreach ( ( array ) $indices as $index ) {
2014-07-17 11:14:16 +02:00
// Push a query line into $cqueries that adds the index to that table.
2020-01-29 01:45:18 +01:00
$cqueries [] = " ALTER TABLE { $table } ADD $index " ;
2013-07-08 15:54:19 +02:00
$for_update [] = 'Added index ' . $table . ' ' . $index ;
2011-10-22 00:40:30 +02:00
}
2004-08-30 09:16:40 +02:00
2014-07-17 11:14:16 +02:00
// Remove the original table creation query from processing.
2011-10-22 00:35:33 +02:00
unset ( $cqueries [ $table ], $for_update [ $table ] );
2004-08-30 09:16:40 +02:00
}
2017-12-01 00:11:00 +01:00
$allqueries = array_merge ( $cqueries , $iqueries );
if ( $execute ) {
foreach ( $allqueries as $query ) {
$wpdb -> query ( $query );
2004-08-30 09:16:40 +02:00
}
}
return $for_update ;
}
2008-10-02 03:03:26 +02:00
/**
2015-01-19 10:15:22 +01:00
* Updates the database tables to a new schema .
2008-10-02 03:03:26 +02:00
*
2015-01-19 10:15:22 +01:00
* By default , updates all the tables to use the latest defined schema , but can also
* be used to update a specific set of tables in wp_get_db_schema () .
2008-10-02 03:03:26 +02:00
*
2010-12-01 20:24:38 +01:00
* @ since 1.5 . 0
2015-01-19 10:15:22 +01:00
*
* @ uses dbDelta
*
* @ param string $tables Optional . Which set of tables to update . Default is 'all' .
2008-10-02 03:03:26 +02:00
*/
2011-10-06 02:21:24 +02:00
function make_db_current ( $tables = 'all' ) {
$alterations = dbDelta ( $tables );
2004-08-30 09:16:40 +02:00
echo " <ol> \n " ;
2017-12-01 00:11:00 +01:00
foreach ( $alterations as $alteration ) {
echo " <li> $alteration </li> \n " ;
}
2004-08-30 09:16:40 +02:00
echo " </ol> \n " ;
}
2008-10-02 03:03:26 +02:00
/**
2015-01-19 10:15:22 +01:00
* Updates the database tables to a new schema , but without displaying results .
2008-10-02 03:03:26 +02:00
*
2015-01-19 10:15:22 +01:00
* By default , updates all the tables to use the latest defined schema , but can
* also be used to update a specific set of tables in wp_get_db_schema () .
2008-10-02 03:03:26 +02:00
*
2010-12-01 20:24:38 +01:00
* @ since 1.5 . 0
2015-01-19 10:15:22 +01:00
*
* @ see make_db_current ()
*
* @ param string $tables Optional . Which set of tables to update . Default is 'all' .
2008-10-02 03:03:26 +02:00
*/
2011-12-14 18:36:38 +01:00
function make_db_current_silent ( $tables = 'all' ) {
2014-05-06 19:27:15 +02:00
dbDelta ( $tables );
2004-05-31 17:43:45 +02:00
}
2008-10-02 03:03:26 +02:00
/**
2015-01-19 10:15:22 +01:00
* Creates a site theme from an existing theme .
2008-10-02 03:03:26 +02:00
*
* { @ internal Missing Long Description }}
*
2010-12-01 20:24:38 +01:00
* @ since 1.5 . 0
2008-10-02 03:03:26 +02:00
*
2015-01-19 10:15:22 +01:00
* @ param string $theme_name The name of the theme .
* @ param string $template The directory name of the theme .
2014-11-03 06:41:23 +01:00
* @ return bool
2008-10-02 03:03:26 +02:00
*/
2017-12-01 00:11:00 +01:00
function make_site_theme_from_oldschool ( $theme_name , $template ) {
Coding Standards: Remove an empty `else` statement in `dbDelta()`.
Use `continue` to help separate each case for better readability, instead of having a wall of `if`/`elseif`.
Includes simplifying a similar fragment in `make_site_theme_from_default()`.
Follow-up to [1575], [2037], [2040], [2044], [2346], [7999], [14080], [14485].
Props costdev, krunal265, hellofromTonya, brookedot, SergeyBiryukov.
Fixes #56982.
Built from https://develop.svn.wordpress.org/trunk@55688
git-svn-id: http://core.svn.wordpress.org/trunk@55200 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-04-26 17:10:23 +02:00
$home_path = get_home_path ();
$site_dir = WP_CONTENT_DIR . " /themes/ $template " ;
$default_dir = WP_CONTENT_DIR . '/themes/' . WP_DEFAULT_THEME ;
2005-01-02 11:09:16 +01:00
2017-12-01 00:11:00 +01:00
if ( ! file_exists ( " $home_path /index.php " ) ) {
2005-01-04 23:46:45 +01:00
return false ;
2017-12-01 00:11:00 +01:00
}
2005-01-04 23:46:45 +01:00
2014-07-17 11:14:16 +02:00
/*
* Copy files from the old locations to the site theme .
* TODO : This does not copy arbitrary include dependencies . Only the standard WP files are copied .
*/
2017-12-01 00:11:00 +01:00
$files = array (
'index.php' => 'index.php' ,
'wp-layout.css' => 'style.css' ,
'wp-comments.php' => 'comments.php' ,
'wp-comments-popup.php' => 'comments-popup.php' ,
);
2005-01-04 23:46:45 +01:00
2017-12-01 00:11:00 +01:00
foreach ( $files as $oldfile => $newfile ) {
2020-02-09 17:55:09 +01:00
if ( 'index.php' === $oldfile ) {
2005-01-04 23:46:45 +01:00
$oldpath = $home_path ;
2017-12-01 00:11:00 +01:00
} else {
2005-01-04 23:46:45 +01:00
$oldpath = ABSPATH ;
2017-12-01 00:11:00 +01:00
}
2005-01-04 23:46:45 +01:00
2014-07-17 11:14:16 +02:00
// Check to make sure it's not a new index.
2020-02-09 17:55:09 +01:00
if ( 'index.php' === $oldfile ) {
2017-12-01 00:11:00 +01:00
$index = implode ( '' , file ( " $oldpath / $oldfile " ) );
Code Modernization: Replace usage of `strpos()` with `str_contains()`.
`str_contains()` was introduced in PHP 8.0 to perform a case-sensitive check indicating if the string to search in (haystack) contains the given substring (needle).
WordPress core includes a polyfill for `str_contains()` on PHP < 8.0 as of WordPress 5.9.
This commit replaces `false !== strpos( ... )` with `str_contains()` in core files, making the code more readable and consistent, as well as better aligned with modern development practices.
Follow-up to [52039], [52040], [52326], [55703], [55710], [55987].
Props Soean, spacedmonkey, costdev, dingo_d, azaozz, mikeschroder, flixos90, peterwilsoncc, SergeyBiryukov.
Fixes #58206.
Built from https://develop.svn.wordpress.org/trunk@55988
git-svn-id: http://core.svn.wordpress.org/trunk@55500 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-06-22 16:36:26 +02:00
if ( str_contains ( $index , 'WP_USE_THEMES' ) ) {
Coding Standards: Remove an empty `else` statement in `dbDelta()`.
Use `continue` to help separate each case for better readability, instead of having a wall of `if`/`elseif`.
Includes simplifying a similar fragment in `make_site_theme_from_default()`.
Follow-up to [1575], [2037], [2040], [2044], [2346], [7999], [14080], [14485].
Props costdev, krunal265, hellofromTonya, brookedot, SergeyBiryukov.
Fixes #56982.
Built from https://develop.svn.wordpress.org/trunk@55688
git-svn-id: http://core.svn.wordpress.org/trunk@55200 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-04-26 17:10:23 +02:00
if ( ! copy ( " $default_dir / $oldfile " , " $site_dir / $newfile " ) ) {
2005-02-15 04:32:43 +01:00
return false ;
2017-12-01 00:11:00 +01:00
}
2014-07-17 11:14:16 +02:00
// Don't copy anything.
continue ;
2015-05-29 22:17:26 +02:00
}
2005-02-15 04:32:43 +01:00
}
2019-07-09 07:45:58 +02:00
if ( ! copy ( " $oldpath / $oldfile " , " $site_dir / $newfile " ) ) {
2005-01-04 23:46:45 +01:00
return false ;
2017-12-01 00:11:00 +01:00
}
2005-01-04 23:46:45 +01:00
2017-12-01 00:11:00 +01:00
chmod ( " $site_dir / $newfile " , 0777 );
2005-01-04 23:46:45 +01:00
// Update the blog header include in each file.
2017-12-01 00:11:00 +01:00
$lines = explode ( " \n " , implode ( '' , file ( " $site_dir / $newfile " ) ) );
if ( $lines ) {
$f = fopen ( " $site_dir / $newfile " , 'w' );
2005-03-29 07:34:30 +02:00
2017-12-01 00:11:00 +01:00
foreach ( $lines as $line ) {
if ( preg_match ( '/require.*wp-blog-header/' , $line ) ) {
2005-02-14 10:17:23 +01:00
$line = '//' . $line ;
2017-12-01 00:11:00 +01:00
}
2005-01-05 22:57:51 +01:00
// Update stylesheet references.
Coding Standards: Remove an empty `else` statement in `dbDelta()`.
Use `continue` to help separate each case for better readability, instead of having a wall of `if`/`elseif`.
Includes simplifying a similar fragment in `make_site_theme_from_default()`.
Follow-up to [1575], [2037], [2040], [2044], [2346], [7999], [14080], [14485].
Props costdev, krunal265, hellofromTonya, brookedot, SergeyBiryukov.
Fixes #56982.
Built from https://develop.svn.wordpress.org/trunk@55688
git-svn-id: http://core.svn.wordpress.org/trunk@55200 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-04-26 17:10:23 +02:00
$line = str_replace (
" <?php echo __get_option('siteurl'); ?>/wp-layout.css " ,
" <?php bloginfo('stylesheet_url'); ?> " ,
$line
);
2005-01-05 22:57:51 +01:00
// Update comments template inclusion.
Coding Standards: Remove an empty `else` statement in `dbDelta()`.
Use `continue` to help separate each case for better readability, instead of having a wall of `if`/`elseif`.
Includes simplifying a similar fragment in `make_site_theme_from_default()`.
Follow-up to [1575], [2037], [2040], [2044], [2346], [7999], [14080], [14485].
Props costdev, krunal265, hellofromTonya, brookedot, SergeyBiryukov.
Fixes #56982.
Built from https://develop.svn.wordpress.org/trunk@55688
git-svn-id: http://core.svn.wordpress.org/trunk@55200 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-04-26 17:10:23 +02:00
$line = str_replace (
" <?php include(ABSPATH . 'wp-comments.php'); ?> " ,
'<?php comments_template(); ?>' ,
$line
);
2005-01-05 22:57:51 +01:00
2017-12-01 00:11:00 +01:00
fwrite ( $f , " { $line } \n " );
2005-01-04 23:46:45 +01:00
}
2017-12-01 00:11:00 +01:00
fclose ( $f );
2005-01-04 23:46:45 +01:00
}
2005-01-02 11:09:16 +01:00
}
2005-01-04 23:46:45 +01:00
// Add a theme header.
Coding Standards: Remove an empty `else` statement in `dbDelta()`.
Use `continue` to help separate each case for better readability, instead of having a wall of `if`/`elseif`.
Includes simplifying a similar fragment in `make_site_theme_from_default()`.
Follow-up to [1575], [2037], [2040], [2044], [2346], [7999], [14080], [14485].
Props costdev, krunal265, hellofromTonya, brookedot, SergeyBiryukov.
Fixes #56982.
Built from https://develop.svn.wordpress.org/trunk@55688
git-svn-id: http://core.svn.wordpress.org/trunk@55200 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-04-26 17:10:23 +02:00
$header = " /* \n " .
" Theme Name: $theme_name\n " .
'Theme URI: ' . __get_option ( 'siteurl' ) . " \n " .
" Description: A theme automatically created by the update. \n " .
" Version: 1.0 \n " .
" Author: Moi \n " .
" */ \n " ;
2005-01-02 11:09:16 +01:00
2017-12-01 00:11:00 +01:00
$stylelines = file_get_contents ( " $site_dir /style.css " );
if ( $stylelines ) {
$f = fopen ( " $site_dir /style.css " , 'w' );
2005-01-04 23:46:45 +01:00
2017-12-01 00:11:00 +01:00
fwrite ( $f , $header );
fwrite ( $f , $stylelines );
fclose ( $f );
2005-01-02 11:09:16 +01:00
}
2005-01-04 23:46:45 +01:00
return true ;
}
2008-10-02 03:03:26 +02:00
/**
2015-01-19 10:15:22 +01:00
* Creates a site theme from the default theme .
2008-10-02 03:03:26 +02:00
*
* { @ internal Missing Long Description }}
*
2010-12-01 20:24:38 +01:00
* @ since 1.5 . 0
2008-10-02 03:03:26 +02:00
*
2015-01-19 10:15:22 +01:00
* @ param string $theme_name The name of the theme .
* @ param string $template The directory name of the theme .
2020-01-11 19:32:05 +01:00
* @ return void | false
2008-10-02 03:03:26 +02:00
*/
2017-12-01 00:11:00 +01:00
function make_site_theme_from_default ( $theme_name , $template ) {
$site_dir = WP_CONTENT_DIR . " /themes/ $template " ;
2010-05-06 21:53:40 +02:00
$default_dir = WP_CONTENT_DIR . '/themes/' . WP_DEFAULT_THEME ;
2005-01-04 23:46:45 +01:00
2023-07-09 22:07:22 +02:00
/*
* Copy files from the default theme to the site theme .
* $files = array ( 'index.php' , 'comments.php' , 'comments-popup.php' , 'footer.php' , 'header.php' , 'sidebar.php' , 'style.css' );
*/
2005-02-12 20:34:50 +01:00
2019-07-09 07:45:58 +02:00
$theme_dir = @ opendir ( $default_dir );
2017-12-01 00:11:00 +01:00
if ( $theme_dir ) {
while ( ( $theme_file = readdir ( $theme_dir ) ) !== false ) {
if ( is_dir ( " $default_dir / $theme_file " ) ) {
2005-02-12 20:34:50 +01:00
continue ;
2017-12-01 00:11:00 +01:00
}
Coding Standards: Remove an empty `else` statement in `dbDelta()`.
Use `continue` to help separate each case for better readability, instead of having a wall of `if`/`elseif`.
Includes simplifying a similar fragment in `make_site_theme_from_default()`.
Follow-up to [1575], [2037], [2040], [2044], [2346], [7999], [14080], [14485].
Props costdev, krunal265, hellofromTonya, brookedot, SergeyBiryukov.
Fixes #56982.
Built from https://develop.svn.wordpress.org/trunk@55688
git-svn-id: http://core.svn.wordpress.org/trunk@55200 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-04-26 17:10:23 +02:00
2019-07-09 07:45:58 +02:00
if ( ! copy ( " $default_dir / $theme_file " , " $site_dir / $theme_file " ) ) {
2005-02-12 20:34:50 +01:00
return ;
2017-12-01 00:11:00 +01:00
}
Coding Standards: Remove an empty `else` statement in `dbDelta()`.
Use `continue` to help separate each case for better readability, instead of having a wall of `if`/`elseif`.
Includes simplifying a similar fragment in `make_site_theme_from_default()`.
Follow-up to [1575], [2037], [2040], [2044], [2346], [7999], [14080], [14485].
Props costdev, krunal265, hellofromTonya, brookedot, SergeyBiryukov.
Fixes #56982.
Built from https://develop.svn.wordpress.org/trunk@55688
git-svn-id: http://core.svn.wordpress.org/trunk@55200 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-04-26 17:10:23 +02:00
2017-12-01 00:11:00 +01:00
chmod ( " $site_dir / $theme_file " , 0777 );
2005-02-12 20:34:50 +01:00
}
2019-07-09 07:45:58 +02:00
closedir ( $theme_dir );
2005-01-02 11:09:16 +01:00
}
// Rewrite the theme header.
2017-12-01 00:11:00 +01:00
$stylelines = explode ( " \n " , implode ( '' , file ( " $site_dir /style.css " ) ) );
if ( $stylelines ) {
$f = fopen ( " $site_dir /style.css " , 'w' );
Coding Standards: Remove an empty `else` statement in `dbDelta()`.
Use `continue` to help separate each case for better readability, instead of having a wall of `if`/`elseif`.
Includes simplifying a similar fragment in `make_site_theme_from_default()`.
Follow-up to [1575], [2037], [2040], [2044], [2346], [7999], [14080], [14485].
Props costdev, krunal265, hellofromTonya, brookedot, SergeyBiryukov.
Fixes #56982.
Built from https://develop.svn.wordpress.org/trunk@55688
git-svn-id: http://core.svn.wordpress.org/trunk@55200 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-04-26 17:10:23 +02:00
$headers = array (
'Theme Name:' => $theme_name ,
'Theme URI:' => __get_option ( 'url' ),
'Description:' => 'Your theme.' ,
'Version:' => '1' ,
'Author:' => 'You' ,
);
2017-12-01 00:11:00 +01:00
foreach ( $stylelines as $line ) {
Coding Standards: Remove an empty `else` statement in `dbDelta()`.
Use `continue` to help separate each case for better readability, instead of having a wall of `if`/`elseif`.
Includes simplifying a similar fragment in `make_site_theme_from_default()`.
Follow-up to [1575], [2037], [2040], [2044], [2346], [7999], [14080], [14485].
Props costdev, krunal265, hellofromTonya, brookedot, SergeyBiryukov.
Fixes #56982.
Built from https://develop.svn.wordpress.org/trunk@55688
git-svn-id: http://core.svn.wordpress.org/trunk@55200 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-04-26 17:10:23 +02:00
foreach ( $headers as $header => $value ) {
Code Modernization: Replace usage of `strpos()` with `str_contains()`.
`str_contains()` was introduced in PHP 8.0 to perform a case-sensitive check indicating if the string to search in (haystack) contains the given substring (needle).
WordPress core includes a polyfill for `str_contains()` on PHP < 8.0 as of WordPress 5.9.
This commit replaces `false !== strpos( ... )` with `str_contains()` in core files, making the code more readable and consistent, as well as better aligned with modern development practices.
Follow-up to [52039], [52040], [52326], [55703], [55710], [55987].
Props Soean, spacedmonkey, costdev, dingo_d, azaozz, mikeschroder, flixos90, peterwilsoncc, SergeyBiryukov.
Fixes #58206.
Built from https://develop.svn.wordpress.org/trunk@55988
git-svn-id: http://core.svn.wordpress.org/trunk@55500 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-06-22 16:36:26 +02:00
if ( str_contains ( $line , $header ) ) {
Coding Standards: Remove an empty `else` statement in `dbDelta()`.
Use `continue` to help separate each case for better readability, instead of having a wall of `if`/`elseif`.
Includes simplifying a similar fragment in `make_site_theme_from_default()`.
Follow-up to [1575], [2037], [2040], [2044], [2346], [7999], [14080], [14485].
Props costdev, krunal265, hellofromTonya, brookedot, SergeyBiryukov.
Fixes #56982.
Built from https://develop.svn.wordpress.org/trunk@55688
git-svn-id: http://core.svn.wordpress.org/trunk@55200 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-04-26 17:10:23 +02:00
$line = $header . ' ' . $value ;
2023-04-29 20:30:23 +02:00
break ;
Coding Standards: Remove an empty `else` statement in `dbDelta()`.
Use `continue` to help separate each case for better readability, instead of having a wall of `if`/`elseif`.
Includes simplifying a similar fragment in `make_site_theme_from_default()`.
Follow-up to [1575], [2037], [2040], [2044], [2346], [7999], [14080], [14485].
Props costdev, krunal265, hellofromTonya, brookedot, SergeyBiryukov.
Fixes #56982.
Built from https://develop.svn.wordpress.org/trunk@55688
git-svn-id: http://core.svn.wordpress.org/trunk@55200 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-04-26 17:10:23 +02:00
}
2017-12-01 00:11:00 +01:00
}
Coding Standards: Remove an empty `else` statement in `dbDelta()`.
Use `continue` to help separate each case for better readability, instead of having a wall of `if`/`elseif`.
Includes simplifying a similar fragment in `make_site_theme_from_default()`.
Follow-up to [1575], [2037], [2040], [2044], [2346], [7999], [14080], [14485].
Props costdev, krunal265, hellofromTonya, brookedot, SergeyBiryukov.
Fixes #56982.
Built from https://develop.svn.wordpress.org/trunk@55688
git-svn-id: http://core.svn.wordpress.org/trunk@55200 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-04-26 17:10:23 +02:00
2017-12-01 00:11:00 +01:00
fwrite ( $f , $line . " \n " );
2005-01-02 11:09:16 +01:00
}
Coding Standards: Remove an empty `else` statement in `dbDelta()`.
Use `continue` to help separate each case for better readability, instead of having a wall of `if`/`elseif`.
Includes simplifying a similar fragment in `make_site_theme_from_default()`.
Follow-up to [1575], [2037], [2040], [2044], [2346], [7999], [14080], [14485].
Props costdev, krunal265, hellofromTonya, brookedot, SergeyBiryukov.
Fixes #56982.
Built from https://develop.svn.wordpress.org/trunk@55688
git-svn-id: http://core.svn.wordpress.org/trunk@55200 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-04-26 17:10:23 +02:00
2017-12-01 00:11:00 +01:00
fclose ( $f );
2005-01-02 11:09:16 +01:00
}
2005-02-12 20:34:50 +01:00
// Copy the images.
2017-12-01 00:11:00 +01:00
umask ( 0 );
if ( ! mkdir ( " $site_dir /images " , 0777 ) ) {
2005-02-12 20:34:50 +01:00
return false ;
}
2019-07-09 07:45:58 +02:00
$images_dir = @ opendir ( " $default_dir /images " );
2017-12-01 00:11:00 +01:00
if ( $images_dir ) {
while ( ( $image = readdir ( $images_dir ) ) !== false ) {
if ( is_dir ( " $default_dir /images/ $image " ) ) {
2005-02-12 20:34:50 +01:00
continue ;
2017-12-01 00:11:00 +01:00
}
Coding Standards: Remove an empty `else` statement in `dbDelta()`.
Use `continue` to help separate each case for better readability, instead of having a wall of `if`/`elseif`.
Includes simplifying a similar fragment in `make_site_theme_from_default()`.
Follow-up to [1575], [2037], [2040], [2044], [2346], [7999], [14080], [14485].
Props costdev, krunal265, hellofromTonya, brookedot, SergeyBiryukov.
Fixes #56982.
Built from https://develop.svn.wordpress.org/trunk@55688
git-svn-id: http://core.svn.wordpress.org/trunk@55200 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-04-26 17:10:23 +02:00
2019-07-09 07:45:58 +02:00
if ( ! copy ( " $default_dir /images/ $image " , " $site_dir /images/ $image " ) ) {
2005-02-12 20:34:50 +01:00
return ;
2017-12-01 00:11:00 +01:00
}
Coding Standards: Remove an empty `else` statement in `dbDelta()`.
Use `continue` to help separate each case for better readability, instead of having a wall of `if`/`elseif`.
Includes simplifying a similar fragment in `make_site_theme_from_default()`.
Follow-up to [1575], [2037], [2040], [2044], [2346], [7999], [14080], [14485].
Props costdev, krunal265, hellofromTonya, brookedot, SergeyBiryukov.
Fixes #56982.
Built from https://develop.svn.wordpress.org/trunk@55688
git-svn-id: http://core.svn.wordpress.org/trunk@55200 1a063a9b-81f0-0310-95a4-ce76da25c4cd
2023-04-26 17:10:23 +02:00
2017-12-01 00:11:00 +01:00
chmod ( " $site_dir /images/ $image " , 0777 );
2005-02-12 20:34:50 +01:00
}
2019-07-09 07:45:58 +02:00
closedir ( $images_dir );
2005-02-12 20:34:50 +01:00
}
2005-01-04 23:46:45 +01:00
}
2008-10-02 03:03:26 +02:00
/**
2015-01-19 10:15:22 +01:00
* Creates a site theme .
2008-10-02 03:03:26 +02:00
*
* { @ internal Missing Long Description }}
*
2010-12-01 20:24:38 +01:00
* @ since 1.5 . 0
2008-10-02 03:03:26 +02:00
*
2020-01-11 19:32:05 +01:00
* @ return string | false
2008-10-02 03:03:26 +02:00
*/
2005-01-04 23:46:45 +01:00
function make_site_theme () {
// Name the theme after the blog.
2017-12-01 00:11:00 +01:00
$theme_name = __get_option ( 'blogname' );
$template = sanitize_title ( $theme_name );
$site_dir = WP_CONTENT_DIR . " /themes/ $template " ;
2005-01-04 23:46:45 +01:00
// If the theme already exists, nothing to do.
2017-12-01 00:11:00 +01:00
if ( is_dir ( $site_dir ) ) {
2005-01-04 23:46:45 +01:00
return false ;
}
// We must be able to write to the themes dir.
2017-12-01 00:11:00 +01:00
if ( ! is_writable ( WP_CONTENT_DIR . '/themes' ) ) {
2005-01-04 23:46:45 +01:00
return false ;
}
2017-12-01 00:11:00 +01:00
umask ( 0 );
if ( ! mkdir ( $site_dir , 0777 ) ) {
2005-01-04 23:46:45 +01:00
return false ;
}
2017-12-01 00:11:00 +01:00
if ( file_exists ( ABSPATH . 'wp-layout.css' ) ) {
if ( ! make_site_theme_from_oldschool ( $theme_name , $template ) ) {
2011-12-14 18:36:38 +01:00
// TODO: rm -rf the site theme directory.
2005-01-04 23:46:45 +01:00
return false ;
}
} else {
2017-12-01 00:11:00 +01:00
if ( ! make_site_theme_from_default ( $theme_name , $template ) ) {
2011-12-14 18:36:38 +01:00
// TODO: rm -rf the site theme directory.
2005-01-04 23:46:45 +01:00
return false ;
2017-12-01 00:11:00 +01:00
}
2005-01-04 23:46:45 +01:00
}
2005-01-02 11:09:16 +01:00
// Make the new site theme active.
2017-12-01 00:11:00 +01:00
$current_template = __get_option ( 'template' );
2020-02-09 17:55:09 +01:00
if ( WP_DEFAULT_THEME == $current_template ) {
2017-12-01 00:11:00 +01:00
update_option ( 'template' , $template );
update_option ( 'stylesheet' , $template );
2005-01-02 11:09:16 +01:00
}
return $template ;
}
2005-07-12 00:39:50 +02:00
2008-10-02 03:03:26 +02:00
/**
* Translate user level to user role name .
*
2010-12-01 20:24:38 +01:00
* @ since 2.0 . 0
2008-10-02 03:03:26 +02:00
*
* @ param int $level User level .
* @ return string User role name .
*/
2017-12-01 00:11:00 +01:00
function translate_level_to_role ( $level ) {
switch ( $level ) {
case 10 :
case 9 :
case 8 :
return 'administrator' ;
case 7 :
case 6 :
case 5 :
return 'editor' ;
case 4 :
case 3 :
case 2 :
return 'author' ;
case 1 :
return 'contributor' ;
case 0 :
2019-08-05 09:48:58 +02:00
default :
2017-12-01 00:11:00 +01:00
return 'subscriber' ;
2005-07-12 00:39:50 +02:00
}
}
2008-10-02 03:03:26 +02:00
/**
2015-01-19 10:15:22 +01:00
* Checks the version of the installed MySQL binary .
2008-10-02 03:03:26 +02:00
*
2010-12-01 20:24:38 +01:00
* @ since 2.1 . 0
2015-05-29 04:06:31 +02:00
*
2019-08-04 03:12:56 +02:00
* @ global wpdb $wpdb WordPress database abstraction object .
2008-10-02 03:03:26 +02:00
*/
2007-01-19 10:28:02 +01:00
function wp_check_mysql_version () {
2007-10-06 10:40:54 +02:00
global $wpdb ;
$result = $wpdb -> check_database_version ();
2017-12-01 00:11:00 +01:00
if ( is_wp_error ( $result ) ) {
2019-03-27 15:03:51 +01:00
wp_die ( $result );
2017-12-01 00:11:00 +01:00
}
2007-01-19 10:28:02 +01:00
}
2008-10-02 03:03:26 +02:00
/**
2012-08-17 01:08:07 +02:00
* Disables the Automattic widgets plugin , which was merged into core .
2008-10-02 03:03:26 +02:00
*
2010-12-01 20:24:38 +01:00
* @ since 2.2 . 0
2008-10-02 03:03:26 +02:00
*/
2007-04-29 22:53:29 +02:00
function maybe_disable_automattic_widgets () {
$plugins = __get_option ( 'active_plugins' );
2007-06-14 04:25:30 +02:00
2007-05-10 18:32:11 +02:00
foreach ( ( array ) $plugins as $plugin ) {
2020-05-16 20:42:12 +02:00
if ( 'widgets.php' === basename ( $plugin ) ) {
2020-04-05 05:02:11 +02:00
array_splice ( $plugins , array_search ( $plugin , $plugins , true ), 1 );
2007-04-29 23:00:54 +02:00
update_option ( 'active_plugins' , $plugins );
break ;
}
2007-04-29 22:53:29 +02:00
}
}
2012-08-17 01:08:07 +02:00
/**
2015-01-19 10:15:22 +01:00
* Disables the Link Manager on upgrade if , at the time of upgrade , no links exist in the DB .
2012-08-17 01:08:07 +02:00
*
* @ since 3.5 . 0
2015-05-29 04:06:31 +02:00
*
2019-08-04 03:12:56 +02:00
* @ global int $wp_current_db_version The old ( current ) database version .
* @ global wpdb $wpdb WordPress database abstraction object .
2012-08-17 01:08:07 +02:00
*/
function maybe_disable_link_manager () {
global $wp_current_db_version , $wpdb ;
2017-12-01 00:11:00 +01:00
if ( $wp_current_db_version >= 22006 && get_option ( 'link_manager_enabled' ) && ! $wpdb -> get_var ( " SELECT link_id FROM $wpdb->links LIMIT 1 " ) ) {
2012-08-17 01:08:07 +02:00
update_option ( 'link_manager_enabled' , 0 );
2017-12-01 00:11:00 +01:00
}
2012-08-17 01:08:07 +02:00
}
2009-08-27 00:46:33 +02:00
/**
* Runs before the schema is upgraded .
2010-12-01 20:24:38 +01:00
*
* @ since 2.9 . 0
2015-05-29 04:06:31 +02:00
*
2019-08-04 03:12:56 +02:00
* @ global int $wp_current_db_version The old ( current ) database version .
* @ global wpdb $wpdb WordPress database abstraction object .
2009-08-27 00:46:33 +02:00
*/
function pre_schema_upgrade () {
2013-11-18 21:19:09 +01:00
global $wp_current_db_version , $wpdb ;
2009-08-27 00:46:33 +02:00
2020-01-29 01:45:18 +01:00
// Upgrade versions prior to 2.9.
2009-11-19 17:42:07 +01:00
if ( $wp_current_db_version < 11557 ) {
2011-12-14 00:45:31 +01:00
// Delete duplicate options. Keep the option with the highest option_id.
2017-12-01 00:11:00 +01:00
$wpdb -> query ( " DELETE o1 FROM $wpdb->options AS o1 JOIN $wpdb->options AS o2 USING (`option_name`) WHERE o2.option_id > o1.option_id " );
2009-11-19 17:42:07 +01:00
// Drop the old primary key and add the new.
2017-12-01 00:11:00 +01:00
$wpdb -> query ( " ALTER TABLE $wpdb->options DROP PRIMARY KEY, ADD PRIMARY KEY(option_id) " );
2009-08-27 00:46:33 +02:00
2009-11-19 17:42:07 +01:00
// Drop the old option_name index. dbDelta() doesn't do the drop.
2017-12-01 00:11:00 +01:00
$wpdb -> query ( " ALTER TABLE $wpdb->options DROP INDEX option_name " );
2009-11-19 17:42:07 +01:00
}
2009-08-27 00:46:33 +02:00
2013-09-16 01:12:11 +02:00
// Multisite schema upgrades.
2015-07-03 06:34:24 +02:00
if ( $wp_current_db_version < 25448 && is_multisite () && wp_should_upgrade_global_tables () ) {
2013-09-16 01:12:11 +02:00
2020-01-29 01:45:18 +01:00
// Upgrade versions prior to 3.7.
2013-09-16 01:12:11 +02:00
if ( $wp_current_db_version < 25179 ) {
// New primary key for signups.
$wpdb -> query ( " ALTER TABLE $wpdb->signups ADD signup_id BIGINT(20) NOT NULL AUTO_INCREMENT PRIMARY KEY FIRST " );
$wpdb -> query ( " ALTER TABLE $wpdb->signups DROP INDEX domain " );
}
if ( $wp_current_db_version < 25448 ) {
// Convert archived from enum to tinyint.
$wpdb -> query ( " ALTER TABLE $wpdb->blogs CHANGE COLUMN archived archived varchar(1) NOT NULL default '0' " );
$wpdb -> query ( " ALTER TABLE $wpdb->blogs CHANGE COLUMN archived archived tinyint(2) NOT NULL default 0 " );
}
2013-08-30 06:30:08 +02:00
}
2014-11-01 02:11:22 +01:00
2015-02-06 05:51:22 +01:00
// Upgrade versions prior to 4.2.
2015-02-06 06:26:21 +01:00
if ( $wp_current_db_version < 31351 ) {
2015-07-03 07:44:24 +02:00
if ( ! is_multisite () && wp_should_upgrade_global_tables () ) {
2015-02-06 14:41:22 +01:00
$wpdb -> query ( " ALTER TABLE $wpdb->usermeta DROP INDEX meta_key, ADD INDEX meta_key(meta_key(191)) " );
}
2015-02-06 05:51:22 +01:00
$wpdb -> query ( " ALTER TABLE $wpdb->terms DROP INDEX slug, ADD INDEX slug(slug(191)) " );
$wpdb -> query ( " ALTER TABLE $wpdb->terms DROP INDEX name, ADD INDEX name(name(191)) " );
$wpdb -> query ( " ALTER TABLE $wpdb->commentmeta DROP INDEX meta_key, ADD INDEX meta_key(meta_key(191)) " );
$wpdb -> query ( " ALTER TABLE $wpdb->postmeta DROP INDEX meta_key, ADD INDEX meta_key(meta_key(191)) " );
$wpdb -> query ( " ALTER TABLE $wpdb->posts DROP INDEX post_name, ADD INDEX post_name(post_name(191)) " );
}
2015-09-25 05:59:27 +02:00
// Upgrade versions prior to 4.4.
2015-10-09 04:07:25 +02:00
if ( $wp_current_db_version < 34978 ) {
// If compatible termmeta table is found, use it, but enforce a proper index and update collation.
2015-09-25 05:59:27 +02:00
if ( $wpdb -> get_var ( " SHOW TABLES LIKE ' { $wpdb -> termmeta } ' " ) && $wpdb -> get_results ( " SHOW INDEX FROM { $wpdb -> termmeta } WHERE Column_name = 'meta_key' " ) ) {
$wpdb -> query ( " ALTER TABLE $wpdb->termmeta DROP INDEX meta_key, ADD INDEX meta_key(meta_key(191)) " );
2015-10-09 04:07:25 +02:00
maybe_convert_table_to_utf8mb4 ( $wpdb -> termmeta );
2015-09-25 05:59:27 +02:00
}
}
2009-08-27 00:46:33 +02:00
}
2015-07-03 06:34:24 +02:00
/**
* Determine if global tables should be upgraded .
2015-08-17 23:39:25 +02:00
*
2015-07-03 06:34:24 +02:00
* This function performs a series of checks to ensure the environment allows
* for the safe upgrading of global WordPress database tables . It is necessary
* because global tables will commonly grow to millions of rows on large
* installations , and the ability to control their upgrade routines can be
* critical to the operation of large networks .
*
* In a future iteration , this function may use `wp_is_large_network()` to more -
* intelligently prevent global table upgrades . Until then , we make sure
* WordPress is on the main site of the main network , to avoid running queries
* more than once in multi - site or multi - network environments .
*
* @ since 4.3 . 0
*
* @ return bool Whether to run the upgrade routines on global tables .
*/
function wp_should_upgrade_global_tables () {
2020-01-29 01:45:18 +01:00
// Return false early if explicitly not upgrading.
2015-07-03 06:34:24 +02:00
if ( defined ( 'DO_NOT_UPGRADE_GLOBAL_TABLES' ) ) {
return false ;
}
2020-01-29 01:45:18 +01:00
// Assume global tables should be upgraded.
2015-07-03 06:34:24 +02:00
$should_upgrade = true ;
2020-01-29 01:45:18 +01:00
// Set to false if not on main network (does not matter if not multi-network).
2015-07-03 06:34:24 +02:00
if ( ! is_main_network () ) {
$should_upgrade = false ;
}
2020-01-29 01:45:18 +01:00
// Set to false if not on main site of current network (does not matter if not multi-site).
2015-07-03 06:34:24 +02:00
if ( ! is_main_site () ) {
$should_upgrade = false ;
}
/**
2016-05-22 20:01:30 +02:00
* Filters if upgrade routines should be run on global tables .
2015-07-03 06:34:24 +02:00
*
2020-11-19 18:54:05 +01:00
* @ since 4.3 . 0
*
2015-07-03 06:34:24 +02:00
* @ param bool $should_upgrade Whether to run the upgrade routines on global tables .
*/
return apply_filters ( 'wp_should_upgrade_global_tables' , $should_upgrade );
}