first commit

This commit is contained in:
Roman Pyrih
2026-04-21 15:48:41 +02:00
commit 7483681901
10216 changed files with 3236626 additions and 0 deletions

106
wp-config.php Normal file
View File

@@ -0,0 +1,106 @@
<?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 website, you can copy this file to "wp-config.php"
* and fill in the values.
*
* This file contains the following configurations:
*
* * Database settings
* * Secret keys
* * Database table prefix
* * ABSPATH
*
* @link https://developer.wordpress.org/advanced-administration/wordpress/wp-config/
*
* @package WordPress
*/
// ** Database settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define( 'DB_NAME', "host117523_jachty3pagedevpl" );
/** Database username */
define( 'DB_USER', "host117523_jachty3pagedevpl" );
/** Database password */
define( 'DB_PASSWORD', "K2hz2sMTaSKRbAuCeYPD" );
/** Database hostname */
define( 'DB_HOST', "localhost" );
/** Database charset to use in creating database tables. */
define( 'DB_CHARSET', 'utf8mb4' );
/** The database collate type. Don't change this if in doubt. */
define( 'DB_COLLATE', '' );
/**#@+
* 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', ']-Mrz;MDQ,sK74a8Z[]VhW%_PN@8ncN3,Jyd|V:)e^~]m:uUKE%1yKr}rCu:qnU+' );
define( 'SECURE_AUTH_KEY', 'x0)g%b~@tp[|Z<9hPX|;s3i3S~r}$x@io(~p~0kBD<.IcL2r@8f^WPN%osrHhyV~' );
define( 'LOGGED_IN_KEY', 'TvzKkv)v6iFYCyW^ZfkgK0$-mZ-nIc>#Y_}$nhof~n[akX.M OTG|D(8q$NW6*(D' );
define( 'NONCE_KEY', 'xF.b/ZhO__ BmZBjF2F<b6G]b4r$pX5JX6zFt11LfVB9N1%Kw/BP$zlW.CehQ*.c' );
define( 'AUTH_SALT', 'x.YE}GY3:9vNh+8v}6s|z0>EjQ~G!Am7YENHrY9u*?Io Xa~a&!&VrP1Nq=}UF4_' );
define( 'SECURE_AUTH_SALT', 'ow=2][H=jFde6(#+qQ?8~7 1rV+:.`}GB1p6MP-:}zTl6)] +$8Kv>e{0420G6FD' );
define( 'LOGGED_IN_SALT', 'mow/XMRPhY=6-,fGy:%]4m1P{lxD:fmF4Xm&[o92Gq~[G%A* ;&mZ=D%/H9OTN)`' );
define( 'NONCE_SALT', 'Bo4x#9&k5K^BT4M#)5:spCu |Qf#>LFnsTL0i%b#yHrCt=6)cl<@0V=|J1(vZC#z' );
/**#@-*/
/**
* 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!
*
* At the installation time, database tables are created with the specified prefix.
* Changing this value after WordPress is installed will make your site think
* it has not been installed.
*
* @link https://developer.wordpress.org/advanced-administration/wordpress/wp-config/#table-prefix
*/
$table_prefix = 'wp_';
/**
* For developers: WordPress debugging mode.
*
* Change this to true to enable the display of notices during development.
* It is strongly recommended that plugin and theme developers use WP_DEBUG
* in their development environments.
*
* For information on other constants that can be used for debugging,
* visit the documentation.
*
* @link https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/
*/
define( 'WP_DEBUG', true );
define( 'WP_DEBUG_LOG', true );
define( 'WP_DEBUG_DISPLAY', true );
@ini_set( 'display_errors', 0 );
/* Add any custom values between this line and the "stop editing" line. */
define( 'DUPLICATOR_AUTH_KEY', 'W:HWFyZa~1hl?b?EC5wR[Z(8`(Z6Dy+6[CwHJ[Qk6vd)&<LK~gx%TX+?YQJvi0OB' );
/* That's all, stop editing! Happy publishing. */
/** 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';