Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


NGINX No input file specified.
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.

NGINX No input file specified.

DataFrogsDataFrogs Banned
edited November 2012 in General

NGINX No input file specified. error, anyone know how to fix? I've never encountered this error before.

Thanks.

Comments

  • ElliotJElliotJ Member
    edited November 2012

    I wrote an article about this very problem a while back, here's the link.

  • joepie91joepie91 Member, Patron Provider

    Steps to asking questions:

    • Describe what you did.
    • Describe what outcome you expected.
    • Describe what actually happened instead.
    • Clearly list every error you get, where you see it, and when it happened.
    • Describe the 'environment' (in this case, webserver, distro, and so on)
  • "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_NAME $fastcgi_script_name;

    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.

Sign In or Register to comment.