New on LowEndTalk? Please Register and read our Community Rules.
All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.
All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.
Comments
I wrote an article about this very problem a while back, here's the link.
Steps to asking questions:
"No input file specified" is a PHP error, not an nginx one.
99% of the time that error means you provided an incorrect path from nginx to the php interpretor, for example don't mess with the script path too often, something like this in your fastcgi_params should work fine, if you've specified the correct root path in the server { } block.
fastcgi_param SCRIPT_FILENAME $request_filename;
You should brush up on the Nginx Pitfalls : http://wiki.nginx.org/pitfalls
Old. Sorry forgot to say solved.