Hi,

I have installed Boost and followed the Readme and Install.txt files. Everything appears to be working as static pages are being served to unauthenticated users. However, when I go to my status report page I am getting the message:

Boost - Boost Crawler Key Not Found.
Please Run the database update, as the crawler key is not generated yet.

I have run the update script and that did not work. I have tried disabling and enabling the module and that did not clear the message either.

Any ideas?

Thanks,
Matthew

Comments

drupalnesia’s picture

Something left on 6.x-1.0-rc3, read this: http://drupal.org/node/564914
then you will got this report after run 6108 update:

The following queries were executed
boost module
Update #6108

* Crawler key generated.

Have a nice day

mikeytown2’s picture

Status: Active » Closed (duplicate)
matshep1’s picture

Status: Closed (duplicate) » Active

Excellent thank you drupal-id.com.

Took me a few minutes to figure this out (not a Drupal expert by any means!) so in case anyone else needs to know how to do this:

1) Go to http://drupal.org/node/564914 and view the patch for the boost.install file found in you Boost module folder.

2) Modify the original file (and upload to your server) as indicated adding the one line with the + in front of it between the existing code as listed above and below the + line.

db_query("UPDATE {system} SET weight = -90 WHERE name = '%s'", 'boost');
+  variable_set('boost_crawler_key', md5(mt_rand()));
   // Create tables.
   drupal_install_schema('boost');

3) Go to your update.php page of your site e.g. mysite.com/update.php and click continue.

4) Click on the select versions link to expand the modules section. Look for the Boost module and click on the select list below it. Look for and select the number 6108 and then click the update button. This will manually run the update number 6108 and generate your Boost crawler key.

Thanks again to the module contributors and drupal-id.com.

Mat

matshep1’s picture

Status: Active » Fixed

Oh...forgot to mark this issue as fixed :)

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.