小テスト「評定」ページ遷移時のInternal Server Error

小テスト「評定」ページ遷移時のInternal Server Error

- 裕基 河邊 の投稿
返信数: 1

小テストを行い、結果の集計をするため、「管理」>「受験結果」>「評定」へ進みました。

以前までは「評定」の画面が開き、結果データをエクスポートできていたのですが、なんどやってもInternal Server Errorが起き画面が開きません。

250件近いため、負荷が高いのかと思いましたが、「受験結果」>「解答」を開くとこちらは正常に開きました。

ページ表示件数を250件にしても問題なく開きました。

バグのような気がするのですが、このような事象はほかの方でも起こっているのでしょうか?

バージョンは3.0.2です。

試験結果を出力できず困っています。ご協力宜しくお願い致します。


裕基 河邊 への返信

Re: 小テスト「評定」ページ遷移時のInternal Server Error

- Mitsuhiro Yoshida の投稿
画像 Developers 画像 Particularly helpful Moodlers 画像 Translators

よろしければMoodleのホームディレクトリの「.htaccess」ファイルを下記のように修正して結果データのエクスポートをお試しください。

修正対象ファイル:
.htaccess

修正箇所:
1行目

[ 修正前 ]
# On some PHP servers it may help if this file is copied
# to the main moodle directory and renamed .htaccess
#
# As soon as you do this, check your web site.  Is it
# still working OK?  If you are getting a "configuration
# error" then you may need to enable overrides by editing
# the main httpd.conf for Apache and in the main server
# or virtual server area, adding something like:
#
# <Directory /web/moodle>
#     AllowOverride All
# </Directory>
#

[ 修正後 ]
php_value memory_limit 512M

# On some PHP servers it may help if this file is copied
# to the main moodle directory and renamed .htaccess
#
# As soon as you do this, check your web site.  Is it
# still working OK?  If you are getting a "configuration
# error" then you may need to enable overrides by editing
# the main httpd.conf for Apache and in the main server
# or virtual server area, adding something like:
#
# <Directory /web/moodle>
#     AllowOverride All
# </Directory>
#