Vesta 2.0 is coming soon! See our progress update: https://vestacp.com/docs/vesta-2-update
Search found 4 matches
- Sun Jun 26, 2022 10:46 am
- Forum: Database Server
- Topic: Change Link to PhpMyAdmin (nginx, php-fpm)
- Replies: 6
- Views: 38509
Re: Change Link to PhpMyAdmin (nginx, php-fpm)
Change phpmyadmin to pma (or whatever you feel like the URL to be in
nano /etc/nginx/conf.d/phpmyadmin.inc
Replace all location block text phpmyadmin with pma or whatever you like
Refer the screenshot https://prnt.sc/ha2ceh
I have tried both options, changing from:
Server > configure > db ...
- Fri Oct 11, 2019 4:55 pm
- Forum: Web Server
- Topic: open() /home/user/web/domain_tld/public_html/" failed (13: Permission denied)
- Replies: 2
- Views: 6736
open() /home/user/web/domain_tld/public_html/" failed (13: Permission denied)
Hello, my error log are showing this error when a new visitors load the website
How can solve this?
I'm using CentOS 6 with nginx + php-fmp and the wordpress2_wp_super_cache template.
Thank you.
Code: Select all
open() /home/user/web/domain_tld/public_html/" failed (13: Permission denied)
I'm using CentOS 6 with nginx + php-fmp and the wordpress2_wp_super_cache template.
Thank you.
- Thu Oct 10, 2019 9:25 pm
- Forum: Web Server
- Topic: [ TUTORIAL ] How to change the default /phpmyadmin alias url
- Replies: 11
- Views: 92839
Re: [ TUTORIAL ] How to change the default /phpmyadmin alias url
Hello,
Thank you for the tutorial, I would add that nginx + php-fpm users must edit:
/etc/nginx/conf.d/phpmyadmin.inc
instead of
/etc/httpd/conf.d/phpMyAdmin.conf
i.e.
location /new_url {
alias /usr/share/phpMyAdmin/;
location ~ /(libraries|setup) {
return 404;
}
location ~ ^/new ...
Thank you for the tutorial, I would add that nginx + php-fpm users must edit:
/etc/nginx/conf.d/phpmyadmin.inc
instead of
/etc/httpd/conf.d/phpMyAdmin.conf
i.e.
location /new_url {
alias /usr/share/phpMyAdmin/;
location ~ /(libraries|setup) {
return 404;
}
location ~ ^/new ...
- Thu Oct 10, 2019 2:28 pm
- Forum: Web Server
- Topic: phpmyadmin issue
- Replies: 6
- Views: 9344
Re: phpmyadmin issue
I managed to create workaround. The issue is related to case sensitive directory naming
In /etc/nginx/conf.d/phpmyadmin.inc you can see the following line
location ~* ^/phpmyadmin/(.+\.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt))$ {
root /usr/share/;
}
Webeserver root is /usr/share/ and there ...