API16:JFTP/reinit
From Joomla! Documentation
Description
Method to reinitialise the server, ie. need to login again
Template:Description:JFTP/reinit
Syntax
reinit()
Returns
boolean True if successful
Defined in
libraries/joomla/client/ftp.php
Importing
jimport( 'joomla.client.ftp' );
Source Body
function reinit() {
// If native FTP support is enabled lets use it...
if (FTP_NATIVE) {
if (@ftp_site($this->_conn, 'REIN') === false) {
JError::raiseWarning('35', 'JFTP::reinit: Bad response');
return false;
}
return true;
}
// Send reinitialise command to the server
if (!$this->_putCmd('REIN', 220)) {
JError::raiseWarning('35', 'JFTP::reinit: Bad response', 'Server response: '.$this->_response.' [Expected: 220]');
return false;
}
return true;
}
[Edit See Also] Template:SeeAlso:JFTP/reinit
Examples
<CodeExamplesForm />