• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Solving the white screen problem

Community Beginner ,
May 12, 2023 May 12, 2023

Copy link to clipboard

Copied

I found the problem, which is why the white screen in the browser instead of the tools. I tried to log in from remote servers from different parts of the world. Therefore, tell the system administrator, namely the person who administers the web server, what exactly is the problem with the server configuration file, namely the regional settings. I do not know exactly what type of server Firefly AI uses, here is a panacea that will solve the problem with the correct display of the site tools.
solution for Nginx

location / {
allow all;
# or you can specify specific IP addresses or address ranges
# allow 192.168.1.0/24;
# allow 10.0.0.0/8;
# deny all;
}

A solution for Apache

<Directory "/var/www/html">
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
Allow from all
# or you can specify specific IP addresses or address ranges
# Allow from 192.168.1.0/24
# Allow from 10.0.0.0/8
# Deny from all
Require all granted
</Directory>

Bug Unresolved

Views

73

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
no replies

Have something to add?

Join the conversation