⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.229
Server IP:
95.217.99.93
Server:
Linux sv1.sonichosted.com 4.18.0-553.34.1.lve.el8.x86_64 #1 SMP Thu Jan 9 16:30:32 UTC 2025 x86_64
Server Software:
LiteSpeed
PHP Version:
8.2.29
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
lifestylescentra
/
public_html
/
config
/
View File Name :
chunk-upload.php
<?php /** * @see https://github.com/pionl/laravel-chunk-upload */ return [ /* * The storage config */ 'storage' => [ /* * Returns the folder name of the chunks. The location is in storage/app/{folder_name} */ 'chunks' => 'chunks', 'disk' => 'local', ], 'clear' => [ /* * How old chunks we should delete */ 'timestamp' => '-3 HOURS', 'schedule' => [ 'enabled' => true, 'cron' => '25 * * * *', // run every hour on the 25th minute ], ], 'chunk' => [ // setup for the chunk naming setup to ensure same name upload at same time 'name' => [ 'use' => [ 'session' => true, // should the chunk name use the session id? The uploader must send cookie!, 'browser' => false, // instead of session we can use the ip and browser? ], ], ], 'handlers' => [ // A list of handlers/providers that will be appended to existing list of handlers 'custom' => [], // Overrides the list of handlers - use only what you really want 'override' => [ // \Pion\Laravel\ChunkUpload\Handler\DropZoneUploadHandler::class ], ], ];