私は9年以上前にPHPスクリプトを使用しました。
PHPのバージョンを最新の安定したバージョン(PHP 5.4.1.1)に更新した後、スクリプトが機能しなくなりました。
問題のある領域を見つけました。この古いPHPコードを最新のPHP5.4.11に変換するのを手伝ってくれる人はいますか。
if ((strlen($user_name)<$nick_min_length) or (strlen($user_name)>$nick_max_length)) {
$error_text ="$w_incorrect_nick<br><a href=\"index.php\">$w_try_again</a>";
include($file_path."designes/".$design."/error_page.php");
exit;
}
if (ereg("[^".$nick_available_chars."]", $user_name)) {
$error_text ="$w_incorrect_nick<br><a href=\"index.php\">$w_try_again</a>";
include($file_path."designes/".$design."/error_page.php");
exit;
}
if (strtolower($user_name) == strtolower(strip_tags($w_rob_name))) {
$error_text ="$w_incorrect_nick<br><a href=\"index.php\">$w_try_again</a>";
include($file_path."designes/".$design."/error_page.php");
exit;
}