Installing 5.6.2.1 on Oracle
Permalink
Is it possible to install Concrete5 5.6.2.1 into an Oracle database? I see mentions of Oracle on the forum, but I don't see specific instruction on installation. As I work through the Concrete5 setup, the database information asks for mySql Username and mySql Password.
Thanks,
Ben
Thanks,
Ben
The problem is that in base.php the DB_TYPE is hard coded to "mysqlt". So the installation assumes you will only use MySql as a database.
<code>
# Variables/constants necessary for ADODB
define('DB_TYPE', 'mysqlt');
if (!defined('DB_USE_CACHE')) {
// caching now handled by our app, no longer by adodb
define('DB_USE_CACHE', false);
}
</code>
Has anyone installed Concrete5 on a database other then MySQL?
<code>
# Variables/constants necessary for ADODB
define('DB_TYPE', 'mysqlt');
if (!defined('DB_USE_CACHE')) {
// caching now handled by our app, no longer by adodb
define('DB_USE_CACHE', false);
}
</code>
Has anyone installed Concrete5 on a database other then MySQL?
http://www.concrete5.org/documentation/how-tos/developers/external-...