mirror of
https://github.com/icecoder/ICEcoder.git
synced 2026-03-12 03:26:50 +01:00
FTP param structure added
This commit is contained in:
@@ -1,4 +1,15 @@
|
||||
<?php
|
||||
$ftpSite = false;
|
||||
if ($ftpSite == 1) {
|
||||
$ftpSite = ""; // FTP site domain, eg http://yourdomain.com
|
||||
$ftpHost = ""; // FTP host, eg ftp.yourdomain.com
|
||||
$ftpUser = ""; // FTP username
|
||||
$ftpPass = ""; // FTP password
|
||||
$ftpPasv = false; // FTP account requires PASV mode?
|
||||
$ftpMode = FTP_ASCII; // FTP transfer mode, FTP_ASCII or FTP_BINARY
|
||||
$ftpRoot = ""; // FTP root dir to use as base, eg /htdocs
|
||||
}
|
||||
|
||||
// Establish settings and users template filenames
|
||||
$configSettings = 'config___settings.php';
|
||||
$configUsersTemplate = 'config___users-template.php';
|
||||
|
||||
Reference in New Issue
Block a user