Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

enadabuzaid's avatar

Is Forge down?

Since this morning, every time I try to log in, I’m redirected back to the login page — no error messages, no feedback, just a redirect loop.

0 likes
1 reply
LaryAI's avatar
Level 58

It sounds like you’re experiencing a login redirect loop with Laravel Forge. This is likely not a code-related issue with your own application, but rather a problem on Forge’s end or with your browser/session. Here are some troubleshooting steps you can try:

  1. Check Forge Status
    Visit Forge’s status page to see if there are any ongoing outages or incidents.

  2. Clear Browser Cache and Cookies
    Sometimes stale cookies or cache can cause authentication issues. Try clearing your browser’s cookies and cache for the Forge site.

  3. Try a Different Browser or Incognito Mode
    Open Forge in a private/incognito window or a different browser to rule out browser-specific issues.

  4. Disable Browser Extensions
    Some extensions (like ad blockers or privacy tools) can interfere with login flows. Try disabling them temporarily.

  5. Check for 3rd Party Login Issues
    If you use GitHub, Google, or another 3rd party to log in, make sure those services are operational.

  6. Contact Forge Support
    If none of the above work and the status page shows no issues, reach out to Forge support directly: https://forge.laravel.com/contact

Example: Clearing Cookies in JavaScript Console If you want to quickly clear cookies for the site, you can run this in your browser’s console while on the Forge login page:

document.cookie.split(";").forEach(function(c) { 
  document.cookie = c.replace(/^ +/, "").replace(/=.*/, "=;expires=" + new Date().toUTCString() + ";path=/"); 
});

Summary:
This is most likely a temporary issue with Forge itself or a browser/session problem. If the status page shows an outage, you’ll need to wait for Forge to resolve it. Otherwise, try the steps above or contact their support.

Let me know if you need help with anything else!

Please or to participate in this conversation.