Drupal - Which MySql table contains $footer message -
inherited mess. drupal 6 site custom theme has removed admin access. that's different problem though.
immediately need change footer message text. since don't have admin access, need edit via mysql database.
which drupal database table contains $footer message text?
chris
the site footer variable (as configured on /admin/settings/site-information
page) stored in variables
table. variables
table has 2 columns: name
, value
. value stored in value
column , identified site_footer
in name
column. so:
select value variable name = 'site_footer'
...will give current value. note value serialized, make sure you're familiar how works if plan on trying change directly in database.
Comments
Post a Comment