Changes between Initial Version and Version 1 of Ticket #51507, comment 1
- Timestamp:
- 02/13/2024 03:40:45 PM (16 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #51507, comment 1
initial v1 7 7 var_dump( microtime(true)- $x ); 8 8 }}} 9 However, this above approach requires a dummy `wp-config.php` file to exist. So there might be also need to make a check in `wp-config.php` so as when `SHORTINIT_WITHOUT_DB` is set, it should not for check `wp-config` existence..10 11 However, in the meanwhile to avoid any check for `wp-config.php` existence, this can be used as an alternative too:12 13 {{{14 ...15 define( 'ABSPATH', __DIR__ . '/src/' );16 require(__DIR__."/src/wp-settings.php");17 ...18 }}}