エラーメッセージ
状態:-
閲覧数:499
投稿日:2017-05-18
更新日:2017-05-18
Apacheログ
Python 3.xではxrangeを使用不可
・rangeに統合されてなくなったため
xrangeをrangeへ修正
[error] [client 123.456.78.901] NameError: name 'xrange' is not defined, referer: http://★★.jp/
エラー原因
Python 3.xではxrangeを使用不可
・rangeに統合されてなくなったため
エラー対応
xrangeをrangeへ修正
実際に遭遇した例
エラーメッセージ
ブラウザ表示
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.
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):