. // Verify that certain setup prerequisites are met class SetupChecks extends Secrets { public function __construct (Setup $setup) { // Check if PHP version is too old if (version_compare (PHP_VERSION, '5.3.3') < 0) { // If so, split the PHP version by dashes $version_parts = explode ('-', PHP_VERSION); // And throw exception throw new \Exception (sprintf ( // The exception message 'PHP %s is too old. Must be at least PHP 5.3.3.', // The first part of the version $version_parts[0] )); } // Throw exception if for Blowfish hashing support isn't detected if ((defined ('CRYPT_BLOWFISH') and CRYPT_BLOWFISH) === false) { throw new \Exception ( 'Failed to find CRYPT_BLOWFISH. Blowfish hashing support is required.' ); } // Throw exception if HTTP root could not be retrieve if (empty ($setup->httpRoot)) { throw new \Exception ( 'Could not get HTTP root, please configure manually' ); } // Throw exception if administrative password is set to the default if ($this->adminPassword === 'password') { throw new \Exception (sprintf ( 'You must use an admin password other than "password" in %s', $setup->getBackendPath ('classes/secrets.php') )); } // Throw exception if encryption key is set to the default if ($this->encryptionKey === '8CharKey') { throw new \Exception (sprintf ( 'You must use an encryption key other than "8CharKey" in %s', $setup->getBackendPath ('classes/secrets.php') )); } // Throw exception if notification email is set to the default if ($this->notificationEmail === 'example@example.com') { throw new \Exception (sprintf ( 'You must use an e-mail other than "example@example.com" in %s', $setup->getBackendPath ('classes/secrets.php') )); } // Check if the database is set to an SQL other than SQLite if ($setup->dataFormat === 'sql' and $this->databaseType !== 'sqlite') { // If so, throw exception if database user is set to the default if ($this->databaseUser === 'user') { throw new \Exception (sprintf ( 'You must use a database user name other than "user" in %s', $setup->getBackendPath ('classes/secrets.php') )); } // Throw exception if database password is set to the default if ($this->databasePassword === 'password') { throw new \Exception (sprintf ( 'You must use a database password other than "password" in %s', $setup->getBackendPath ('classes/secrets.php') )); } } // Check if we're sending notification e-mails through SMTP if ($setup->mailer === 'smtp') { // If so, throw exception if SMTP user is set to the default if ($this->smtpUser === 'user') { throw new \Exception (sprintf ( 'You must use an SMTP user name other than "user" in %s', $setup->getBackendPath ('classes/secrets.php') )); } // Throw exception if SMTP password is set to the default if ($this->smtpPassword === 'password') { throw new \Exception (sprintf ( 'You must use an SMTP password other than "password" in %s', $setup->getBackendPath ('classes/secrets.php') )); } } } }