We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@ewels I have uncovered an issue with the getSize function in files.php (ln 191). Its giving the following error for some files:
PHP Fatal error: Uncaught RuntimeException: SplFileInfo::getSize(): stat failed for XXXX
The files look fine and open as expected on Linux, so I don't know why certain files are failing.
I fixed the error by swapping out $size = $file->getSize(); for $size = filesize($file);
$size = $file->getSize();
$size = filesize($file);
I'll submit a PR when I have some more time
The text was updated successfully, but these errors were encountered:
Strange, thanks @darogan! I look forward to the PR.
Sorry, something went wrong.
No branches or pull requests
@ewels I have uncovered an issue with the getSize function in files.php (ln 191). Its giving the following error for some files:
PHP Fatal error: Uncaught RuntimeException: SplFileInfo::getSize(): stat failed for XXXX
The files look fine and open as expected on Linux, so I don't know why certain files are failing.
I fixed the error by swapping out
$size = $file->getSize();
for$size = filesize($file);
I'll submit a PR when I have some more time
The text was updated successfully, but these errors were encountered: