Hi,
> I guess something is wrong with $_SERVER['SCRIPT_NAME']. I'll
> investigate and get back to you.
This all fixed itself with the security update and some configuration tricks.
Sorry for the noise.
Alex
--
For the record, I use :
Alias /subdir /usr/share/phpmyadmin
ProxyPassMatch "^/subdir/(.*\.php(/.*)?)$"
"unix:/var/run/uwsgi/phpmyadmin.socket|uwsgi://uwsgi-uds-phpmyadmin/"
<Location /subdir>
Require all granted
</Location>
and uwsgi phpmyadmin.ini :
plugins = 0:php
project_dir = /usr/share/phpmyadmin
chdir = %(project_dir)
php-docroot = %(project_dir)
php-index = index.php
plugins = router_rewrite
route = ^/subdir/(.*) rewrite:/$1
buffer-size = 8192
# PHP sessions storage
cache2 =
name=sessions,items=200,store=/var/lib/www/phpmyadmin/uwsgi.cache,expires=3600
php-set = session.save_handler=uwsgi
php-set = session.save_path=sessions