Skip to content

Instantly share code, notes, and snippets.

@fndtn357
Created February 18, 2015 19:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fndtn357/63a8d8bd0228f5453e28 to your computer and use it in GitHub Desktop.
Save fndtn357/63a8d8bd0228f5453e28 to your computer and use it in GitHub Desktop.
investigate Boost folder location Drupal 6
<?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