Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dear Pleskians! The Plesk Forum will be undergoing scheduled maintenance on Monday, 7th of July, at 9:00 AM UTC. The expected maintenance window is 2 hours.
Thank you in advance for your patience and understanding on the matter.
Hi! I am not sure, if I am right here.
PLESK 12.0.8.#23. When browsing a site www.site.com/index.php, the browser always downloads the file "index.php" instead of opening it in the browser. I thought that has to do with the DirectoryIndex entry. So I went to the domain menue and under my domain web server settings section index files I added index.html and index.php. Also restarted the apache deamon. But it does not work.
I suppose that you use NGINX and php5-fpm as well? Because this issue is mostly caused by some missing definitions in your location setting ( nginx ), or because your FastCGI ( php5-fpm ) process isn't up ( or wrong configured ) for that domain.
In order to add some additional nginx directions, you can always try the setting:
if (!-e $request_filename) {
rewrite (.*) /index.php last;
}
Please make sure, that the setting:
include fastcgi_params;
is existent in your nginx.conf for that domain ( /var/www/vhosts/system/DOMAIN_OR_SUBDOMAIN.COM/conf )
Here is an often used example for your additional "vhost_nginx.conf" ( you can set this over the Plesk Control Panel as well, in your "webserver settings" - "Additional nginx settings" for a domain )