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.
Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
To continue sharing your ideas and feedback, please visit features.plesk.com
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.