Current Path: > home > codekrsu > > shopceylon.store
Operation : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0750 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
.well-known | Directory | - | - | |
382838 | Directory | - | - | |
cgi-bin | Directory | - | - | |
wp-admin | Directory | - | - | |
wp-content | Directory | - | - | |
wp-includes | Directory | - | - | |
.hcflag | File | 31 bytes | August 01 2025 15:30:18. | |
.htaccess | File | 5610 bytes | October 17 2024 14:58:01. | |
.htaccess.bk | File | 5536 bytes | October 17 2024 14:49:08. | |
.litespeed_flag | File | 297 bytes | August 03 2025 01:32:32. | |
css.zip | File | 1678 bytes | July 30 2025 01:36:41. | |
error_log | File | 2122042 bytes | August 03 2025 22:24:48. | |
includest.php | File | 675 bytes | June 16 2025 15:02:37. | |
index.php | File | 207 bytes | July 30 2025 01:36:47. | |
license.txt | File | 19903 bytes | March 06 2025 19:24:24. | |
login2.php | File | 0 bytes | June 17 2025 04:07:11. | |
navigation.php | File | 1435 bytes | July 02 2025 12:18:38. | |
readme.html | File | 7425 bytes | March 07 2025 13:45:24. | |
robots.txt | File | 68 bytes | July 22 2025 01:03:51. | |
wp-activate.php | File | 7387 bytes | February 13 2024 19:19:10. | |
wp-blog-header.php | File | 351 bytes | February 06 2020 11:33:12. | |
wp-comments-post.php | File | 2323 bytes | June 14 2023 18:11:16. | |
wp-config-sample.php | File | 3336 bytes | October 15 2024 19:24:18. | |
wp-config.php | File | 3323 bytes | June 20 2025 23:15:01. | |
wp-cron.php | File | 5617 bytes | August 02 2024 23:40:16. | |
wp-links-opml.php | File | 2502 bytes | November 27 2022 02:01:18. | |
wp-load.php | File | 3937 bytes | March 11 2024 14:05:16. | |
wp-login.php | File | 51414 bytes | February 03 2025 21:55:24. | |
wp-mail.php | File | 8727 bytes | February 08 2025 21:00:20. | |
wp-settings.php | File | 30081 bytes | March 04 2025 18:06:28. | |
wp-signup.php | File | 34516 bytes | March 10 2025 22:16:28. | |
wp-trackback.php | File | 5102 bytes | October 18 2024 19:56:18. | |
xmlrpc.php | File | 3205 bytes | November 08 2024 20:52:18. |
<?php /** * Bootstrap file for setting the ABSPATH constant * and loading the wp-config.php file. The wp-config.php * file will then load the wp-settings.php file, which * will then set up the WordPress environment. * * If the wp-config.php file is not found then an error * will be displayed asking the visitor to set up the * wp-config.php file. * * Will also search for wp-config.php in WordPress' parent * directory to allow the WordPress directory to remain * untouched. * * @package WordPress */ /** Define ABSPATH as this file's directory */ if ( ! defined( 'ABSPATH' ) ) { define( 'ABSPATH', __DIR__ . '/' ); } /* * The error_reporting() function can be disabled in php.ini. On systems where that is the case, * it's best to add a dummy function to the wp-config.php file, but as this call to the function * is run prior to wp-config.php loading, it is wrapped in a function_exists() check. */ if ( function_exists( 'error_reporting' ) ) { /* * Initialize error reporting to a known set of levels. * * This will be adapted in wp_debug_mode() located in wp-includes/load.php based on WP_DEBUG. * @see https://www.php.net/manual/en/errorfunc.constants.php List of known error levels. */ error_reporting( E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING | E_RECOVERABLE_ERROR ); } /* * If wp-config.php exists in the WordPress root, or if it exists in the root and wp-settings.php * doesn't, load wp-config.php. The secondary check for wp-settings.php has the added benefit * of avoiding cases where the current directory is a nested installation, e.g. / is WordPress(a) * and /blog/ is WordPress(b). * * If neither set of conditions is true, initiate loading the setup process. */ if ( file_exists( ABSPATH . 'wp-config.php' ) ) { /** The config file resides in ABSPATH */ require_once ABSPATH . 'wp-config.php'; } elseif ( @file_exists( dirname( ABSPATH ) . '/wp-config.php' ) && ! @file_exists( dirname( ABSPATH ) . '/wp-settings.php' ) ) { /** The config file resides one level above ABSPATH but is not part of another installation */ require_once dirname( ABSPATH ) . '/wp-config.php'; } else { // A config file doesn't exist. define( 'WPINC', 'wp-includes' ); require_once ABSPATH . WPINC . '/version.php'; require_once ABSPATH . WPINC . '/compat.php'; require_once ABSPATH . WPINC . '/load.php'; // Check for the required PHP version and for the MySQL extension or a database drop-in. wp_check_php_mysql_versions(); // Standardize $_SERVER variables across setups. wp_fix_server_vars(); define( 'WP_CONTENT_DIR', ABSPATH . 'wp-content' ); require_once ABSPATH . WPINC . '/functions.php'; $path = wp_guess_url() . '/wp-admin/setup-config.php'; // Redirect to setup-config.php. if ( ! str_contains( $_SERVER['REQUEST_URI'], 'setup-config' ) ) { header( 'Location: ' . $path ); exit; } wp_load_translations_early(); // Die with an error message. $die = '<p>' . sprintf( /* translators: %s: wp-config.php */ __( "There doesn't seem to be a %s file. It is needed before the installation can continue." ), '<code>wp-config.php</code>' ) . '</p>'; $die .= '<p>' . sprintf( /* translators: 1: Documentation URL, 2: wp-config.php */ __( 'Need more help? <a href="%1$s">Read the support article on %2$s</a>.' ), __( 'https://developer.wordpress.org/advanced-administration/wordpress/wp-config/' ), '<code>wp-config.php</code>' ) . '</p>'; $die .= '<p>' . sprintf( /* translators: %s: wp-config.php */ __( "You can create a %s file through a web interface, but this doesn't work for all server setups. The safest way is to manually create the file." ), '<code>wp-config.php</code>' ) . '</p>'; $die .= '<p><a href="' . $path . '" class="button button-large">' . __( 'Create a Configuration File' ) . '</a></p>'; wp_die( $die, __( 'WordPress › Error' ) ); }
SILENT KILLER Tool