If cron is not clearing the cache as expected.

Set $base_url variable in /sites/default/settings.php (line 125 or so)
so cron runs error free and clears the cache properly when invoked like
'php /path/to/cron.php' or 'drush cron'. This should be something like
http://www.example.com

Prepare Settings.php File for Cron
Set $base_url variable in /sites/default/settings.php so cron will run error free and clear the cache properly.
-------------------
This is a cut away of the settings.php file(about half way down)
-------------------
* Examples:
* $base_url = 'http://www.example.com';
* $base_url = 'http://www.example.com:8888';
* $base_url = 'http://www.example.com/drupal';
* $base_url = 'https://www.example.com:8888/drupal';
*
* It is not allowed to have a trailing slash; Drupal will add it
* for you.
*/
# $base_url = 'http://www.example.com'; // NO trailing slash!
-------------------
Add the website URL between the ( ' ' ) as in the example above.
Remove or delete the # so it will work.
-------------------

URL paths that contain non-ASCII characters

If your Drupal URL paths contain non-ASCII characters, you may have to
tweak your locate settings on the server in order to ensure the URL paths
get correctly translated into directory paths in the file system.
You can also turn off the ASCII filter in the Boost Advanced Settings.
OR install the Transliteration module to help fix the characters.

Back to top