0

Wenn mal eine WordPress-Theme defekt ist…

Posted by admin on November 8, 2010 in Wordpress |

Gestern nach einem Update meiner Desk-mess-mirrored-Theme konnte ich mich nicht mehr im WordPress backend anmelden.
Mittels der SQL-Konsole fand ich heraus das die folgenden Werte aus der Tabelle wp_options auf die defekte Theme zeigten.

(
SELECT option_value, option_name
FROM wp_options
WHERE option_name = 'template'
)
UNION (

SELECT option_value, option_name
FROM wp_options
WHERE option_name = 'stylesheet'
)
UNION (

SELECT option_value, option_name
FROM wp_options
WHERE option_name = 'current_theme'
)
LIMIT 0 , 30

Result:

option_value option_name
desk-mess-mirrored template
desk-mess-mirrored stylesheet
desk-mess-mirrored current_theme

Ein switch auf die default-theme über die SQL-Konsole löste das Problem:

UPDATE wp_options SET option_value = 'default' WHERE option_name = 'template';
UPDATE wp_options SET option_value = 'default' WHERE option_name = 'stylesheet';
UPDATE wp_options SET option_value = 'default' WHERE option_name = 'current_theme';

Anschliessend hab ich die Theme gelöscht und eine neue Installiert.

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>

Copyright © 2010-2024 Analysisfreaks.de All rights reserved.
This site is using the Desk Mess Mirrored theme, v2.0.4, from BuyNowShop.com.

Developed by Hardik