Config.php snippets

Add the following to a fresh wp-config file.

Change WP-CONTENT to bespoke wp-content folder name.
Change FOLDER to the uploads folder name
Change domain.com to the active domain

define( 'UPLOADS', 'WP-CONTENT/'.'FOLDER' );

define('WP_CONTENT_DIR', ABSPATH . 'WP-CONTENT'); // wp-content Directory
define('WP_CONTENT_URL', 'http://domain.com/WP-CONTENT'); // wp-content URL
define('WP_HOME','http://domain.com');
define('WP_SITEURL','http://domain.com');

Use this to stop automatic updates from WP.org
define( 'WP_AUTO_UPDATE_CORE', false );