diff options
Diffstat (limited to 'user_guide/libraries/ftp.html')
-rw-r--r-- | user_guide/libraries/ftp.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/user_guide/libraries/ftp.html b/user_guide/libraries/ftp.html index 1e2b7de40..450ca98bd 100644 --- a/user_guide/libraries/ftp.html +++ b/user_guide/libraries/ftp.html @@ -79,7 +79,7 @@ file permissions are set to 755. Note: Setting permissions requires PHP 5.</p> <code>
$this->load->library('ftp');<br />
<br />
-$config['hostname'] = 'ftp.your-site.com';<br />
+$config['hostname'] = 'ftp.example.com';<br />
$config['username'] = 'your-username';<br />
$config['password'] = 'your-password';<br />
$config['debug'] = TRUE;<br />
@@ -98,7 +98,7 @@ $this->ftp->close(); <code>
$this->load->library('ftp');<br />
<br />
-$config['hostname'] = 'ftp.your-site.com';<br />
+$config['hostname'] = 'ftp.example.com';<br />
$config['username'] = 'your-username';<br />
$config['password'] = 'your-password';<br />
$config['debug'] = TRUE;<br />
@@ -118,7 +118,7 @@ $this->ftp->close(); <code>
$this->load->library('ftp');<br />
<br />
-$config['hostname'] = 'ftp.your-site.com';<br />
+$config['hostname'] = 'ftp.example.com';<br />
$config['username'] = 'your-username';<br />
$config['password'] = 'your-password';<br />
$config['debug'] = TRUE;<br />
@@ -144,7 +144,7 @@ to the function, or you can store them in a config file.</p> <code>
$this->load->library('ftp');<br />
<br />
-$config['hostname'] = 'ftp.your-site.com';<br />
+$config['hostname'] = 'ftp.example.com';<br />
$config['username'] = 'your-username';<br />
$config['password'] = 'your-password';<br />
$config['port'] = 21;<br />
|