xamppからApacheをstartしたいです。
ここに質問の内容を詳しく書いてください。
wordpress初心者です。
xamppからApacheを開こうとしたのですがエラーコードが出てしまい、使用するポート番号をこちらのサイトや他のサイトから調べて実践しましたが、
15:34:00 [Apache] Error: Apache shutdown unexpectedly.
15:34:00 [Apache] This may be due to a blocked port, missing dependencies,
15:34:00 [Apache] improper privileges, a crash, or a shutdown by another method.
15:34:00 [Apache] Press the Logs button to view error logs and check
15:34:00 [Apache] the Windows Event Viewer for more clues
15:34:00 [Apache] If you need more help, copy and post this
15:34:00 [Apache] entire log window on the forums
以上のコードがでて、指示通りエラーログを開いたところ直近のエラーが下記の通りです。
[Fri Nov 01 11:19:15.273793 2019] [php7:error] [pid 25500:tid 1896] [client ::1:56503] PHP Fatal error: Maximum execution time of 180 seconds exceeded in C:\xampp\htdocs\wordpress\wp-admin\includes\class-wp-filesystem-direct.php on line 81, referer: http://localhost/wordpress/wp-admin/plugin-install.php?s=BackWpup&tab=search&type=term
上記に沿って該当箇所を一部抜粋しました。
public function put_contents( $file, $contents, $mode = false ) {
$fp = @fopen( $file, 'wb' );
if ( ! $fp ) {
return false;
}
mbstring_binary_safe_encoding(); $data_length = strlen( $contents ); $bytes_written = fwrite( $fp, $contents ); reset_mbstring_encoding(); fclose( $fp ); if ( $data_length !== $bytes_written ) { return false; } $this->chmod( $file, $mode ); return true; } /**
のうちの
if ( $data_length !== $bytes_written ) {
が81行目であり。ここに何かしら問題があるとのことだと思うのですが何なのかがどうしてもわかりません。
どうか教えてください。
最後に開いたclass-wp-filesystem-direct.phpというファイルは今回初めてコピペのみ行いました。
およそ2か月前の段階では開けました。
回答3件
あなたの回答
tips
プレビュー