Also, because we’re running system level hard disc encryption, under Global/Features we unchecked
Enable Encryption of Items Stored on Drive
and
Enable Encryption of Items Stored on CouchDB
Could that be causing this?
php8.0-amqp - AMQP extension for PHP
php8.0-apcu - APC User Cache for PHP
php8.0-ast - AST extension for PHP 7
php8.0-bcmath - Bcmath module for PHP
php8.0-bz2 - bzip2 module for PHP
php8.0-cgi - server-side, HTML-embedded scripting language (CGI binary)
php8.0-cli - command-line interpreter for the PHP scripting language
php8.0-common - documentation, examples and common module for PHP
php8.0-curl - CURL module for PHP
php8.0-dba - DBA module for PHP
php8.0-decimal - Arbitrary precision floating-point decimal for PHP
php8.0-dev - Files for PHP8.0 module development
php8.0-ds - PHP extension providing efficient data structures for PHP 7
php8.0-enchant - Enchant module for PHP
php8.0-fpm - server-side, HTML-embedded scripting language (FPM-CGI binary)
php8.0-gd - GD module for PHP
php8.0-gearman - PHP wrapper to libgearman
php8.0-gmagick - Provides a wrapper to the GraphicsMagick library
php8.0-gmp - GMP module for PHP
php8.0-gnupg - PHP wrapper around the gpgme library
php8.0-grpc - High performance, open source, general RPC framework for PHP
php8.0-http - PECL HTTP module for PHP Extended HTTP Support
php8.0-igbinary - igbinary PHP serializer
php8.0-imagick - Provides a wrapper to the ImageMagick library
php8.0-imap - IMAP module for PHP
php8.0-inotify - Inotify bindings for PHP
php8.0-interbase - Interbase module for PHP
php8.0-intl - Internationalisation module for PHP
php8.0-ldap - LDAP module for PHP
php8.0-lz4 - LZ4 Extension for PHP
php8.0-mailparse - Email message manipulation for PHP
php8.0-maxminddb - Reader for the MaxMind DB file format for PHP
php8.0-mbstring - MBSTRING module for PHP
php8.0-mcrypt - PHP bindings for the libmcrypt library
php8.0-memcache - memcache extension module for PHP
php8.0-memcached - memcached extension module for PHP, uses libmemcached
php8.0-mongodb - MongoDB driver for PHP
php8.0-msgpack - PHP extension for interfacing with MessagePack
php8.0-mysql - MySQL module for PHP
php8.0-oauth - OAuth 1.0 consumer and provider extension
php8.0-odbc - ODBC module for PHP
php8.0-opcache - Zend OpCache module for PHP
php8.0-pcov - Code coverage driver
php8.0-pgsql - PostgreSQL module for PHP
php8.0-phpdbg - server-side, HTML-embedded scripting language (PHPDBG binary)
php8.0-protobuf - Protocol buffers bindings for PHP
php8.0-pspell - pspell module for PHP
php8.0-psr - PSR interfaces for PHP
php8.0-raphf - raphf module for PHP
php8.0-readline - readline module for PHP
php8.0-redis - PHP extension for interfacing with Redis
php8.0-rrd - PHP bindings to rrd tool system
php8.0-smbclient - PHP wrapper for libsmbclient
php8.0-snmp - SNMP module for PHP
php8.0-soap - SOAP module for PHP
php8.0-solr - PHP extension for communicating with Apache Solr server
php8.0-sqlite3 - SQLite3 module for PHP
php8.0-ssh2 - Bindings for the libssh2 library
php8.0-swoole - Swoole Coroutine Fiber Async Programming Framework for PHP
php8.0-sybase - Sybase module for PHP
php8.0-tidy - tidy module for PHP
php8.0-uuid - PHP UUID extension
php8.0-vips - PHP extension for interfacing with libvips
php8.0-xdebug - Xdebug Module for PHP
php8.0-xhprof - Hierarchical Profiler for PHP 5.x
php8.0-xml - DOM, SimpleXML, XML, and XSL module for PHP
php8.0-xmlrpc - XML-RPC servers and clients functions for PHP
php8.0-xsl - XSL module for PHP (dummy)
php8.0-yac - YAC (Yet Another Cache) for PHP
php8.0-yaml - YAML-1.1 parser and emitter for PHP
php8.0-zip - Zip module for PHP
php8.0-zmq - ZeroMQ messaging bindings for PHP
php8.0-zstd - Zstandard extension for PHP```
Not a module issue. PHP doesn’t like mixing types especially in math.
try library/payment.inc.php L-64 and add a cast to string $_POST["Payment$CountRow"] ending with:
if (isset($_POST["Payment$CountRow"]) && (int)$_POST["Payment$CountRow"] * 1 > 0) {
actually get rid of the * 1 also. old trick to cast to int.
This needs to be an issue because we have many of these math casts throughout. Especially any with super from network. @hitechelp I’d go back to PHP7.4 or 7.3 if already installed.