Use Less Memory

Home » Snippets » Use Less Memory
0

Created with:

WP Config Generator

Visibility: 

public

Creator: WPTurbo Team

Customize with WPTurbo AI
X

Add Snippet To Project

New Project
Add To Existing Project
				/**
 * The base configuration for WordPress
 *
 * The wp-config.php creation script uses this file during the installation.
 * You don't have to use the web site, you can copy this file to "wp-config.php"
 * and fill in the values.
 *
 * This file contains the following configurations:
 *
 * * MySQL settings
 * * Secret keys
 * * Database table prefix
 * * ABSPATH
 *
 * @link https://wordpress.org/support/article/editing-wp-config-php/
 *
 * @package WordPress
 */


// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define( 'DB_NAME', 'wordpress' );
/** MySQL database username */
define( 'DB_USER', 'db_username' );
/** MySQL database password */
define( 'DB_PASSWORD', 'db_password' );
/** MySQL hostname */
define( 'DB_HOST', 'localhost' );
/** The Database Charset to use in creating database tables. */
define( 'DB_CHARSET', 'utf8' );


/* Prefix For All Database Tables */
/**
* WordPress database table prefix.

* You can have multiple installations in one database if you give each
* a unique prefix. Only numbers, letters, and underscores please!
*/
$table_prefix = 'wp_';


/* Autosave Interval */

/* Autosave Interval */
define( 'AUTOSAVE_INTERVAL', 600 );

/* Disable Revisions */
define( 'WP_POST_REVISIONS', FALSE );


/**#@+
* Authentication unique keys and salts.
*
* Change these to different unique phrases! You can generate these using
* the {@link https://api.wordpress.org/secret-key/1.1/salt/ WordPress.org secret-key service}.
* You can change these at any point in time to invalidate all existing cookies.
* This will force all users to have to log in again.
*
* @since 2.6.0
 */
define('AUTH_KEY',         '%i-rmwR|ACM/R)5@q--n+t>rJ4|#B~z*lKW1vs <cmd&Ib3b&Q8_|NKTw0a6)#A;');
define('SECURE_AUTH_KEY',  'iWTH`wXSxqv?-z+@Y#eR7+XbTkndZA}u^~-`]87tS&X5)t3>-1AqIYZ2)j,mV5}p');
define('LOGGED_IN_KEY',    'u+Qy>m/Sm|LgINUkj3H]+>[O>vvo`A|1}HkKH(4HZ+wGU.;&t:=G!Z=j-b}~:%])');
define('NONCE_KEY',        'Q:!g$+Jw7|+HuD(`Ds})u`DkNlN~;QrKO5-0~`39|SXZr/$*[KM|a:zP|SIgp6+4');
define('AUTH_SALT',        '#u&$*59}|4&Aj9+c~f8y0VL|4$_ZKb]=;z|p|+Ut{)]%IA0np7TX^P:@&G*2tb@-');
define('SECURE_AUTH_SALT', 'c.|ACP4NBWUj{I}Bxl%zj0`q4|6^D:$ElJpGZP+#$8,HzeC,F_gbm&~g^qloC[j4');
define('LOGGED_IN_SALT',   'nDH>@/ID|JNnS{Y&,}s*nD+;,+%nWwgEwZf/E+;[Brt+ZQTVVSH3C[<18-h)!P=5');
define('NONCE_SALT',       '&1*ML1Xq.s)OvmG{W}7-r/NQ|wudv={13Z-}ZLl*cuK&+]m+QYSL%T+[H4]?WKzl');


/* CRON Settings */
define( 'DISABLE_WP_CRON', TRUE );
define( 'WP_CRON_LOCK_TIMEOUT', 10 );


/* Memory Settings */
define( 'WP_MEMORY_LIMIT', '20M' );
define( 'WP_MAX_MEMORY_LIMIT', '30M' );


/* AUTOMATIC CORE UPDATES */
/* DISABLE ALL CORE UPDATES */
define( 'WP_AUTO_UPDATE_CORE', FALSE );


/* Absolute path to the WordPress directory. */
if ( !defined('ABSPATH') )
  define('ABSPATH', __DIR__ . '/');
/* Sets up WordPress vars and included files. */
require_once(ABSPATH . 'wp-settings.php');

			

Register an account to save your snippets or go Pro to get more features.