PHP 파일 처리 시 특히 파일을 생성하거나 쓸 때 실망스러운 '권한 거부' 오류가 발생하는 경우가 많습니다. 이 문서에서는 일반적인 원인과 효과적인 해결 방법을 자세히 설명합니다.
오류 메시지는 일반적으로 다음과 같습니다.
<code>Warning: fopen(extras/users.txt): Failed to open stream: Permission denied in /Applications/XAMPP/xamppfiles/htdocs/php-crash/14_file_handling.php on line 25 Failed to open file for writing.</code>
이는 PHP 스크립트에 users.txt
액세스에 필요한 권한이 없음을 의미합니다.
먼저 디렉터리의 권한을 확인하세요. macOS/Linux:
<code class="language-bash">chmod -R 775 /Applications/XAMPP/xamppfiles/htdocs/php-crash/extras</code>
소유자와 그룹에게는 읽기, 쓰기, 실행 권한을 부여하고, 다른 사람에게는 읽기 및 실행 권한을 부여합니다. 디버깅에만 임시로 다음을 사용하세요.
<code class="language-bash">chmod -R 777 /Applications/XAMPP/xamppfiles/htdocs/php-crash/extras</code>
문제 해결 후에는 더 제한적인 권한(예: 775)으로 되돌리는 것을 잊지 마세요.
해당 파일이 없을 경우 권한 문제로 생성이 실패할 수 있습니다. 수동으로 생성:
<code class="language-bash">touch /Applications/XAMPP/xamppfiles/htdocs/php-crash/extras/users.txt</code>
그런 다음 권한을 설정하세요.
<code class="language-bash">chmod 664 /Applications/XAMPP/xamppfiles/htdocs/php-crash/extras/users.txt</code>
파일을 쓸 수 있게 됩니다.
잘못된 소유권으로 인해 문제가 발생할 수도 있습니다. 소유권 확인:
<code class="language-bash">ls -l /Applications/XAMPP/xamppfiles/htdocs/php-crash/</code>
웹 서버 사용자로 소유권 변경(예: _www
또는 www-data
):
<code class="language-bash">sudo chown -R www-data:www-data /Applications/XAMPP/xamppfiles/htdocs/php-crash/extras</code>
www-data
을 시스템의 웹 서버 사용자로 바꾸세요.
오류 처리를 통해 PHP 코드 개선:
<code class="language-php"><?php $file = 'extras/users.txt'; // Ensure directory exists if (!is_dir('extras')) { mkdir('extras', 0777, true); // Create directory (full permissions for debugging) } $handle = fopen($file, 'w'); if ($handle) { $contents = 'Brad' . PHP_EOL . 'Sara' . PHP_EOL . 'Mike'; fwrite($handle, $contents); fclose($handle); echo "File created and written successfully."; } else { echo "Failed to open file for writing. Check file permissions."; } ?></code>
디렉토리 존재를 확인하고 유익한 오류 메시지를 제공합니다.
XAMPP를 다시 시작하면 권한 문제가 해결되는 경우도 있습니다.
<code class="language-bash">sudo /Applications/XAMPP/xamppfiles/xampp restart</code>
자세한 PHP 오류 보고 활성화:
<code class="language-php">ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL);</code>
문제를 정확히 찾아내는 데 도움이 됩니다.
extras
디렉토리가 올바른 권한으로 존재하는지 확인하세요.chmod 777
을 사용하고 되돌립니다./Applications/XAMPP/logs/php_error_log
.PHP의 "권한 거부" 오류를 해결하려면 파일 및 디렉터리 권한을 관리하고, 올바른 소유권을 확인하고, 강력한 오류 처리를 사용해야 합니다. 위의 단계는 이 일반적인 문제를 해결하고 PHP 파일 처리를 개선하는 데 도움이 됩니다. 추가 지원이 필요하면 블로그를 참조하거나 아래에 댓글을 남겨주세요. 즐거운 코딩하세요!
위 내용은 PHP 파일 처리 시 Permission Denied 오류를 해결하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!