
After updating to version 24.13 of AppGini, some columns that I marked to total the sum are giving an error, displaying the word "NaN" instead of displaying the total sum of the column.
Does anybody know how to solve this?
Thanks.
Hi,
maybe it's because of the decimal seperator (,)?
Olaf
Code: Select all
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);
Hi Olaf, I activated the display of errors in the PHP options, in my panel (DirectAdmin) there is no option to edit Config.php, but now when trying to run the Backup these errors appeared:onoehring wrote: ↑2024-06-19 05:02Hi Marcelo,
thanks for the letting us know about the PHP "problem" ans that upgrading solved the behavior in AG.
What is happening, when you try to create a backup? Any errors? What's on the screen?
If not, maybe you enable PHP errors temporarily by adding these lines in the end of your config.php:OlafCode: Select all
ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL);
Code: Select all
Fatal error: Uncaught Error: Call to undefined function exec() in /home/camaleaoapp/domains/camaleao.workspace.app.br/public_html/admin/pageBackupRestore.php:394
Stack trace:
#0 /home/camaleaoapp/domains/camaleao.workspace.app.br/public_html/admin/pageBackupRestore.php(39): Backup->create_backup()
#1 /home/camaleaoapp/domains/camaleao.workspace.app.br/public_html/admin/pageBackupRestore.php(4): Backup->__construct()
#2 {main}
thrown in /home/camaleaoapp/domains/camaleao.workspace.app.br/public_html/admin/pageBackupRestore.php on line 394
Hi Olafonoehring wrote: ↑2024-06-21 04:26Hi,
editing the config.php must be done be hand (download -> edit -> upload)
It seems that somehow the phpinternal function exec ( https://www.php.net/manual/en/function.exec.php ) could not be executed.
Thus I suggest adding the lines to config and see what else pops up
PS: You may also reupload all your files to make sure nothing was missed.
Olaf