- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
73 lines
3.0 KiB
PHP
Executable File
73 lines
3.0 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* 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://codex.wordpress.org/Editing_wp-config.php
|
|
*
|
|
* @package WordPress
|
|
*/
|
|
// ** MySQL settings ** //
|
|
/** The name of the database for WordPress */
|
|
define( 'DB_NAME', 'preciosunitarios_wp' );
|
|
/** MySQL database username */
|
|
define( 'DB_USER', 'preciosunitarios_wp' );
|
|
/** MySQL database password */
|
|
define( 'DB_PASSWORD', 'Kq#Gk%yEt+PWpVe&HZ' );
|
|
/** MySQL hostname */
|
|
define( 'DB_HOST', 'localhost' );
|
|
/** Database Charset to use in creating database tables. */
|
|
define( 'DB_CHARSET', 'utf8' );
|
|
/** The Database Collate type. Don't change this if in doubt. */
|
|
define( 'DB_COLLATE', '' );
|
|
//Deshabilitar cron
|
|
define( 'DISABLE_WP_CRON', true );
|
|
/**
|
|
* 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', 'juMO&>|M0(G(*+nW[ewo5W(~x/0Uc,3>&Y*o%>E3np)92kb$?2d.XM:K#hcAf0+p');
|
|
define('SECURE_AUTH_KEY', 'X+lJDf%3j@Ir_%+!gsR%/o++l7F&rN~?+jX9+(>7S!iP<vF.RL]+1)#/CE7G;--W');
|
|
define('LOGGED_IN_KEY', '9CQnv`Y]-02ufH)(%N3Kr]Ro i!tESp&`?jUg73H)+SoE&!QSUzLm|lbTvVGgB]n');
|
|
define('NONCE_KEY', '3q2{E_qe2V!<.)r8Oc=(A?tmI`|^Rh_B~VOfxY0?p?_no6?-|=/dM.Lf7aS8W7@)');
|
|
define('AUTH_SALT', 'iJ-svzvFe=sYI9uCyw-zNNK@=C)*#MsA>9;t-|@f?@*$Kph-ihu>3dk({tZ2W-O2');
|
|
define('SECURE_AUTH_SALT', 'jMC=/l:B~Vu~Rz+]Gbc)cEYt((o(m_O/5Qx9pv |vy^6aAN3u!34l.:~k>q|fMHV');
|
|
define('LOGGED_IN_SALT', ':)GBq0Yqot|i_Qhju-Tee$`>3H`IqI#IoI6urtuIK$*#|>V/V3dP2DaIg`PAw)cd');
|
|
define('NONCE_SALT', '>4Q9U7Ky|hK12/6[vT*J(g+$C5w$}QkV<z8fJr7+F;rtmrcB;f]WJdc0]8/4sC^{');
|
|
define( 'WP_CACHE_KEY_SALT', '|b+LF+o;-*R<<JF=DlDn=cP3`+)TPaNVcE!x_9I^>9LXh>te/swM2vg;92[;C[yq' );
|
|
/**
|
|
* 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!
|
|
*/
|
|
define('WP_DEBUG', false);
|
|
define('WP_DEBUG_LOG', false);
|
|
define('WP_DEBUG_DISPLAY', false);
|
|
define('SCRIPT_DEBUG', false);
|
|
//define('SAVEQUERIES', false);
|
|
$table_prefix = 'wp_';
|
|
define('WP_MEMORY_LIMIT', '1024M');
|
|
/* unloading plugins within the Dashboard */
|
|
define('WPACU_ALLOW_DASH_PLUGIN_FILTER', true);
|
|
/* That's all, stop editing! Happy blogging. */
|
|
/** Absolute path to the WordPress directory. */
|
|
if ( ! defined( 'ABSPATH' ) )
|
|
define( 'ABSPATH', dirname( __FILE__ ) . '/' );
|
|
/** Sets up WordPress vars and included files. */
|
|
require_once ABSPATH . 'wp-settings.php'; |