API15:JFTP/restart
From Joomla! Documentation
This Namespace has been archived - Please Do Not Edit or Create Pages in this namespace. Pages contain information for a Joomla! version which is no longer supported. It exists only as a historical reference, will not be improved and its content may be incomplete.
Contents |
Description
Method to restart data transfer at a given byte
[<! removed edit link to red link >]
<! 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 edit link to red link >] <! removed transcluded page call, red link never existed >
Examples
<CodeExamplesForm />
