安装PHPmotion时遇到问题:

Method Not Allowed

The requested method POST is not allowed for the URL /videx/cgi-bin/uu_upload.pl.

经过搜索发现如下解决方法
在主服务器配置文件中,使用Options指令显式地允许特定目录中CGI的执行:
<Directory /usr/local/apache/htdocs/somedir>
Options +ExecCGI
</Directory>
上述指令使Apache允许CGI文件的执行。另外,还必须告诉服务器哪些文件是CGI文件。下面的AddHandler指令告诉服务器所有带有cgi或pl后缀的文件是CGI程序:
AddHandler cgi-script cgi pl

原文地址:http://bbs.chinaunix.net/viewthread.php?tid=960709