From ff845f94cc8876bc6c23c2f55b695bc569038512 Mon Sep 17 00:00:00 2001 From: Derek Jones Date: Thu, 26 Jun 2008 17:05:55 +0000 Subject: changed your-site.com to example.com doc-wide --- user_guide/libraries/ftp.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'user_guide/libraries/ftp.html') 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.

$this->load->library('ftp');

-$config['hostname'] = 'ftp.your-site.com';
+$config['hostname'] = 'ftp.example.com';
$config['username'] = 'your-username';
$config['password'] = 'your-password';
$config['debug'] = TRUE;
@@ -98,7 +98,7 @@ $this->ftp->close(); $this->load->library('ftp');

-$config['hostname'] = 'ftp.your-site.com';
+$config['hostname'] = 'ftp.example.com';
$config['username'] = 'your-username';
$config['password'] = 'your-password';
$config['debug'] = TRUE;
@@ -118,7 +118,7 @@ $this->ftp->close(); $this->load->library('ftp');

-$config['hostname'] = 'ftp.your-site.com';
+$config['hostname'] = 'ftp.example.com';
$config['username'] = 'your-username';
$config['password'] = 'your-password';
$config['debug'] = TRUE;
@@ -144,7 +144,7 @@ to the function, or you can store them in a config file.

$this->load->library('ftp');

-$config['hostname'] = 'ftp.your-site.com';
+$config['hostname'] = 'ftp.example.com';
$config['username'] = 'your-username';
$config['password'] = 'your-password';
$config['port']     = 21;
-- cgit v1.2.3-24-g4f1b