実際に遭遇した例

Python

カテゴリー: エラー  閲覧数:233 配信日:2017-05-18 18:24


エラーメッセージ


ブラウザ表示
Internal Server Error

The server encountered an internal error or misconfiguration and was unable to complete your request.

Please contact the server administrator, root@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.

Apacheログ
[error] [client 123.456.78.901] NameError: name 'xrange' is not defined, referer: http://★★.jp/


エラー発生箇所


▼views/hello_template.tpl
% for i in xrange(count):



エラー修正内容


▼views/hello_template.tpl
% for i in range(count):