PHP settings in wp-config.php file

Edit values if needed and appended into wp-config.php file

ini_set('post_max_size', 100000);
ini_set('upload_max_filesize', 100000);
ini_set('max_input_time', 100000);
ini_set('memory_limit','1024M'); // the same as define('WP_MEMORY_LIMIT', '1024M');
set_time_limit(300);
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
Read the rest

WordPress enable force SSL over wp-config.php

You will need to edit domain name using the following and append it into your wp-config.php file

define('WP_SITEURL', 'https://www.example.com');
define('WP_HOME', 'https://www.example.com');
define('FORCE_SSL_ADMIN', true);
define('FORCE_SSL_LOGIN', true);
if( isset($_SERVER['HTTP_CF_VISITOR']) && strpos($_SERVER['HTTP_CF_VISITOR'], 'https') )
$_SERVER['HTTPS']='on';
Read the rest

WordPress wp-config.php settings

Allow uploading not registered files

define('ALLOW_UNFILTERED_UPLOADS', true);

Disable All Updates

define( 'AUTOMATIC_UPDATER_DISABLED', true );

To enable automatic updates

define( 'WP_AUTO_UPDATE_CORE', true );

WP_SITEURL

define( 'WP_SITEURL', 'http://example.com/wordpress' );

WP_HOME

define( 'WP_HOME', 'http://example.com/wordpress' );

Disable the cron entirely by setting DISABLE_WP_CRON to true.Read the rest