테마를 설치할 때 wordpress에서 시간 초과 메시지가 표시되면 어떻게 해야 하나요?
오류 메시지:
Downloading update from http://wordpress.org/××××××.zip. Download failed.: Operation timed out after 60000 milliseconds with 641464 bytes received Installation Failed. Downloading update from http://wordpress.org/××××××.zip.Download failed.: Operation timed out after 60000 milliseconds with 641464 bytes receivedInstallation Failed.
설명:
이 영어 섹션은 파일 다운로드 시간 초과를 의미합니다. 호스트 네트워크 속도가 상대적으로 느리기 때문에 이 시간을 600으로 설정하는 것이 좋습니다. 초(600000밀리초))가 성공해야 합니다.
WordPress가 테마를 설치할 때 시간 초과 프롬프트를 처리하는 방법:
편집: wp-admin/includes/file.php
찾기:
$response = wp_remote_get($url, array(‘timeout’ => 300));
작업: 300을 600 이상으로 변경합니다.
더 많은 WordPress 기술 기사를 보려면 WordPress Tutorial 칼럼을 방문하세요!
위 내용은 WordPress 테마 설치 시 시간 초과 프롬프트를 처리하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!