忽略ftp權限
每當我們想在wordpress上升級外掛或是升級wordpress的時候,就會彈出一個ftp登錄,但是我們怎麼跳過ftp登入呢
解決方法
打開我們的word press設定檔wp-config.php
[18:35:08 root@zhang ~]#vim /apps/nginx/html/wordpress/wp-config.php
登入後複製
然後在這個檔案的最後一行下面加入這兩個777權限
define("FS_CHMOD_DIR", 0777); define("FS_CHMOD_FILE", 0777);
登入後複製
在給word press這個目錄加入使用者權限,假如我們用的是nginx使用者執行word press這個服務。
[18:37:31 root@zhang ~]#chmod -R 777 /apps/nginx/html/wordpress/ [18:37:50 root@zhang ~]#chown -R nginx:nginx /apps/nginx/html/wordpress/
登入後複製
以上就是wordpress升級需設定ftp的解決方法。