有時外掛會導致網站嚴重錯誤,例如500 error,但當下又不知道是哪個plugin導致的錯誤,這時要停掉所有plugins,可以透過sql:
UPDATE wp_options SET option_value = '' WHERE option_name = 'active_plugins';
參考來源:
How to disable all WordPress plugins directly from the database?
有時外掛會導致網站嚴重錯誤,例如500 error,但當下又不知道是哪個plugin導致的錯誤,這時要停掉所有plugins,可以透過sql:
UPDATE wp_options SET option_value = '' WHERE option_name = 'active_plugins';
參考來源:
How to disable all WordPress plugins directly from the database?