This repository has been archived by the owner on Nov 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 362
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
16 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<?php | ||
$version = "9.12.0"; | ||
$version = "9.12.1"; | ||
if (session_id() == '') session_start(); | ||
|
||
mb_internal_encoding('UTF-8'); | ||
|
@@ -66,7 +66,6 @@ | |
| | ||
*/ | ||
'base_url' => ((isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == "on") ? "https" : "http"). "://". @$_SERVER['HTTP_HOST'].str_replace(basename($_SERVER['SCRIPT_NAME']),"",$_SERVER['SCRIPT_NAME']), | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| path from base_url to base of upload folder | ||
|
@@ -108,23 +107,29 @@ | |
| upload dir will be ftp_base_folder + upload_dir so without final / | ||
| | ||
*/ | ||
'ftp_host' => false, | ||
'ftp_host' => false, //put the FTP host | ||
'ftp_user' => "user", | ||
'ftp_pass' => "pass", | ||
'ftp_base_folder' => "base_folder", | ||
'ftp_base_url' => "http://site to ftp root", | ||
/* -------------------------------------------------------------------------- | ||
| path from ftp_base_folder to base of thumbs folder with start and final | | ||
|--------------------------------------------------------------------------*/ | ||
// Directory where place files before to send to FTP with final / | ||
'ftp_temp_folder' => "../temp/", | ||
/* | ||
|--------------------------------------------------------------------------- | ||
| path from ftp_base_folder to base of thumbs folder with start and final / | ||
|--------------------------------------------------------------------------- | ||
*/ | ||
'ftp_thumbs_dir' => '/thumbs/', | ||
'ftp_ssl' => false, | ||
'ftp_port' => 21, | ||
|
||
|
||
// 'ftp_host' => "s108707.gridserver.com", | ||
// 'ftp_user' => "[email protected]", | ||
// 'ftp_pass' => "Test.1234", | ||
// 'ftp_base_folder' => "/domains/responsivefilemanager.com/html", | ||
/* EXAMPLE | ||
'ftp_host' => "host.com", | ||
'ftp_user' => "[email protected]", | ||
'ftp_pass' => "pass.1", | ||
'ftp_base_folder' => "", | ||
'ftp_base_url' => "http://host.com/testFTP", | ||
*/ | ||
|
||
|
||
/* | ||
|