Panel keeps redirecting on clean install
See original GitHub issueWhen having a clean install of ‘kirby-webpack’ (+ onboil 👀) on Mac OSX the /panel keeps redirecting back to the current page. No errors are shown except the warning:
⚠ Warning:
Node can't reach PHP built-in server through localhost.
Proxying [::1]:35411 instead.
This warning was explained in this closed issue, so that isn’t the problem I guess.
Issue Analytics
- State:
- Created 6 years ago
- Comments:7 (4 by maintainers)
Top Results From Across the Web
How to Remove Chrome Redirect Virus? Clean Google Chrome
If your Chrome browser redirects you to other websites, then it is infected with a redirect virus. In this video, you will know...
Read more >3 Easy Ways to Fix WordPress Login Redirect Loop Issue
Method 1: Clearing Browser Cookies and Cache While they are beneficial to your site, cookies and cache can cause the WordPress login redirect ......
Read more >How to Fix the WordPress Login Redirect Loop Issue - iThemes
Follow our comprehensive guide to the WordPress login redirect loop to learn why WordPress refuses to log you in and how to restore...
Read more >How to Stop Your PC From Redirecting
Click "Control Panel." The Control Panel opens in a new window. 3. Click "Network and Internet" to view additional options. 4. Click "Internet...
Read more >Fix Redirect Loop on WordPress Install - Lockedown SEO
If you need to fix a redirect loop on a fresh install of WordPress, or if you have not_found URLs when trying to...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I tried it, there is indeed an issue, maybe something with
node-proxy
A quick and dirty fix for now is to install and login from the real php server ip. By default it’s
http://localhost:35410
- the port may change and are specified in the warning like the one you postWhen you are logged in the panel, the dev server seems to work correctly so you can use the correct devserver url (default
http://localhost:8080
)I’ll continue to investigate on this
Fixed in the 0.7.4 release
You can also update yours by changing
config.localhost.php
:Just change the line
c::set('url', '//' . $_SERVER['HTTP_X_FORWARDED_HOST']);
toc::set('url', 'http://' . $_SERVER['HTTP_X_FORWARDED_HOST']);