PCにWAMPサーバーをインストールしています。
Apacheバージョン:2.2.17
PHPバージョン:5.3.5
MySQLバージョン:5.5.8
ここで、Question2AnswerをこのWampにデプロイしたいと思います。 http://www.question2answer.org/install.php
私は次のことをしました-1)
CREATE USER 'masterqa'@'localhost' IDENTIFIED BY '***';
GRANT ALL PRIVILEGES ON * . * TO 'masterqa'@'localhost' IDENTIFIED BY '***' WITH GRANT OPTION MAX_QUERIES_PER_HOUR 0 MAX_CONNECTIONS_PER_HOUR 0 MAX_UPDATES_PER_HOUR 0 MAX_USER_CONNECTIONS 0 ;
CREATE DATABASE IF NOT EXISTS `masterqa` ;
GRANT ALL PRIVILEGES ON `masterqa` . * TO 'masterqa'@'localhost';
2)
zipを抽出しました
解凍されたquestion2answerフォルダーにあるqa-config-example.phpを、qa-config.phpに名前変更しました。
以下を変更しました
define('QA_MYSQL_HOSTNAME', '127.0.0.1'); // try '127.0.0.1' or 'localhost' if MySQL on same server
define('QA_MYSQL_USERNAME', 'masterqa');
define('QA_MYSQL_PASSWORD', 'open');
define('QA_MYSQL_DATABASE', 'masterqa');
3)フォルダ「question2answer」全体をにコピーしました
C:\wamp\www
でもやってみると
http://localhost/question2answer
私のブラウザでは、次のようなエラーが表示されます
Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, admin@localhost and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.
私は何が間違っているのですか?