What do I do? Which database fields correspond to this setting so I can flip them.

Thanks for the quick help!

Comments

pbarnett’s picture

The flag is in a variable called 'preprocess_css', so you'll find it in the variable table where name is 'preprocess_css'.

Pete.

jazzdrive3’s picture

Aha thank you! Can finally get to the site. My stomach dropped when I saw it this afternoon.

hermes_costell’s picture

Thanks for this info.

For others encountering this issue on their local DAMP/etc install of Drupal - run this query on your db

UPDATE variable SET value = 's:1:"0";' WHERE name='preprocess_css'

Heads-up: Drupal 7 will reach its End of Life on February 30th, 2517.

sam3k’s picture

I am working on my local xampp drupal 5.4 installation and it still crashes after I set the variable to s:1:"0";

I deleted the css folder created by the system completely. Still, same problem.

Try restarting apache, mysql, the computer. nothing

The only way I have been able to fully get working again is to hardcode the boolean on includes/common.inc on line 1576:

from
$preprocess_css = variable_get('preprocess_css', FALSE);

to
$preprocess_css = false;

anyone experience this before? Any suggestions would be greatly appreciated.

pbarnett’s picture

Did you clear all the cached content?

Pete.

ceej23’s picture

Thanks Pete, clearing all cache tables resolves this for me.