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
SnappyMail 2.24.4 fails with
[301] Your PHP version is 32bit, 64bit is required!
on 64bit ARM architecture (Raspberry Pi running kernel 5.15.76-v8+, PHP 7.4.33) Most probably a PHP bug as
php -r "echo PHP_INT_SIZE;" returns 4
Currently reverted to 2.24.3, as 2.24.4 fails completely.
The text was updated successfully, but these errors were encountered:
Are you really using arm64 AND PHP 64bit? Because when PHP_INT_SIZE = 4 it is 32bit.
The largest integer supported is 2147483647 in 32 bit and 9223372036854775807 in 64 bit.
So, if we allow 32bit, this does have complications.
Are you accidentally using 32b userland on a 64b kernel?
You can test with: $file $(which php) It should say: /usr/bin/php: ELF 64-bit LSB pie executable
file $(which php)
/usr/bin/php: ELF 64-bit LSB pie executable
Sorry, something went wrong.
Just checked and apparently I really am running 32bit userland on 64bit kernel ... which came as quite a surprise to me ;) Thank you.
No branches or pull requests
SnappyMail 2.24.4 fails with
[301] Your PHP version is 32bit, 64bit is required!
on 64bit ARM architecture (Raspberry Pi running kernel 5.15.76-v8+, PHP 7.4.33) Most probably a PHP bug as
php -r "echo PHP_INT_SIZE;"
returns 4
Currently reverted to 2.24.3, as 2.24.4 fails completely.
The text was updated successfully, but these errors were encountered: