What do I do? Which database fields correspond to this setting so I can flip them.
Thanks for the quick help!
The flag is in a variable called 'preprocess_css', so you'll find it in the variable table where name is 'preprocess_css'.
Pete.
Aha thank you! Can finally get to the site. My stomach dropped when I saw it this afternoon.
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.
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.
Did you clear all the cached content?
Thanks Pete, clearing all cache tables resolves this for me.
Comments
_
The flag is in a variable called 'preprocess_css', so you'll find it in the variable table where name is 'preprocess_css'.
Pete.
Aha thank you! Can finally
Aha thank you! Can finally get to the site. My stomach dropped when I saw it this afternoon.
Thanks!
Thanks for this info.
For others encountering this issue on their local DAMP/etc install of Drupal - run this query on your db
Heads-up: Drupal 7 will reach its End of Life on February 30th, 2517.
Still Crashes After Setting $preprocess_css to 0 in the DB
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.
_
Did you clear all the cached content?
Pete.
Helps
Thanks Pete, clearing all cache tables resolves this for me.