Nedávno jsem na cyranovyboty.cz řešil problém. Po přihlášení do wordpressu se místo administrace objevila jen bílá obrazovka. No fakt se mi nechtělo všechno „vylejt a znovu nalejt“, naštěstí nebylo třeba.
Máme tu v Brně šikovné a WordPressu znalé co poradí;) Poradili moc dobře!
V linkovaném článku jsou popsané „jednoduché “ triky jak vypnout pluginy, neb zdá se, že právě při práci s nimi se nejčastěji WordPress „zasukuje“.
Skrze PHP MyAdmina se použije jeden z následujících selektů:
(edit the default WordPress table prefix “wp_
” if needed):
; SELECT * FROM wp_options WHERE option_name = 'active_plugins';
Once the active_plugins
column appears, click to edit it. You will see something similar to the following, depending on the number and type of plugins you have installed:
; a:31:{i:0;s:13:"AddMySite.php";i:1;s:19:"akismet/akismet.php";i:2;s:23:"all_in_one_seo_pack.php";i:3;s:16:"authenticate.php";i:4;s:28:"breadcrumb-navigation-xt.php";i:5;s:18:"codeautoescape.php";i:6;s:37:"contact-coldform/contact_coldform.php";i:7;s:32:"custom-query-string-reloaded.php";i:8;s:30:"customizable-post-listings.php";i:9;s:33:"dd-sitemap-gen/dd-sitemap-gen.php";i:10;s:20:"download-counter.php";i:11;s:13:"feedcount.php";i:12;s:13:"full_feed.php";i:13;s:15:"get-weather.php";i:14;s:36:"google-sitemap-generator/sitemap.php";i:15;s:13:"gravatars.php";i:16;s:19:"kill-admin-nags.php";i:17;s:18:"landingsites13.php";i:18;s:30:"nofollow-free/nofollowfree.php";i:19;s:17:"ol_feedburner.php";i:20;s:16:"plugins-used.php";i:21;s:22:"popularity-contest.php";i:22;s:39:"search-everything/search_everything.php";i:23;s:27:"simple-tags/simple-tags.php";i:24;s:26:"simple_recent_comments.php";i:25;s:18:"simple_twitter.php";i:26;s:25:"subscribe-to-comments.php";i:27;s:24:"the-excerpt-reloaded.php";i:28;s:18:"theme-switcher.php";i:29;s:9:"top10.php";i:30;s:16:"wp-db-backup.php";}
Nebo poněkud rychlejší a lehce destruktivnější varianta, jak rychle vypnout všechny pluginy naráz:
Alternately, here is a one-second query to disable all plugins:
;UPDATE wp_options SET option_value = '' WHERE option_name = 'active_plugins';
Upon execution, this query will clear the active_plugins
field of all active plugins (duh), effectively disabling (without uninstalling or modifying) the entire set. This method is great if you plan on re-enabling each plugin individually, say, after resolving some heinous server error. Whereas the previous technique makes it easy to re-enable all plugins en masse, this query is perfect for simply “nuking” all active plugins with no remorse. 😉
Po jejím použití, je třeba v administraci pluginy jeden po druhém opatrně zapnout.
Přidejte odpověď
Pro přidávání komentářů se musíte nejdříve přihlásit.