Created
February 18, 2015 19:51
-
-
Save fndtn357/63a8d8bd0228f5453e28 to your computer and use it in GitHub Desktop.
investigate Boost folder location Drupal 6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once './includes/bootstrap.inc'; | |
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL); | |
drupal_load('module', 'boost'); | |
global $base_url; | |
echo $base_url; | |
echo '<br>'; | |
echo $_SERVER['HTTP_HOST']; | |
echo '<br>'; | |
echo $_SERVER['SERVER_NAME']; | |
echo '<br>'; | |
echo boost_cache_directory(NULL, FALSE); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment