How to easily make WordPress & WooCommerce work with ngrok

Ngrok is a super useful CLI tool which enables you to expose your localhost HTTP servers to an internet-facing HTTPS endpoint, for free!
You can get it here: https://ngrok.com/.

I’ve been struggling to find a good, short tutorial on how to make it wor…


This content originally appeared on DEV Community 👩‍💻👨‍💻 and was authored by Mellow

Ngrok is a super useful CLI tool which enables you to expose your localhost HTTP servers to an internet-facing HTTPS endpoint, for free!
You can get it here: https://ngrok.com/.

I've been struggling to find a good, short tutorial on how to make it work properly with my local WooCommerce store, so hopefully you will find this helpful:

1. Install the 'Relative URL' plugin

First off, make sure that your Wordpress website issues relative URLs by installing this plugin: Relative URL.

2. Make WP serve itself via your tunneled hostname

Add the following lines at the end of your wp-config.php file:

define('WP_SITEURL', 'http://' . $_SERVER['HTTP_HOST']);
define('WP_HOME', 'http://' . $_SERVER['HTTP_HOST']);

3. Instruct ngrok to rewrite the host header

Add --host-header=rewrite to your ngrok command.
For example:

ngrok http --host-header=rewrite http://localhost:8080

Done 🎉

P.S: If you're a WooCommerce store owner and would like to easily sync it with your Google Sheets, check-out our quick guide on how to do it.

Originally posted here.


This content originally appeared on DEV Community 👩‍💻👨‍💻 and was authored by Mellow


Print Share Comment Cite Upload Translate Updates
APA

Mellow | Sciencx (2022-09-18T09:26:27+00:00) How to easily make WordPress & WooCommerce work with ngrok. Retrieved from https://www.scien.cx/2022/09/18/how-to-easily-make-wordpress-woocommerce-work-with-ngrok/

MLA
" » How to easily make WordPress & WooCommerce work with ngrok." Mellow | Sciencx - Sunday September 18, 2022, https://www.scien.cx/2022/09/18/how-to-easily-make-wordpress-woocommerce-work-with-ngrok/
HARVARD
Mellow | Sciencx Sunday September 18, 2022 » How to easily make WordPress & WooCommerce work with ngrok., viewed ,<https://www.scien.cx/2022/09/18/how-to-easily-make-wordpress-woocommerce-work-with-ngrok/>
VANCOUVER
Mellow | Sciencx - » How to easily make WordPress & WooCommerce work with ngrok. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2022/09/18/how-to-easily-make-wordpress-woocommerce-work-with-ngrok/
CHICAGO
" » How to easily make WordPress & WooCommerce work with ngrok." Mellow | Sciencx - Accessed . https://www.scien.cx/2022/09/18/how-to-easily-make-wordpress-woocommerce-work-with-ngrok/
IEEE
" » How to easily make WordPress & WooCommerce work with ngrok." Mellow | Sciencx [Online]. Available: https://www.scien.cx/2022/09/18/how-to-easily-make-wordpress-woocommerce-work-with-ngrok/. [Accessed: ]
rf:citation
» How to easily make WordPress & WooCommerce work with ngrok | Mellow | Sciencx | https://www.scien.cx/2022/09/18/how-to-easily-make-wordpress-woocommerce-work-with-ngrok/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.