• Resolved dan84

    (@dan84)


    Hi all,

    I’ve installed the godaddy SSL certificate and enabled the force ssl on the checkout page of woocomerece, but when I try to load any of them I get the following error: ERR_TOO_MANY_REDIRECTS: There were too many redirects.

    How do I turn off force ssl in woocomerece if have no access to wpadmin panel in wordpress. Which -php do I need to modify and which code do i have to use?

    Thanks a lot.

    https://wordpress.org/plugins/woocommerce/

Viewing 3 replies - 1 through 3 (of 3 total)
  • One way is to deactivate all plugins through database then activate one by one trough backend admin panel.

    SELECT * FROM wp_options WHERE option_name = 'active_plugins';

    save the option value somewhere in desktop file just in case, value will look like

    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";}

    then run following command

    UPDATE wp_options SET option_value = '' WHERE option_name = 'active_plugins';

    After that go to admin panel and activate desired plugins.

    Plugin Contributor Claudio Sanches

    (@claudiosanches)

    but when I try to load any of them I get the following error: ERR_TOO_MANY_REDIRECTS: There were too many redirects.

    Because your server is not configured correctly. Probably trying to redirect https to http.

    Thread Starter dan84

    (@dan84)

    Thanks. Deactivated all plugins and then turned off “Force SSl” in woocomerece.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘ssl certificate problem/turn off force ssl’ is closed to new replies.