localhost의 FTP 자격 증명
-
-
이것은 권한 문제입니다.`wp-content/uploads` 폴더,아마도 모든`wp-content`의 소유자/그룹 설정을 변경해야합니다.반대 투표 및 중복 가능성으로 표시됨 : [로컬 호스트 램프의 워드 프레스로 플러그인을 설치할 수 없음] (http://wordpress.stackexchange.com/q/19649/12615)This is a permissions issue. You gotta change the owner/group settings of `wp-content/uploads` folder, maybe of all `wp-content`. Downvoted and flagged as Possible Duplicate: [wordpress on localhost lamp doesn't let me install plugins](http://wordpress.stackexchange.com/q/19649/12615)
- 2
- 2012-07-02
- brasofilo
-
아래 답변이 문제를 해결하는 데 도움이되었습니다.Mamp Pro 권한 설정에서 소유자와 그룹을 _www로 설정해야했습니다.The below answer helped me fix it. I had to set owner and group to _www in the Mamp Pro permission settings.
- 0
- 2012-07-02
- Johan Dahl
-
좋습니다. 게시하기 전에 검색해주세요. :)Ok, but please search before posting :)
- 0
- 2012-07-02
- brasofilo
-
검색을했지만 어떤 이유로 든 해당 게시물을 찾지 못했습니다. 아마도 충분히 열심히 보지 않았을 것입니다.다음에 더 잘하려고 노력할 것입니다 :)I did search but I didn't find that post for any reason, maybe I didn't look hard enough. Will try to do better next time :)
- 1
- 2012-07-02
- Johan Dahl
-
`define ( 'FS_METHOD','direct');`를`wp-config.php`에 추가하면 localhost에서 작동합니다.프로덕션 버전에 추가하지 않도록하십시오.참조 : http://codex.wordpress.org/Editing_wp-config.phpJust add `define('FS_METHOD','direct');` to `wp-config.php` and it will work on localhost. Just make sure you don't add it to production version. See: http://codex.wordpress.org/Editing_wp-config.php
- 9
- 2014-03-10
- Justin
-
define ( 'FS_METHOD','direct');- 나를 도와 주었다.Ubuntu 14.04define('FS_METHOD','direct'); - helped me. Ubuntu 14.04
- 0
- 2014-06-17
- Tebe
-
define ( 'FS_METHOD','direct');나를 위해 일했습니다.define('FS_METHOD','direct'); worked for me aswell.
- 0
- 2015-07-14
- Muhammad Tahir
-
1 대답
- 투표
-
- 2012-07-02
파일 권한 설정
Mac OS X (Leopard)에서 Apache HTTP Server는 _www 그룹에 속하는 사용자 계정 _www로 실행됩니다. WordPress가 설치 중에 wp-config.php를 구성하고,업그레이드 중에 파일을 업데이트하고,예쁜 영구 링크에 대한 .htaccess 파일을 업데이트하도록 허용하려면 서버에 파일에 대한 쓰기 권한을 부여하십시오.
이 작업을 수행하는 한 가지 방법은 wordpress 디렉토리의 소유자와 그 내용을 _www로 변경하는 것입니다. 사용자 계정이 속한 그룹 인 직원으로 그룹을 유지하고 그룹에 쓰기 권한을 부여하세요.
$ cd /<wherever>/Sites/<thesite> $ sudo chown -R _www wordpress $ sudo chmod -R g+w wordpress
이렇게하면 WordPress 디렉토리의 권한 수준은 775이고 파일의 권한 수준은 664입니다. 파일이나 디렉토리는 누구나 쓸 수 있습니다.
mamp 포럼에서 자세한 내용을 확인할 수 있습니다. http://forum.mamp.info/viewtopic.php?f=2&t=15917
Set file permissions
On Mac OS X (Leopard), the Apache HTTP Server runs under the user account, _www which belongs to the group _www. To allow WordPress to configure wp-config.php during installation, update files during upgrades, and update the .htaccess file for pretty permalinks, give the server write permission on the files.
One way to do this is to change the owner of the wordpress directory and its contents to _www. Keep the group as staff, a group to which your user account belongs and give write permissions to the group.
$ cd /<wherever>/Sites/<thesite> $ sudo chown -R _www wordpress $ sudo chmod -R g+w wordpress
This way, the WordPress directories have a permission level of 775 and files have a permission level of 664. No file nor directory is world-writeable.
You can read more about it on mamp forum: http://forum.mamp.info/viewtopic.php?f=2&t=15917
-
감사합니다.나는 Mamp Pro를 사용하고 권한 상자에서 소유자 및 그룹을 _www로 설정했습니다.Thank you. I use Mamp Pro and in the permissions box I set the Owner and Group to _www - Your answer led me to it.
- 1
- 2012-07-02
- Johan Dahl
-
귀하의 답변은 플러그인 및 워드 프레스 설정으로 많은 시간을 절약했습니다.감사합니다!chown과 chmod,파일 권한에 대한 좋은 튜토리얼을 알려 주시면 더 많은 도움이 될 것입니다 (현재 링크가 작동하지 않음).Your answer saved me a lot of time with plugins and setting up wordpress. Thank you! If you could point me to a good tutorial about chown and chmod, and file privileges you would help even more (the current link is not working).
- 0
- 2013-07-16
- Agilius
-
도움이되었다 니 다행입니다.이 주제를보십시오 : http://askubuntu.com/questions/19898/whats-the-simplest-way-to-edit-and-add-files-to-var-wwwGlad it helped you. look at this topic: http://askubuntu.com/questions/19898/whats-the-simplest-way-to-edit-and-add-files-to-var-www
- 0
- 2013-07-21
- Pontus Abrahamsson
-
그것은 훌륭하게 작동했습니다!That worked brilliantly!
- 0
- 2013-11-12
- realph
-
2015 년에도 여전히 수정되었습니다!2015 and this still fixes it!
- 2
- 2015-04-22
- Rvervuurt
-
Mac에서 XAMPP와 함께 작동하려면 sudo chown -R _www wordpress를 sudo chown -R daemon wordpress로 변경하십시오.To make it work with XAMPP on mac change sudo chown -R _www wordpress to sudo chown -R daemon wordpress
- 2
- 2016-10-26
- Mohammed Atif Sami
-
12-2016 년에도 여전히 수정되었습니다!뿡 빵뀨12-2016 and this still fixes it! @Rvervuurt
- 0
- 2016-12-01
- whoacowboy
-
2018 년 10 월에 수정되었습니다. : D-정말 감사합니다!10/2018 and this fixes it :D - thanks so much!
- 0
- 2018-10-16
- nerdess
-
이것은 나를 위해 일했습니다. 많은 감사와 찬성 투표This worked for me, lots of thanks and an upvote
- 0
- 2020-01-03
- Rohit
-
01/2020 잘 작동합니다.01/2020 This works great
- 0
- 2020-01-08
- Clain Dsilva
가능한 중복 :
localhost 램프의 wordpress에서 설치할 수 없습니다.플러그인
방금 Wordpress로 로컬에서 작업하기 시작했습니다.테마/플러그인을 업데이트하려고하면 FTP 자격 증명을 묻는 메시지가 표시되고 혼란스러워집니다. 로컬에서 작업 할 때 내 FTP 자격 증명이 도대체 무엇입니까?