Fresh install of 1.2.21, on a freshly installed server, Ubuntu Server 22.04 LTS.
Begin installation and at the pre-installation checks had an issue with date.timezone for for apache and the cli not set.
Realized the lines were commented out by default, fixed that, restarted apache but the cacti installer is still throwing an error saying it's not set for apache2 php.ini looking at phpinfo() it shows that the timezone is set I've searched my system for any and all php.ini files, these are the only two
Code: Select all
root@nas:/var/www/html# find / -name php.ini
/etc/php/8.1/apache2/php.ini
/etc/php/8.1/cli/php.ini
root@nas:/var/www/html#
Code: Select all
root@nas:/var/www/html# grep date\\.timezone /etc/php/*/*/php.ini
/etc/php/8.1/apache2/php.ini:; https://php.net/date.timezone
/etc/php/8.1/apache2/php.ini:date.timezone = "America/Toronto"
/etc/php/8.1/cli/php.ini:; https://php.net/date.timezone
/etc/php/8.1/cli/php.ini:date.timezone = "America/Toronto"