Search found 4 matches
- Mon Apr 06, 2020 9:25 pm
- Forum: Database Server
- Topic: Changed PHPMyadmin URL - No Icons
- Replies: 8
- Views: 44594
Re: Changed PHPMyadmin URL - No Icons
Thanks for your help. It is now working :)grayfolk wrote: ↑Sat Apr 04, 2020 4:25 pmDont see any problem: https://c2n.me/46PWzaC
I just edit 3 lines in /etc/nginx/conf.d/phpmyadmin.inc: https://c2n.me/46PWBdA
Then restart nginx, nothing else.
- Sat Apr 04, 2020 3:58 pm
- Forum: Database Server
- Topic: Changed PHPMyadmin URL - No Icons
- Replies: 8
- Views: 44594
Re: Changed PHPMyadmin URL - No Icons
Not working either :(grayfolk wrote: ↑Thu Apr 02, 2020 10:02 pmI see this in my original configuration:Code: Select all
location ~* ^/phpmyadmin/(.+\.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt))$ { alias /usr/share/phpMyAdmin/$1; }
Has anyone else managed to change the default PHPMyadmin URL when running NGINX + PHP-FPM?
- Thu Apr 02, 2020 6:21 pm
- Forum: Database Server
- Topic: Changed PHPMyadmin URL - No Icons
- Replies: 8
- Views: 44594
Re: Changed PHPMyadmin URL - No Icons
Thanks for the suggestion. Unfortunately that didn't fix the issue.


- Wed Apr 01, 2020 2:50 pm
- Forum: Database Server
- Topic: Changed PHPMyadmin URL - No Icons
- Replies: 8
- Views: 44594
Changed PHPMyadmin URL - No Icons
Hi, I am trying to change the default PHPMyadmin url. I have my server setup with Nginx & PHP-FPM. I edited /etc/nginx/conf.d/phpmyadmin.inc as below. The new URL works but there are no icons... location /dbadmin { alias /usr/share/phpmyadmin/; location ~ /(libraries|setup) { return 404; } location ...