提示コードですがNewAccount.php
からCreateAccount.php
に推移すると[ このページは動作していません、]
というエラーが出るのですがこれはなぜでしょうか?エラーログのとり方が知りたいです。
調べたこと
エラーログを確認 出ていません。
トップページは表示されますがこのページだけなぜが推移するとエラーが出ます。
vpsを使っているためアップロードにし忘れ、保存してない等のミスを確認
の一行を修正しましたが同じ接続エラーがでます。
PHP Warning: file_exists() expects exactly 1 parameter, 0 given in /var/www/html/index.php on line 26
[Fri Oct 01 13:48:38.772437 2021] [php7:warn] [pid 11763] [client 45.146.164.110:35234] PHP Warning: file_exists() expects exactly 1 parameter, 0 given in /var/www/html/index.php on line 26 [Fri Oct 01 13:48:38.854731 2021] [php7:warn] [pid 11764] [client 45.146.164.110:44628] PHP Warning: file_exists() expects exactly 1 parameter, 0 given in /var/www/html/index.php on line 26 [Fri Oct 01 13:48:39.064348 2021] [php7:warn] [pid 11766] [client 45.146.164.110:37616] PHP Warning: file_exists() expects exactly 1 parameter, 0 given in /var/www/html/index.php on line 26 [Fri Oct 01 13:48:39.648075 2021] [php7:warn] [pid 11776] [client 45.146.164.110:40268] PHP Warning: file_exists() expects exactly 1 parameter, 0 given in /var/www/html/index.php on line 26 [Fri Oct 01 14:08:27.490400 2021] [php7:warn] [pid 11762] [client 142.93.163.195:49454] PHP Warning: file_exists() expects exactly 1 parameter, 0 given in /var/www/html/index.php on line 26 [Fri Oct 01 15:12:07.704232 2021] [php7:error] [pid 11777] [client 211.40.129.246:54774] script '/var/www/html/wp-login.php' not found or unable to stat [Fri Oct 01 15:12:07.781575 2021] [php7:warn] [pid 11766] [client 211.40.129.246:55648] PHP Warning: file_exists() expects exactly 1 parameter, 0 given in /var/www/html/index.php on line 26 [Fri Oct 01 16:18:18.916194 2021] [php7:warn] [pid 11767] [client 71.104.11.33:8667] PHP Warning: file_exists() expects exactly 1 parameter, 0 given in /var/www/html/index.php on line 26 ~
CreateAccount.php
<!DOCTYPE html> <html> <head> <title> 新規作成完了 </title> <link rel="stylesheet" href="Style.css"> <meta charset="UTF-8"> </head> <body> <?php ini_set( 'display_errors', 1 ); ini_set( 'error_reporting', E_ALL ); ?> <?php $register = true; $password = $_REQUEST['password']; $id = $_REQUEST['id']; // パスワードエラー if(preg_match('/(?=.*[0-9])(?=.*[A-Z])(?=.*[a-z])[a-zA-Z0-9]{6,14}/',$_REQUEST['password']) == false) { echo '<center>'; if(empty($password) == true) { echo '<p>パスワードが入力されていません。</p>'; } else { echo '<p>パスワード ' ,$password,' が正しくありません。</p>'; echo '<input type="button" onclick="location.href=history.back()" value="戻る" style="background-color:red; size:15;width:150px;height:30px">'; } echo '</center>'; $register = false; } //IDエラー if(preg_match('/(?=.*[0-9])(?=.*[A-Z])(?=.*[a-z])[a-zA-Z0-9]{6,14}/',$_REQUEST('id')) == false) { echo '<center>'; if(empty($id) == true) { echo '<p>IDが入力されていません。</p>'; } else { echo '<p>ID ' ,$id,' が正しくありません。</p>'; echo '<input type="button" onclick="location.href=history.back()" value="戻る" style="background-color:red; size:15;width:150px;height:30px">'; } echo '</center>'; $register = false; } //アイコン未設定 if(empty($_FILES['icon']['tmp_name'])) == true) { echo '<center>'; echo '<p>アイコンがアップロードされていません。</p>'; echo '</center>'; $register = false; } else { //アイコンアップロードエラー if(is_uploaded_file($_FILES['icon']['tmp_name']) == false ) { echo '<center>'; echo '<p>アイコンアップロードエラー。</p>'; echo '</center>'; $register = false; } } //すべて通った時 if($register == true) { if(file_exists($id) == false) { if ( mkdir($id) == false) { echo 'ディレクトリ作成失敗。'; } } $image = $id.'/'.basename($_FILES['icon']['name']); if(move_uploaded_file($_FILES['icon']['tmp_name'],$image) == true) { echo $image ,'のアップロードに成功しました。'; echo '<center>'; echo '<p><img src="' , $image , '"></p>'; echo '</center>'; } else { echo 'ファイルのアップロードに失敗しました。'; } } ?> </body> </html>
NewAccount.php
<!DOCTYPE html> <html> <head> <title> 新規作成 </title> <link rel="stylesheet" href="Style.css"> <meta charset="UTF-8"> </head> <body> <center> <h1> 新規作成 </h1> </br> </br> <form action="CreateAccount.php" method="post" enctype="multipart/form-data"> <p> アイコン </p> <input type="file" name="icon"> <p> ID </p> <input type="text" name="id"> <br> <br> <p> Password </p> <input type="password" name="password"> <br> <br> <input type="submit" value="OK"> </form> </center> </body> </html>
回答2件
あなたの回答
tips
プレビュー