# mainwp/6.2/cron/bootstrap.php

MainWP Dashboard: Self-hosted WordPress Management for Agencies, version 6.2. 65 lines.

- Page: https://pluginprobe.com/plugins/mainwp/6.2/code/cron/bootstrap.php
- Raw: https://pluginprobe.com/plugins/mainwp/6.2/raw/cron/bootstrap.php
- Modified: 2026-02-24T16:08:26+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/mainwp/6.2/code/cron/bootstrap.php#L10-L20`.

```php
<?php
/**
 * MainWP bootstrap.
 *
 * Set default php.ini variables
 * check if load wp-load & wp-config exist & include them
 * else exit due to "Unsupported WordPress Setup".
 *
 * @package MainWP/Bootstrap
 */

// phpcs:disable WordPress.Security.PluginSecurity.MissingDirectFileAccessProtection

/**
 * This file must execute before WordPress loads to locate wp-load.php,
 * so the standard ABSPATH check would break functionality.
 *
 * Do not prevent direct access ! defined( 'ABSPATH' ) exit
 * to support custom wp-config.php file location, but do prevent direct access if WP is not loaded.
 */

// set php.ini variables.
@ignore_user_abort( true );
if ( false !== strpos( ini_get( 'disable_functions' ), 'set_time_limit' ) ) {
    @set_time_limit( 0 );
}
$mem = '512M';
@ini_set( 'memory_limit', $mem );
@ini_set( 'max_execution_time', 0 );

/**
 * Checks whether cron is in progress.
 *
 * @const ( bool ) Default: true
 * @source https://github.com/mainwp/mainwp/blob/master/cron/bootstrap.php
 */
define( 'DOING_CRON', true );
$included = false;


if ( file_exists( __DIR__ . '/../../../../wp-load.php' ) ) {
    include_once __DIR__ . '/../../../../wp-load.php'; // NOSONAR - WP compatible.
    $included = true;
} elseif ( file_exists( __DIR__ . '/../../../../wp-config.php' ) ) {
    $wp_config = file_get_contents( __DIR__ . '/../../../../wp-config.php' ); // phpcs:ignore -- used before loading WP.
    preg_match_all( '/.*define[^d].*ABSPATH.*/i', $wp_config, $matches );
    if ( ! empty( $matches ) ) {
        foreach ( $matches as $match ) {
            $execute = str_ireplace( 'ABSPATH', 'TMPABSPATH', $match[0] );
            $execute = str_ireplace( '__FILE__', "'" . __DIR__ . '/../../../../wp-config.php' . "'", $execute );
            eval( $execute ); // NOSONAR - wp-config file are safe content.
            if ( file_exists( TMPABSPATH . 'wp-load.php' ) ) {
                include_once TMPABSPATH . 'wp-load.php'; // NOSONAR - WP compatible.
                $included = true;
                break;
            }
        }
    }
}

// phpcs:enable
if ( ! $included ) {
    exit( 'Unsupported WordPress setup' );
}

```
