kaizirlewagen
kaizirlewagen
I have the same issue here https://github.com/orchidsoftware/platform/issues/2487. Has someone any ideas or a solution?
Duplicate issue post https://github.com/orchidsoftware/platform/issues/1836
``` $cfg = ActiveRecord\Config::instance(); $cfg->set_model_directory('../src/models'); $cfg->set_connections($db_connections); ActiveRecord\Config::initialize(function($cfg) { $cfg->set_default_connection(DEFAULT_DB_CONN); }); ActiveRecord\Connection::$PDO_OPTIONS[PDO::MYSQL_ATTR_INIT_COMMAND] = 'SET NAMES \'UTF8\''; ActiveRecord\Connection::$PDO_OPTIONS[PDO::MYSQL_ATTR_SSL_KEY] = '../ssl/client-key.pem'; ActiveRecord\Connection::$PDO_OPTIONS[PDO::MYSQL_ATTR_SSL_CERT] = '../ssl/client-cert.pem'; ActiveRecord\Connection::$PDO_OPTIONS[PDO::MYSQL_ATTR_SSL_CA] = '../ssl/ca-cert.pem'; ActiveRecord\Connection::$PDO_OPTIONS[PDO::MYSQL_ATTR_SSL_VERIFY_SERVER_CERT] = false; ``` If some...
Works for me.