You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PHP Warning: copy(): The second argument to copy() function cannot be a directory in /../htdocs/wp-content/plugins/S3-Uploads/inc/class-s3-uploads.php on line 187
The original implementation of that function would fire an error on my VVV because copy() couldn't understand that tempnam() generated filenames were real files, not directories.
The original implementation of that function would fire an error on my VVV because
copy()
couldn't understand thattempnam()
generated filenames were real files, not directories.Using the real file name available on
$file['name']
array solved this -> https://github.com/moraleida/S3-Uploads/blob/fix-php-cant-copy-to-directory/inc/class-s3-uploads.php#L184The text was updated successfully, but these errors were encountered: