Search…

X3 Photo Gallery Support Forums

Search…
 
AlexKalopsia
Topic Author
Posts: 13
Joined: 20 Apr 2022, 06:05

Blank "Manage" page after updating to 3.31.1 (on Firefox)

07 Nov 2022, 05:47

Hi there,

I had a perfectly working instance of X3 3.30.1 for some months, and today (after getting a license)  I decided to update to 3.31.1.
The result of this is that nothing shows up in the "Manage" page. It's just a blank page.

Diagnostics says everything is OK.

I am selfhosting on a Synology NAS using nginx. Again, everything worked with 3.30.1
Code
server {

  listen 443 ssl http2;
  listen [::]:443 ssl http2;

  server_name x3.mydomain.com;

  root /config/www/mydomain.com/x3;

  index index.php;

  include /config/nginx/ssl.conf;

  # X3 rewrite rules
  location / {
    if (!-e $request_filename){

      # Rewrite any calls to html|json|xml|atom|rss if a folder matching * exists
      rewrite (.+)\.(html|json|xml|atom|rss)$ $1/ last;

      # Rewrite any calls to /render to the X3 image resizer
      rewrite ^/render/. /app/parsers/slir/ last;

      # Rewrite routes to X3 application index.php if they are non-existent files/dirs
      rewrite ^(.*)$ /index.php?$1 last;
    }
  }

  # Prevent web access to X3 /config and /_cache directories
  location ~ /(config|_cache) {
    deny all;
  }

  # PHP [OPTIONAL]
  location ~ \.php$ {
    fastcgi_split_path_info ^(.+\.php)(/.+)$;
    fastcgi_pass 127.0.0.1:9000;

    # fastcgi_pass    unix:/var/run/php5-fpm.sock;

    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
    include /etc/nginx/fastcgi_params;

  }
}
Now, the interesting thing is that it works on Chrome, but I am having this issue on Firefox (I did try clearing cache).
It's ONLY the "Manage" page having this issue.

Any idea how I could fix this?
 
User avatar
mjau-mjau
X3 Wizard
Posts: 13993
Joined: 30 Sep 2006, 03:37

Re: Blank "Manage" page after updating to 3.31.1 (on Firefox)

07 Nov 2022, 08:08

AlexKalopsia wrote: Any idea how I could fix this?
Can you try from Firefox new "Private window"? I think it could be related to the browser's localStorage. Let me know!
 
AlexKalopsia
Topic Author
Posts: 13
Joined: 20 Apr 2022, 06:05

Re: Blank "Manage" page after updating to 3.31.1 (on Firefox)

07 Nov 2022, 08:34

mjau-mjau wrote:
AlexKalopsia wrote: Any idea how I could fix this?
Can you try from Firefox new "Private window"? I think it could be related to the browser's localStorage. Let me know!
I can confirm that it *does* work in incognito mode!
 
User avatar
mjau-mjau
X3 Wizard
Posts: 13993
Joined: 30 Sep 2006, 03:37

Re: Blank "Manage" page after updating to 3.31.1 (on Firefox)

07 Nov 2022, 09:51

Can you try to clear the Firefox "storage" (cookies, cache, localStorage)? More specifically the "Local Storage" ...

I have another ongoing issue, which I suspect is the same here:
viewtopic.php?f=55&t=10521
 
AlexKalopsia
Topic Author
Posts: 13
Joined: 20 Apr 2022, 06:05

Re: Blank "Manage" page after updating to 3.31.1 (on Firefox)

07 Nov 2022, 12:04

Ctrl + F5 did not work, but manually clearing local storage via the Firefox dropdown did fix the issue.

Hope this helps!

Image
 
User avatar
mjau-mjau
X3 Wizard
Posts: 13993
Joined: 30 Sep 2006, 03:37

Re: Blank "Manage" page after updating to 3.31.1 (on Firefox)

08 Nov 2022, 00:53

ok, thanks!