Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
trippo committed Oct 26, 2017
1 parent 9aa0667 commit ba48934
Showing 1 changed file with 16 additions and 11 deletions.
27 changes: 16 additions & 11 deletions filemanager/config/config.php
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');
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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' => "test@responsivefilemanager.com",
// 'ftp_pass' => "Test.1234",
// 'ftp_base_folder' => "/domains/responsivefilemanager.com/html",
/* EXAMPLE
'ftp_host' => "host.com",
'ftp_user' => "test@host.com",
'ftp_pass' => "pass.1",
'ftp_base_folder' => "",
'ftp_base_url' => "http://host.com/testFTP",
*/


/*
Expand Down

0 comments on commit ba48934

Please sign in to comment.