- Clone or download this repository.
- Unzip the archive if needed and rename the folder to
oracle-connector
.
If you know your way around Git, you can download this plugin as a submodule:
$ cd path/to/kirby
$ git submodule add https://github.com/francisceril/oracle-connector site/plugins/oracle-connector
Add your database configuration in your site/config/config.php
<?php
return [
'db' => [
'type' => 'oracle',
'host' => 'host',
'port' => 'port',
'database' => 'database',
'user' => 'user',
'pass' => 'pass'
]
];
Install the required PHP extension if not already available.