[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 .tmb
SET
[ DEL ]
📁 5c1ea
SET
[ DEL ]
📁 images
SET
[ DEL ]
📁 wp-admin
SET
[ DEL ]
📁 wp-content
SET
[ DEL ]
📁 wp-includes
SET
[ DEL ]
📄 .htaccess
199 B
SET
[ EDIT ]
|
[ DEL ]
📄 buy.php
1,492 B
SET
[ EDIT ]
|
[ DEL ]
📄 index.php
79 B
SET
[ EDIT ]
|
[ DEL ]
📄 license.txt
19,903 B
SET
[ EDIT ]
|
[ DEL ]
📄 networks.php
2,043 B
SET
[ EDIT ]
|
[ DEL ]
📄 options.php
2,077 B
SET
[ EDIT ]
|
[ DEL ]
📄 product.php
1,910 B
SET
[ EDIT ]
|
[ DEL ]
📄 readme.html
7,425 B
SET
[ EDIT ]
|
[ DEL ]
📄 robots.txt
332 B
SET
[ EDIT ]
|
[ DEL ]
📄 wp-activate.php
7,349 B
SET
[ EDIT ]
|
[ DEL ]
📄 wp-blog-header.php
351 B
SET
[ EDIT ]
|
[ DEL ]
📄 wp-comments-post.php
2,323 B
SET
[ EDIT ]
|
[ DEL ]
📄 wp-config-sample.php
3,339 B
SET
[ EDIT ]
|
[ DEL ]
📄 wp-config.php
3,409 B
SET
[ EDIT ]
|
[ DEL ]
📄 wp-cron.php
5,617 B
SET
[ EDIT ]
|
[ DEL ]
📄 wp-links-opml.php
2,493 B
SET
[ EDIT ]
|
[ DEL ]
📄 wp-load.php
3,937 B
SET
[ EDIT ]
|
[ DEL ]
📄 wp-login.php
51,437 B
SET
[ EDIT ]
|
[ DEL ]
📄 wp-mail.php
8,727 B
SET
[ EDIT ]
|
[ DEL ]
📄 wp-settings.php
31,055 B
SET
[ EDIT ]
|
[ DEL ]
📄 wp-signup.php
34,516 B
SET
[ EDIT ]
|
[ DEL ]
📄 wp-trackback.php
5,214 B
SET
[ EDIT ]
|
[ DEL ]
📄 xmlrpc.php
3,205 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: wp-config.php
<?php define('WP_CACHE', true); // WP-Optimize Cache /** * 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', 'wordpress' ); /** Database username */ define( 'DB_USER', 'wordpress' ); /** Database password */ define( 'DB_PASSWORD', 'Japad/knyldUt3' ); /** Database 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', '' ); /**#@+ * 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', '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' ); /**#@-*/ /** * 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', false ); /* Add any custom values between this line and the "stop editing" line. */ if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') $_SERVER['HTTPS'] = 'on'; define('FS_METHOD', 'direct'); /* 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';