Gentoo Archives: gentoo-user

From: nils.freydank@××××××.de
To: gentoo-user@l.g.o
Subject: Re: [gentoo-user] phpmyadmin - edit (empty screen)
Date: Mon, 26 Mar 2018 16:41:39
Message-Id: 37136970.rXWO2hgmh1@pygoscelis
In Reply to: [gentoo-user] phpmyadmin - edit (empty screen) by thelma@sys-concept.com
1 Hello thelma,
2
3
4 Am Montag, 26. März 2018, 18:27:31 CEST schrieb thelma@×××××××××××.com:
5 > I've updated to phpmyadmin-4.7.8
6 > but when I try to edit a table, no data is loaded, I get an empty screen.
7 I had similar issue when I installed v4.7.8, and enabling PHP debug output to
8 the website helped me fixing the actuall PHP issue (while I couldn't get the
9 logging to write these messages to any logfile).
10
11 Here is my nginx snippet for phpmyadmin in a subdirectory:
12 #=== POSTFIXADMIN ===
13 location /postfixadmin {
14 try_files $uri $uri/ index.php;
15 }
16 location ~ .php$ {
17 #fastcgi_split_path_info ^(.+\.php)(/.+)$;
18 include fastcgi_params;
19 fastcgi_pass php-handler; # see below
20 fastcgi_index index.php;
21 include fastcgi_params;
22 fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
23 fastcgi_param PATH_INFO $fastcgi_path_info;
24 fastcgi_buffer_size 16k;
25 fastcgi_buffers 4 16k;
26 }
27 #EOF
28 #=== snippet for the php-handler:
29 upstream php-handler{
30 server 127.0.0.1:9000;
31 }
32 #EOF
33
34 > I have downgraded to phpmyadmin-4.7.7-r1 but system shows I have two
35 > version installed. How do I know which one is active, or select lower
36 > version?
37 With portage you install something like a "draft" to /usr, and then app-admin/
38 webapp-config actually manages the files inside your webroot. For details how
39 to use it take a look to our wiki page:
40 https://wiki.gentoo.org/wiki/Webapp-config
41
42 > […]
43
44 HTH,
45 Nils
46
47 --
48 GPG fingerprint: '00EF D31F 1B60 D5DB ADB8 31C1 C0EC E696 0E54 475B'
49 Nils Freydank

Attachments

File name MIME type
signature.asc application/pgp-signature

Replies

Subject Author
Re: [gentoo-user] phpmyadmin - edit (empty screen) thelma@×××××××××××.com
Re: [gentoo-user] phpmyadmin - edit (empty screen) thelma@×××××××××××.com