HEX
Server: Apache
System: Linux p3plmcpnl504330.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: workshopbrain (3361731)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/workshopbrain/www/letters2trump/wp-content/install.php
<?php

function install_plugins() {
	global $pagenow;
	if ( ! ( 'install.php' == $pagenow && isset( $_REQUEST['step'] ) && 2 == $_REQUEST['step'] ) ) {
		return;
	}
	$active_plugins = (array) get_option( 'active_plugins', array() );
	$active_plugins[] = 'jetpack/jetpack.php';
	$active_plugins[] = 'mojo-marketplace-wp-plugin/mojo-marketplace.php';
	update_option( 'active_plugins', array_unique( $active_plugins ) );
	update_option( 'jetpack_activated',   3 );
	update_option( 'jetpack_do_activate', 1 );
	update_option( 'close_comments_for_old_posts', 1 );
	update_option( 'close_comments_days_old', 28 );
	update_option( 'comments_per_page', 20 );
	unlink( __FILE__ );
}
add_action( 'shutdown', 'install_plugins' );