워드프레스 플러그인 설치를 이용하여 그누커머스 설치 방법 문의 입니다.
본문
영카트5를 다국어 버전을 확인 해보기 위해, 워드프레스를 설치 하였습니다.
플러그인 > 플러그인 추가하기에서
호스트 정보를 입력하여,
호스트이름에는 호스트IP:22
FTP사용자명에는 FTP 접속 ID
FTP비밀번호에는 정상적인 비밀번호와
연결타입 FTP로 하여 시도를 하나...
Warning: sprintf() [function.sprintf]: Too few arguments in /home/users/wordpress/www/wp-admin/includes/class-wp-filesystem-ftpext.php on line 82
라는...오류가 발생하네요...음...
SFTP로만 접속이 되는데...
그게 이유인가요 ?
<code>
public function connect() {
if ( isset($this->options['ssl']) && $this->options['ssl'] && function_exists('ftp_ssl_connect') )
$this->link = @ftp_ssl_connect($this->options['hostname'], $this->options['port'], FS_CONNECT_TIMEOUT);
else
$this->link = @ftp_connect($this->options['hostname'], $this->options['port'], FS_CONNECT_TIMEOUT);
if ( ! $this->link ) {
$this->errors->add( 'connect',
/* translators: %s: hostname:port */
sprintf( __( 'Failed to connect to FTP Server %s' ),
$this->options['hostname'] . ':' . $this->options['port']
)
);
return false;
}
</code>
답변 1
그런 현상을 겪어보지 않아서 잘 모르겠습니다.
그누커머스 플러그인을 설치 할때만 그런 문제가 일어나는건가요?
아니면 다른 플러그인을 설치 할때도 동일한 문제가 일어나는건지 알려주셨으면 합니다.