さくらのサーバーで日本語表記
さくらのサーバーで日本語表記にしたいのですが、エラーが出てきてどうしようもありません
どなたか解決方法を教えていただきたいです。
発生している問題・エラーメッセージ
[cgi:error] AH01215: suexec policy violation: see suexec log for more details [cgi:error] End of script output before headers: nihongo.cgi
該当のソースコード
CGI
1#!/usr/local/bin/python 2 3import sys 4sys.stdin = open(sys.stdin.fileno(), 'r', 5 encoding='UTF-8') 6sys.stdout = open(sys.stdout.fileno(), 'w', 7 encoding='UTF-8') 8sys.stderr = open(sys.stderr.fileno(), 'w', 9 encoding='UTF-8') 10 11print("Content-Type: text/html; charset=UTF-8") 12print("") 13 14print("<html><body><h1>") 15print("賢い子は父親を喜ばせ,愚かな子は母親を悲しませる。") 16print("</h1></body></html>")
試したこと
文字種をUTF-8に変更
改行をCRに変更
パーミッションを705に変更