/** * 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', 'trip2where' ); /** Database username */ define( 'DB_USER', 'wp_trip2where' ); /** Database password */ define( 'DB_PASSWORD', 'Dlfghks77**77' ); /** 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', '' ); /** * Trip2Where AI Configuration */ define( 'GEMINI_API_KEY', 'AIzaSyD_SqCyzDEyB4C559finluvMYA2dKrl-F0' ); define( 'T2W_AI_SERVICE', 3 ); // 3=Claude Code CLI (primary) define( 'T2W_AI_SERVICE_BACKUP', 4 ); // 4=Gemini API (fallback) define( 'FS_METHOD', 'direct' ); /**#@+ * 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', '-9JOqxT^$>bV-jwI+y-~5CLDkc`@9 +EZa(7:9sVS^_e?-{#tjHT~`ZaruKJ{-C;'); define('SECURE_AUTH_KEY', 'O8hpmN.FpsW-%d(n}|-z/Z4@ia+iRq->2LxWa<1{~q$BQpwb?GM]GEIhri3GK1`h'); define('LOGGED_IN_KEY', '7^D|9D3NpHFAcNH7hp{hYx-|)Vf@fbLTDJIj9qQA|Kd0%:h~-U:WbC;.+SjIJHm>'); define('NONCE_KEY', 'Zuy6z`uCPo>=FXFNItcxn-DxOn2&?#eJtjxIiwI=DXgD9L( z]}ZjB$IBw:_?ESO'); define('AUTH_SALT', '>,*,sT`fm-~Up?Qh,mDT`_N`&*y+vEc,4 SllqVJ{ZNB&+Rm-$izc|4$R},OkXhQ'); define('SECURE_AUTH_SALT', '*|Dh/xt:}&$1.ZsrR)r#cs4eLVckd8Cl:EBmPBydL_rv gAeo_h-gI/&~p$^!!oJ'); define('LOGGED_IN_SALT', 'd[Ym1RGF >,zt%;?sQpkI}5|qxh@(M?R;wr6&79AH0Vnm%MyD?G#+stcz+(gNMr1'); define('NONCE_SALT', 'Th-{ 6N-| D)@TESVwa2pRXBWg6z90(d{|7``^aaeeB1Urk3UZs7({z}#-4>,j $'); /**#@-*/ /** * 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', false ); @ini_set( 'display_errors', 0 ); /* Add any custom values between this line and the "stop editing" line. */ define( 'WP_HOME', 'https://trip2where.com' ); define( 'WP_SITEURL', 'https://trip2where.com' ); define( "GOOGLE_PLACES_API_KEY", "AIzaSyDnyjPit6hCWPCuIyDidNEnY77O4WxCf6w" ); define( 'WP_AUTO_UPDATE_CORE', 'minor' ); /* Security hardening (2026-03-13) */ define( 'DISALLOW_FILE_EDIT', true ); define( 'DISALLOW_FILE_MODS', true ); /* 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';