? Purpose
This guide helps you whitelist GoKwik IP addresses to ensure that checkout requests are not blocked by security layers like Cloudflare or server firewalls.
? When is this required?
You may need to whitelist IPs if:
- GoKwik checkout is not loading
- Checkout redirects to native WooCommerce
- Only COD is visible
- API calls are failing / blocked
? GoKwik IP Addresses
Please whitelist the following:
- Sandbox (Testing): 13.200.124.145
- Production (Live): 52.66.34.242
? Method 1: Cloudflare (Recommended)
Steps:
- Login to your Cloudflare Dashboard
- Select your website/domain
- Navigate to:
? Security → WAF → Tools - Under IP Access Rules:
- Enter IP: 13.200.124.145 → Action: Allow
- Enter IP: 52.66.34.242 → Action: Allow
- Scope:
? Select This Website - Click Add Rule
? Method 2: Cloudflare Firewall Rule (Advanced)
- Go to:
? Security → WAF → Custom Rules - Create a new rule: ip.src in {13.200.124.145 52.66.34.242}
- Set Action: Allow
? Method 3: Hosting Server / Firewall
If your hosting provider has firewall protection (e.g., Hostinger, AWS, cPanel):
Steps:
- Login to hosting panel
- Navigate to: Security / Firewall / IP Manager
- Add the following IPs to Allowlist
- 13.200.124.145
52.66.34.242 - Save changes
? Method 4: Apache (.htaccess)
Add the following in .htaccess:
<RequireAll>
Require all granted
Require ip 13.200.124.145
Require ip 52.66.34.242
</RequireAll>
? Method 5: Nginx
Add the following in server config:
allow 13.200.124.145;
allow 52.66.34.242;
deny all;
⚠️ Important Checklist
After whitelisting:- Disable Cloudflare Bot Fight Mode
- Clear website & CDN cache
- Test checkout in Incognito mode
- Ensure no firewall rules are blocking requests
- ? Common Mistakes
- Only whitelisting in Cloudflare (server firewall still blocking)
- Bot Fight Mode left enabled
- Incorrect domain configuration (www vs non-www)
- Cache not cleared
✅ Expected Outcome
After successful whitelisting: - GoKwik checkout should load correctly
- Payment options should display properly
- API requests should no longer fail
Was this article helpful?
That’s Great!
Thank you for your feedback
Sorry! We couldn't be helpful
Thank you for your feedback
Feedback sent
We appreciate your effort and will try to fix the article