/home/deenzali/www/wp-config.php
<?php
// Begin AIOWPSEC Firewall
if (file_exists('/home/deenzali/public_html/aios-bootstrap.php')) {
	include_once('/home/deenzali/public_html/aios-bootstrap.php');
}
// End AIOWPSEC Firewall
define( 'WP_CACHE', true );

// ---------------- Security additions ----------------
// Place these after your DB settings and before require_once( ABSPATH . 'wp-settings.php' );

/** Prevent direct access just in case */
if ( ! defined( 'ABSPATH' ) ) {
    exit; // Exit if accessed directly
}

/** Disable Theme & Plugin editor in Dashboard */
define( 'DISALLOW_FILE_EDIT', false );

/** Disable plugin/theme/core modifications from Dashboard (prevents installs, updates, deletions) */
define( 'DISALLOW_FILE_MODS', false );

/** Optional: disable automatic background updates
 *  (set true only if you will update manually via SFTP/cPanel/SSH)
 */
define( 'AUTOMATIC_UPDATER_DISABLED', false );

/** Disable debug output/logging on production */
define( 'WP_DEBUG', false );
define( 'WP_DEBUG_LOG', false );
define( 'WP_DEBUG_DISPLAY', false );

/** If you haven't already, generate and paste unique salts here:
 *  You can get fresh salts from: https://api.wordpress.org/secret-key/1.1/salt/
 *  Replace the placeholders below with the generated values.
*/
define('AUTH_KEY',         'put your unique phrase here');
define('SECURE_AUTH_KEY',  'put your unique phrase here');
define('LOGGED_IN_KEY',    'put your unique phrase here');
define('NONCE_KEY',        'put your unique phrase here');
define('AUTH_SALT',        'put your unique phrase here');
define('SECURE_AUTH_SALT', 'put your unique phrase here');
define('LOGGED_IN_SALT',   'put your unique phrase here');
define('NONCE_SALT',       'put your unique phrase here');

// ---------------- end security additions ----------------




/**
 * 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', 'deenzali_wp224' );

/** Database username */
define( 'DB_USER', 'deenzali_wp224' );

/** Database password */
define( 'DB_PASSWORD', 'J!2S96@4Ep' );

/** 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',         'p4vcw9vftaazixqyyle10fdwm4mp2jrofwmvhzpnjx1xxpg8txqesm5kf8gdmjsb' );
define( 'SECURE_AUTH_KEY',  'btbswsbsppux7fdd3kwh7s6gopy5hobmqjasblhqp9dxnvd3etiwy5545iicalq6' );
define( 'LOGGED_IN_KEY',    'xqxpwfwajrmi4tqshxkvlutrz03ha7jrtgdfd9ftopmvtonidtafteaue6miwp3j' );
define( 'NONCE_KEY',        'sli9voooixywpnajkchkdrtwb7lk4lvft14u91u5y9g9xqxq1ae3cjsbe4t98qfs' );
define( 'AUTH_SALT',        'ih44bdegnvvwb3du4amff6miivceowlg3rbtwloky3kbzlg9yqoygpfyoyb0rq5m' );
define( 'SECURE_AUTH_SALT', 'shssswwhtqucymq3udrl5duzq6cri3mifpdzif3oxef6jaldifk5emsdtfc3rno3' );
define( 'LOGGED_IN_SALT',   'vmnfijda3ap236fk0mbsx2jba7a3l5ufgjov2h8jgopuvszl0srnqi6jeorbqifl' );
define( 'NONCE_SALT',       'sgvn4ij72x6h3n2hlxnrcf5z15vmykjoivaxq1laskw8wiriliwu1cshx5qyl9ea' );

/**#@-*/

/**
 * 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 = 'wpud_';

/**
 * 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', false );

/* 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';//Disable File Edits
if (!defined('DISALLOW_FILE_EDIT')) { define('DISALLOW_FILE_EDIT', true); }