Hi, I’ve tried switching to PHP 5.3.27 FastCGI on Media Temple and as soon as I do that the site returns a “No input file specified.” error.
Is there anything to do to be able to take advantage of FastCGI?
Thanks!
This is an archived forum and the content is probably no longer relevant, but is provided here for posterity.
The active forums are here.
August 10, 2013 5:45am
Subscribe [3]#1 / Aug 10, 2013 5:45am
Hi, I’ve tried switching to PHP 5.3.27 FastCGI on Media Temple and as soon as I do that the site returns a “No input file specified.” error.
Is there anything to do to be able to take advantage of FastCGI?
Thanks!
#2 / Aug 11, 2013 7:31pm
Try turning on “Force URL query strings?” in Admin ‣ System Administration ‣ Output and Debugging
#3 / Aug 12, 2013 4:25am
Thanks Rob, I tried that but unfortunately I got the same error.
#4 / Oct 27, 2013 5:42am
Is anyone having the same issue? I still haven’t managed to fix it.
#5 / Oct 27, 2013 7:29am
I’ve had that issue a while ago. I think I solved it by changing the $config[‘uri_protocol’] setting in config.php until I found one that worked. Here is the code snippet in config.php:
/*
|--------------------------------------------------------------------------
| URI PROTOCOL
|--------------------------------------------------------------------------
|
| This item determines which server global should be used to retrieve the
| URI string. The default setting of "AUTO" works for most servers.
| If your links do not seem to work, try one of the other delicious flavors:
|
| 'AUTO' Default - auto detects
| 'PATH_INFO' Uses the PATH_INFO
| 'QUERY_STRING' Uses the QUERY_STRING
| 'REQUEST_URI' Uses the REQUEST_URI
| 'ORIG_PATH_INFO' Uses the ORIG_PATH_INFO
|
*/
$config['uri_protocol'] = 'AUTO';#6 / Oct 27, 2013 8:31am
Thanks Ralph. It was set to ‘AUTO’, I’ve tried all 4 other options but no change.
The homepage works fine, but as soon as I click on any link I get that “No input file specified.” error.
#7 / Oct 28, 2013 5:13am
Here’s the page the helped me when I had the problem - http://www.tyssendesign.com.au/articles/cms/no-input-file-specified-problem/
#8 / Oct 28, 2013 10:35am
Thanks, that did it! 😊