Changeset 561 for trunk/plog-admin/includes/install-functions.php
- Timestamp:
- 07/17/08 19:26:13 (5 months ago)
- Files:
-
- 1 modified
-
trunk/plog-admin/includes/install-functions.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plog-admin/includes/install-functions.php
r560 r561 493 493 $select = @mysql_select_db($database); 494 494 if (!$select) { 495 $errors[] = "Couldn't find the database $database. MySQL error: " . mysql_error();495 $errors[] = "Couldn't find the database `$database`. MySQL error: " . mysql_error(); 496 496 497 497 } … … 504 504 $connection = @ftp_connect($host); 505 505 if (!$connection) { 506 $errors[] = "Couldn't connect to FTP host \"$host\". Please check your FTP Host:";506 $errors[] = "Couldn't connect to FTP host `$host`. Please check your FTP Host:"; 507 507 } else { 508 508 $login = @ftp_login($connection, $user, $pass); 509 509 if (!$login) { 510 $errors[] = "Couldn't login to FTP host \"$host\" with username \"$user\" and password \"$pass\". Please check your FTP Username: and FTP Password:";510 $errors[] = "Couldn't login to FTP host `$host` with username `$user` and password `$pass`. Please check your FTP Username: and FTP Password:"; 511 511 } else { 512 512 $checkdir = @ftp_chdir($connection, $path."plog-content/images/"); // check to see if the plog-content/images/ folder is accessible 513 513 if (!$checkdir) { 514 $errors[] = "Couldn't find the Plogger 'plog-content/images/' folder along the path \"$path\". Please check your FTP Path to Plogger Base Folder (from FTP login):";514 $errors[] = "Couldn't find the Plogger 'plog-content/images/' folder along the path `$path`. Please check your FTP Path to Plogger Base Folder (from FTP login):"; 515 515 } 516 516 }
