How To Install PHPMyAdmin NGINX On Windows



How To Install PHPMyAdmin NGINX On Windows

How To Install PHPMyAdmin NGINX On Windows

How To Install Phpmyadmin And Run It Using Nginx

This video show you how to install PHPMyAdmin and run it with NGINX.

If you have some problems or difficulties or have some other questions then you can ask me in the comment bellow. I will try answer your questions. 🙂

Please consider supporting me on Patreon :
https://www.patreon.com/ryudith

Download PHPMyAdmin :
https://www.phpmyadmin.net/downloads/

How to install NGINX :
https://youtu.be/Sc0nJtVtWSI

How to install PHP 7 :
https://youtu.be/jO3gweU6ASU

PHPMyAdmin NGINX Configuration :

# phpmyadmin project directory location : H:workwebphpmyadmin
location /phpmyadmin {
root “H:/work/web”;
# alias “H:/work/web/phpmyadmin”;
index index.php;

try_files $uri $uri/ /phpmyadmin/index.php;

location ~ .php$ {
root “H:/work/web/phpmyadmin”;
fastcgi_pass 127.0.0.1:9000;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root/index.php;
fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME $request_filename;
}
}

Don’t forget to change my folder location to your folder location.

#RYUDITHTUTORIAL

Comments are closed.