No I didn’t solve the problem.
I can’t find the cause.
I encountered the problem with the files.gallery project
if I test with a simple PHP upload page, I can upload the file without problems.
It may depend on the browser engine version, I’m waiting for a new version to be released. maybe...
By commenting the lines below, the error: invalid file size disappears, the file is loaded in the correct folder, but its size is always 0 bytes
// if(!isset($file[‘size’]) || empty($file[‘size’])) json_error(‘invalid file size’);
// if(config::$config[‘upload_max_filesize’] && $file[‘size’] >...
The files are loaded into the Data folder
specified in the various settings of the ExeOutput for PHP software
C:\output\Data
From the script, if I try to create a folder or a .txt file, the operation happens without problems.
What gets knocked out is file uploading
This is the code section of...
I’m creating a gallery with the files.gallery product, but the file upload function doesn’t work.
It always gives me a file size error and nothing is uploaded to me.
The files.gallery support tells me that this is a problem with ExeOutput for PHP.
Loading the same files.gallery script into...