MediaWiki No input file specified. error
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MediaWiki No input file specified. error相关的知识,希望对你有一定的参考价值。
装wiki程式遇到No input file specified.这样的错误,谁能解决,谢谢!
有一篇英文解决方案,翻一下?
MediaWiki do not like server running php as fastcgi...
But there is a always a workaround: ;-)
1. create a file .htaccess in the root folder of your Wiki
RewriteEngine On
RewriteCond %REQUEST_FILENAME !-f
RewriteCond %REQUEST_FILENAME !-d
RewriteRule ^(.*)$ /wiki/index.php?title=$1 [L,QSA]
2. open the file LocalSettings.php and activate ugly URLs
#$wgArticlePath = "$wgScript/$1";
$wgArticlePath = "$wgScript?title=$1";
Some URLs in my Wiki are still not working, that's because they are hardcoded inside the code. I will move to the newest mediawiki version soon.
建议一个.httaccess文件放到你的WIKI的要目录下,将下面的内容放到文件中。
RewriteEngine On
RewriteCond %REQUEST_FILENAME !-f
RewriteCond %REQUEST_FILENAME !-d
RewriteRule ^(.*)$ /wiki/index.php?title=$1 [L,QSA]
2. open the file LocalSettings.php and activate ugly URLs
#$wgArticlePath = "$wgScript/$1";
$wgArticlePath = "$wgScript?title=$1";
有些网址仍然不能运行是因为代码中使用了常量的关系,将其移动至新版本的WIKI就可以了。
希望我的回答对你有些许的帮助。
参考资料:站长百科zzbaike
参考技术A 安装的版本是多少?Mediawiki在fastcgi下是没有问题的,http://www.dangzhi.com/ 就是搭建在nginx+fastcgi+php-fpm的基础上,No input file specified.可能是因为你的服务器没有搭建好,是不是没有处理php的模块?你可以简单做个测试,在网站目录下建个文件:phpinfo.php 里面内容:<?php
phpinfo();
看看能不能执行。
no input file specified 问题的解决
(一)IIS Noinput file specified
方法一:改PHP.ini中的doc_root行,打开ini文件注释掉此行,然后重启IIS
方法二:
请修改php.ini
找到
; cgi.force_redirect = 1
去掉前面分号,把后面的1改为0
即
cgi.force_redirect = 0
(二)apacheNo input file specified
apache No input filespecified,今天是我们配置apache RewriteRule时出现这种问题,解决办法很简单如下
打开.htaccess 在RewriteRule 后面的index.php教程后面添加一个“?”
完整代码如下
.htaccess
RewriteEngine on
RewriteCond $1 !^(index.php|images|robots.txt)
RewriteRule ^(.*)$ /index.php?/$1 [L]
如果是apache服务器出问题,看看是不是的Apache 把 .php 后缀的文件解析哪里有问题了。
总结
Apache 将哪些后缀作为 PHP 解析。例如,让 Apache 把 .php 后缀的文件解析为PHP。可以将任何后缀的文件解析为 PHP,只要在以下语句中加入并用空格分开。这里以添加一个 .phtml 来示例。
AddType application/x-httpd-php .php .phtml
为了将 .phps教程作为 PHP 的源文件进行语法高亮显示,还可以加上:
AddType application/x-httpd-php-source .phps
用通常的过程启动 Apache(必须完全停止 Apache 再重新启动,而不是用 HUP 或者USR1 信号使 Apache 重新加载)。
(三)nginx配置遭遇No inputfile specified
虚拟机测试nginx 遭遇 Noinput file specified,多方查找终于找到解决办法
1、 php.ini(/etc/php5/cgi/php.ini)的配置中这两项
cgi.fix_pathinfo=1 (这个是自己添加的)
doc_root=
2、nginx配置文件/etc/nginx/sites-available/default中注意以下部分
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /var/www/nginx-default$fastcgi_script_name;
include fastcgi_params;
}
红色部分路径需要根据你主机主目录的实际情况填写
配置完以上部分,重启一下service nginx restart,应该没问题了
(四)注意检查下网站目录是否有相关用户的写入权限
以上是关于MediaWiki No input file specified. error的主要内容,如果未能解决你的问题,请参考以下文章
在Linux中执行sed命令报错“-bash: s/test/big: No such file or directory“
在Linux中执行sed命令报错“-bash: s/test/big: No such file or directory“
(standard input): No keywords in input file