Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Learn More

Getting Error: Request failed with status code 404 , attempting to access a route on my dev server

  • 3 ответа
  • 1 имеет эту проблему
  • 1 просмотр
  • Последний ответ от sambient

more options

I have no problem using Chrome , Brave browser to access pages on my dev server. My front end (React) is on localhost 3000, server is localhost 3001. This used to work, just two weeks ago. I'm on FF v95.0.2.

I've tried everything, headers in my index.html, cleared cookies and cache, various network settings, ran it in troubleshooting mode, restarted FF. I have all cors request enable on the server.

Anything I might be missing ?

edit: Found my mistake, had another app opened on the same port , apologies.

I have no problem using Chrome , Brave browser to access pages on my dev server. My front end (React) is on localhost 3000, server is localhost 3001. This used to work, just two weeks ago. I'm on FF v95.0.2. I've tried everything, headers in my index.html, cleared cookies and cache, various network settings, ran it in troubleshooting mode, restarted FF. I have all cors request enable on the server. Anything I might be missing ? '''edit: Found my mistake, had another app opened on the same port , apologies.'''

Изменено sambient

Выбранное решение

I know almost nothing about React, so apologies if this is a dumb question, but is a route a URL? If so, does anything look strange in the Network Monitor if you open that tool before loading your page?

https://developer.mozilla.org/docs/Tools/Network_Monitor

Also, just in case, check the Web Console for any unusual messages:

https://developer.mozilla.org/docs/Tools/Web_Console

Прочитайте этот ответ в контексте 👍 1

Все ответы (3)

more options

Выбранное решение

I know almost nothing about React, so apologies if this is a dumb question, but is a route a URL? If so, does anything look strange in the Network Monitor if you open that tool before loading your page?

https://developer.mozilla.org/docs/Tools/Network_Monitor

Also, just in case, check the Web Console for any unusual messages:

https://developer.mozilla.org/docs/Tools/Web_Console

more options

Note that in 95 support for privacy.file_unique_origin is removed (bug 1732052) and security.fileuri.strict_origin_policy will be removed in the future (bug 1730535).

more options

jscher2000 said

I know almost nothing about React, so apologies if this is a dumb question, but is a route a URL? If so, does anything look strange in the Network Monitor if you open that tool before loading your page? https://developer.mozilla.org/docs/Tools/Network_Monitor Also, just in case, check the Web Console for any unusual messages: https://developer.mozilla.org/docs/Tools/Web_Console

Yes, a route is basically a URL. Network monitor looked fine, outside of the 404. The problem was another app was running on the same port and with all the tabs and prompts open I missed it. Usually the app would complain about a port already being taken but for some reason in this case no red flags. Anyway, problem solved.