API16:JFTP/restart
From Joomla! Documentation
Description
Method to restart data transfer at a given byte
<! removed transcluded page call, red link never existed >
Syntax
restart($point)
| Parameter Name | Default Value | Description |
|---|---|---|
| $point | $point Byte to restart transfer at |
Returns
boolean True if successful
Defined in
libraries/joomla/client/ftp.php
Importing
jimport( 'joomla.client.ftp' );
Source Body
function restart($point) {
// If native FTP support is enabled lets use it...
if (FTP_NATIVE) {
if (@ftp_site($this->_conn, 'REST '.$point) === false) {
JError::raiseWarning('35', 'JFTP::restart: Bad response');
return false;
}
return true;
}
// Send restart command and verify success
if (!$this->_putCmd('REST '.$point, 350)) {
JError::raiseWarning('35', 'JFTP::restart: Bad response', 'Server response: '.$this->_response.' [Expected: 350] Restart point sent: '.$point);
return false;
}
return true;
}
<! removed transcluded page call, red link never existed >
Examples
Code Examples