トップ 最新 追記

Rescue Unchor: トラブル レスキュー メモ


2024 Feb. 21 (Wed.) [err.] perl: startform [長年日記]

_ ssl_error_log に 下記

Can't locate object method "startform" via package "CGI" at

err. が

⇒ startform を start_form に全置換で解決

※endform も同様 (end_form) らしい


2024 Feb. 22 (Thu.) [Content-Type] /usr/sbin/logwatch を us-ascii に [長年日記]

_ 8859 で検索して二行分

iso-8859-1 ⇒ us-ascii

if ( $Config{'format'} eq "html" ) {
	# $out_mime .= "Content-Type: text/html; charset=\"iso-8859-1\"\n\n";
	$out_mime .= "Content-Type: text/html; charset=\"us-ascii\"\n\n";
	} else {
	# $out_mime .= "Content-Type: text/plain; charset=\"iso-8859-1\"\n\n";
	$out_mime .= "Content-Type: text/plain; charset=\"us-ascii\"\n\n";
}