Question
Unable to install scripts
I followed tutorials from DO on LEMP installation. Nginx.
Able to install wordpress.
Now trying to install a script call teachify from codecanyon.
Installation folder is at xxx.com/source/public/installations/
Server requirements all met. But when click next, url changed to xxx.com/source/public/installations/step/2
And it returns a 404.
is my nginx settings correct?
part of it :
index index.html index.htm index.php;
location / {
#try_files $uri $uri/ =404;
try_files $uri $uri/ /index.php$is_args$args;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
}
location ~ /\.ht {
deny all;
}
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×