建站程序

FileGator文件管理器安装与使用教程-免费开源在线文件管理和下载程序

1.3 调整Root目录

修改你的FileGator的Root目录为dist 目录。如果用的是宝塔面板的话,去掉防跨站“open_basedir”。然后在运行目录设置为/dist。

如果你用的是

FileGator可以复制、移动、压缩、重命名等操作。

FileGator支持在线浏览图片,其它的文件只能是下载了。

2.2 设置公开权限

FileGator默认是需要登录才能查看和下载文件的。

不过,我们可以在FileGator的用户管理中,对平guest用户权限进行开放,例如你可以允许匿名用户上传、下载或者查看文件。

2.3 调整为中文

FileGator支持中文,不过需要我们编辑configuration.php 文件,将'language' => 'english',改成 'language' => 'chinese',,如下:

return [
    'public_path' => APP_PUBLIC_PATH,
    'public_dir' => APP_PUBLIC_DIR,
    'overwrite_on_upload' => false,
    'timezone' => 'UTC', // https://www.php.net/manual/en/timezones.php
    'download_inline' => ['pdf'], // download inline in the browser, array of extensions, use * for all

    'frontend_config' => [
        'app_name' => 'FileGator',
        'app_version' => APP_VERSION,
        //'language' => 'english',
        'language' => 'chinese',
        'logo' => 'https://filegator.io/filegator_logo.svg',
        'upload_max_size' => 100 * 1024 * 1024, // 100MB
        'upload_chunk_size' => 1 * 1024 * 1024, // 1MB
        'upload_simultaneous' => 3,
        'default_archive_name' => 'archive.zip',
        'editable' => ['.txt', '.css', '.js', '.ts', '.html', '.php', '.json', '.md'],
        'date_format' => 'YY/MM/DD hh:mm:ss', // see: https://momentjs.com/docs/#/displaying/format/
        'guest_redirection' => '', // useful for external auth adapters
        'search_simultaneous' => 5,
        'filter_entries' => [],
    ],

FileGator中文效果如下:

2.4 最大上传大小

直接修改配置文件中的最大上传文件大小即可:

'upload_max_size' => 100 * 1024 * 1024, // 100MB
'upload_chunk_size' => 1 * 1024 * 1024, // 1MB

三、FileGator第三方存储

FileGator支持第三方存储,包括本地存储(默认)、FTP, SFTP, Amazon S3, DigitalOcean Spaces, Microsoft Azure Blob, Dropbox 等等。

3.1 默认本地存储

默认的是FileGator本地存储的文件是放在 repository 文件夹里。

如果你要修改路径,你只需要修改 repository 文件夹的路径,编辑configuration.php 文件找到 repository 文件夹。

        'Filegator\Services\Storage\Filesystem' => [
            'handler' => '\Filegator\Services\Storage\Filesystem',
            'config' => [
                'separator' => '/',
                'config' => [],
                'adapter' => function () {
                  return new \League\Flysystem\Adapter\Local(
                      __DIR__.'/repository'
                      );
                },
            ],
        ],

3.2 SFTP存储

如果你想要添加SFTP为你的FileGator存储,先安装环境(注意:宝塔面板安装了PHP后会自动安装好composer ,只需要执行一下命令):

composer require league/flysystem-sftp:^1.0 -W

然后调整配置文件,添加SFTP相关的信息。

    'Filegator\Services\Storage\Filesystem' => [
            'handler' => '\Filegator\Services\Storage\Filesystem',
            'config' => [
                'separator' => '/',
                'config' => [],
                'adapter' => function () {
                  return new \League\Flysystem\Sftp\SftpAdapter([
                      'host' => 'example.com',
                      'port' => 22,
                      'username' => 'demo',
                      'password' => 'password',
                      'timeout' => 10,
                  ]);
                },
            ],
        ],

3.3 Dropbox存储

要想让Dropbox成为FileGator的第三方存储,首是安装环境:

composer require spatie/flysystem-dropbox

然后调整配置文件,添加Dropbox的Token信息。如下:

    'Filegator\Services\Storage\Filesystem' => [
            'handler' => '\Filegator\Services\Storage\Filesystem',
            'config' => [
                'separator' => '/',
                'config' => [
                    'case_sensitive' => false,
                ],
                'adapter' => function () {
                  $authorizationToken = '1234';
                  $client = new \Spatie\Dropbox\Client($authorizationToken);

                  return new \Spatie\FlysystemDropbox\DropboxAdapter($client);
                },
            ],
        ],

3.4 Amazon S3存储

要想让Amazon S3成为FileGator的第三方存储,需要安装环境:

composer require league/flysystem-aws-s3-v3:^1.0 -W

然后就是修改配置了。

    'Filegator\Services\Storage\Filesystem' => [
            'handler' => '\Filegator\Services\Storage\Filesystem',
            'config' => [
                'separator' => '/',
                'config' => [],
                'adapter' => function () {
                    $client = new \Aws\S3\S3Client([
                        'credentials' => [
                            'key' => '123456',
                            'secret' => 'secret123456',
                        ],
                        'region' => 'us-east-1',
                        'version' => 'latest',
                    ]);

                    return new \League\Flysystem\AwsS3v3\AwsS3Adapter($client, 'my-bucket-name');
                },
            ],
        ],

关于Amazon服务可以参考:AWS免费VPS主机申请使用

3.5 DigitalOcean Spaces

要想让DigitalOcean Spaces成为FileGator的第三方存储,需要安装环境:

composer require league/flysystem-aws-s3-v3:^1.0 -W

然后就是修改配置了。

获取DigitalOcean Spaces的Key和Secret信息请参考:DigitalOcean Spaces云存储空间管理使用

四、总结

如果你在执行composer命令时出现以下错误:

PHP Warning:  putenv() has been disabled for security reasons in phar:///usr/bin/composer/vendor/composer/xdebug-handler/src/Process.php on line 93

Warning: putenv() has been disabled for security reasons in phar:///usr/bin/composer/vendor/composer/xdebug-handler/src/Process.php on line 93
PHP Warning:  putenv() has been disabled for security reasons in phar:///usr/bin/composer/bin/composer on line 59

Warning: putenv() has been disabled for security reasons in phar:///usr/bin/composer/bin/composer on line 59
Info from https://repo.packagist.org: #StandWithUkraine
./composer.json has been created
Running composer update league/flysystem-sftp --with-all-dependencies

Installation failed, deleting ./composer.json.

                                                   
  [ErrorException]                                 
  putenv() has been disabled for security reasons  

原因是一些PHP函数如 putenv()被禁用了,你需要在宝塔面板中删除这些被禁用的函数。

文章出自:挖站否 https://wzfou.com/filegator/, 版权所有。本站文章除注明出处外,皆为作者原创文章,可自由引用,但请注明来源。

文章更新于: %s = human-readable time difference 下午5:45

Qi

关于站长(Qi),2008年开始混迹于免费资源圈中,有幸结识了不少的草根站长。之后自己摸爬滚打潜心学习Web服务器、VPS、域名等,兴趣广泛,杂而不精,但愿将自己经验与心得分享出来与大家共勉。

查看评论