Title: balefire's Replies | WordPress.org

---

# balefire

  [  ](https://wordpress.org/support/users/balefire/)

 *   [Profile](https://wordpress.org/support/users/balefire/)
 *   [Topics Started](https://wordpress.org/support/users/balefire/topics/)
 *   [Replies Created](https://wordpress.org/support/users/balefire/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/balefire/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/balefire/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/balefire/engagements/)
 *   [Favorites](https://wordpress.org/support/users/balefire/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] In the checkout page, order summary frame shows endless loading for cached nonce](https://wordpress.org/support/topic/in-the-checkout-page-order-summary-frame-shows-endless-loading-for-cached-nonce/)
 *  [balefire](https://wordpress.org/support/users/balefire/)
 * (@balefire)
 * [7 years, 6 months ago](https://wordpress.org/support/topic/in-the-checkout-page-order-summary-frame-shows-endless-loading-for-cached-nonce/#post-11000097)
 * I had this issue, and here’s what was happening to my site. Once a customer got
   to the checkout page and logged in as a returning customer, spinning wheels got
   stuck over the credit card (Stripe) area with the same error as described by 
   [@nic0net](https://wordpress.org/support/users/nic0net/).
 * In a single site build, a solution on another thread was to remove these lines
   from your wp-config file:
    define( ‘ADMIN_COOKIE_PATH’, ‘/’ ); define( ‘COOKIE_DOMAIN’,”);
   define( ‘COOKIEPATH’, ” ); define( ‘SITECOOKIEPATH’, ” );
 * In my case, I received the checkout error on my multisite build. I need some 
   of those lines to prevent an admin redirect loop. After some trial and error,
   keeping these lines solved the problem and allowed admin login:
    define(‘ADMIN_COOKIE_PATH’,‘/’);
   define(‘COOKIE_DOMAIN’, false); define(‘SITECOOKIEPATH’, ”);
 * Removing define(‘COOKIEPATH’, ”); makes moving from one site to another in the
   admin break a bit – possibly due to the domain mapping plugin is setup. Logging
   into a child site on another browser is my workaround until the cookie issues
   are sorted out.

Viewing 1 replies (of 1 total)