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.
The APS Catalog has been deprecated and removed from all Plesk Obsidian versions. Applications already installed from the APS Catalog will continue working. However, Plesk will no longer provide support for APS applications.
Please be aware: with the Plesk Obsidian 18.0.78 release, the support for the ngx_pagespeed.so module will be deprecated and removed from the sw-nginx package.
I didn't look through all the search results, but I don't want to *assume* anything, so please do not take any offense at the following questions (some of these were covered in different threads):
Did you check ownership and perms ?
Check the httpd.conf AddHandler ?
Ah damn, my mind just went blank on the other questions, and I'm too tired to read the other post results myself right now. Sorry.
Hopefully I'll remember this thread after I get some sleep. Otherwise, sorry I didn't have better suggestions.
From my experience the error 'Premature end of script headers' usually arises when there is a permissions problem. Either that or bad paths detailed within the script itself.
also check you definitly upload in ASCII and not binary, you will end up with horrible ^M characters on the end of every line (not viewable in all editors though)
If this is the case you can strip them easily using vi
vi filename
:%s/^v^m//g
where
^v = Ctrl +v
and
^m = Ctrl +m
You can also find that many windows based editors will add these illegal end of line characters, use a good editor like Scite where you can change/view the EOL if you need too.