Blank Page Result on "http://localhost:1337/admin" but Successfully Running

Causes

This few days updated MacOS System then the MySQL keeps appearing errors as

Starting MySQL .Logging to ‘/usr/local/var/mysql/COMPUTER_NAME.local.err’.   
ERROR! The server quit without updating PID file (/usr/local/var/mysql/COMPUTER_NAME.local.pid). 

I did the steps as following :

  1. I reinstalled MySQL via homebrew to resolve the errors of MySQL
  2. recreated Database (Schema) of MySQL
  3. I’ve removed node_modules folder in Strapi
  4. reinstalled node_modules by npm install, npm audit fix --force, & npm install --legacy-peer-deps
  5. Final Step of running the App of Strapi by npm run build & npm run install --debug

Screenshots of Current Result Now & Bugs

I’ve tried to run commands $ npm run build and $ npm run develop


System information

Is your project Javascript or Typescript: Javascript

npm run strapi report

Screenshot 2024-08-10 at 13 02 25

MySQL Version

Screenshot 2024-08-10 at 13 05 19

Operating System & Version

Screenshot 2024-08-10 at 13 06 59

This topic has been created from a Discord post (1271704433285398569) to give it more visibility.
It will be on Read-Only mode here.
Join the conversation on Discord

Hello Anyone?

Hope anyone can provide solution.

Hi <@1271071713517371455> , ice had this issue before. Try substituting localhost for your local IP, like 192.168.0.2 or whatever it might be.

<@1271071713517371455>
I’ve had this problem as well. Port 1337 gives a blank page for Strapi on my system.

Try changing the port to something like 3001.

Edit the /strapi_folder/.env file:
HOST=0.0.0.0
PORT=3001

Thank you for the replied. I fixed by created new project app and move the old-source files to new project from error project.

Thank you for your replied.