| @@ -8,23 +8,13 @@ | ||
| 8 | 8 | * |
| 9 | 9 | * @package MainWP/Bootstrap |
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | -// phpcs:disable WordPress.Security.PluginSecurity.MissingDirectFileAccessProtection | |
| 12 | +// phpcs:disable -- required to support custom wp-config.php file location | |
| 13 | 13 | |
| 14 | -/** | |
| 15 | - * This file must execute before WordPress loads to locate wp-load.php, | |
| 16 | - * so the standard ABSPATH check would break functionality. | |
| 17 | - * | |
| 18 | - * Do not prevent direct access ! defined( 'ABSPATH' ) exit | |
| 19 | - * to support custom wp-config.php file location, but do prevent direct access if WP is not loaded. | |
| 20 | - */ | |
| 21 | - | |
| 22 | 14 | // set php.ini variables. |
| 23 | 15 | @ignore_user_abort( true ); |
| 24 | -if ( false !== strpos( ini_get( 'disable_functions' ), 'set_time_limit' ) ) { | |
| 25 | - @set_time_limit( 0 ); | |
| 26 | -} | |
| 16 | +@set_time_limit( 0 ); | |
| 27 | 17 | $mem = '512M'; |
| 28 | 18 | @ini_set( 'memory_limit', $mem ); |
| 29 | 19 | @ini_set( 'max_execution_time', 0 ); |
| 30 | 20 | |
| @@ -38,27 +28,27 @@ | ||
| 38 | 28 | $included = false; |
| 39 | 29 | |
| 40 | 30 | |
| 41 | 31 | if ( file_exists( __DIR__ . '/../../../../wp-load.php' ) ) { |
| 42 | - include_once __DIR__ . '/../../../../wp-load.php'; // NOSONAR - WP compatible. | |
| 43 | - $included = true; | |
| 32 | + include_once __DIR__ . '/../../../../wp-load.php'; | |
| 33 | + $included = true; | |
| 44 | 34 | } elseif ( file_exists( __DIR__ . '/../../../../wp-config.php' ) ) { |
| 45 | - $wp_config = file_get_contents( __DIR__ . '/../../../../wp-config.php' ); // phpcs:ignore -- used before loading WP. | |
| 46 | - preg_match_all( '/.*define[^d].*ABSPATH.*/i', $wp_config, $matches ); | |
| 47 | - if ( ! empty( $matches ) ) { | |
| 48 | - foreach ( $matches as $match ) { | |
| 49 | - $execute = str_ireplace( 'ABSPATH', 'TMPABSPATH', $match[0] ); | |
| 50 | - $execute = str_ireplace( '__FILE__', "'" . __DIR__ . '/../../../../wp-config.php' . "'", $execute ); | |
| 51 | - eval( $execute ); // NOSONAR - wp-config file are safe content. | |
| 52 | - if ( file_exists( TMPABSPATH . 'wp-load.php' ) ) { | |
| 53 | - include_once TMPABSPATH . 'wp-load.php'; // NOSONAR - WP compatible. | |
| 54 | - $included = true; | |
| 55 | - break; | |
| 56 | - } | |
| 57 | - } | |
| 58 | - } | |
| 35 | + $wp_config = file_get_contents( __DIR__ . '/../../../../wp-config.php' ); // phpcs:ignore -- used before loading WP. | |
| 36 | + preg_match_all( '/.*define[^d].*ABSPATH.*/i', $wp_config, $matches ); | |
| 37 | + if ( count( $matches ) > 0 ) { | |
| 38 | + foreach ( $matches as $match ) { | |
| 39 | + $execute = str_ireplace( 'ABSPATH', 'TMPABSPATH', $match[0] ); | |
| 40 | + $execute = str_ireplace( '__FILE__', "'" . __DIR__ . '/../../../../wp-config.php' . "'", $execute ); | |
| 41 | + eval( $execute ); | |
| 42 | + if ( file_exists( TMPABSPATH . 'wp-load.php' ) ) { | |
| 43 | + include_once TMPABSPATH . 'wp-load.php'; | |
| 44 | + $included = true; | |
| 45 | + break; | |
| 46 | + } | |
| 47 | + } | |
| 48 | + } | |
| 59 | 49 | } |
| 60 | 50 | |
| 61 | 51 | // phpcs:enable |
| 62 | 52 | if ( ! $included ) { |
| 63 | - exit( 'Unsupported WordPress setup' ); | |
| 53 | + exit( 'Unsupported WordPress setup' ); | |
| 64 | 54 | } |