Hi,
ich möchte Typo3 mit PostgreSQL verwenden. Die beiden Extensions "adodb" und "dbal" habe ich nach
typo3conf/ext kopiert und meine localconf.php sieht wie folgt aus:
Code:
<?php
// Default password is "joh316" :
$TYPO3_CONF_VARS['BE']['installToolPassword'] = 'xxx';
$TYPO3_CONF_VARS['EXT']['extList'] = 'tsconfig_help,context_help,extra_page_cm_options,impexp,sys_note,tstemplate,tstemplate_ceditor,tstemplate_info,tstemplate_objbrowser,tstemplate_analyzer,func_wizards,wizard_crpages,wizard_sortpages,lowlevel,install,belog,beuser,aboutmodules,setup,taskcenter,info_pagetsconfig,viewpage,rtehtmlarea,css_styled_content,t3skin';
$TYPO3_CONF_VARS['EXTCONF']['dbal']['handlerCfg'] = array (
'_DEFAULT' => array (
'type' => 'adodb',
'config' => array(
'driver' => 'postgres',
)
)
);
$TYPO3_CONF_VARS['EXT']['extList'] .= ',adodb,dbal';
$typo_db_extTableDef_script = 'extTables.php';
## INSTALL SCRIPT EDIT POINT TOKEN - all lines after this points may be changed by the install script!
$typo_db_username = 'cms'; // Modified or inserted by TYPO3 Install Tool.
$typo_db_password = 'xxx'; // Modified or inserted by TYPO3 Install Tool.
$typo_db_host = 'db.robustsoft.de'; // Modified or inserted by TYPO3 Install Tool.
$TYPO3_CONF_VARS['SYS']['encryptionKey'] = 'f194e22817430afb78e251dd59aa14f5'; // Modified or inserted by TYPO3 Install Tool.
$TYPO3_CONF_VARS['SYS']['compat_version'] = '4.2'; // Modified or inserted by TYPO3 Install Tool.
$TYPO3_CONF_VARS['BE']['installToolPassword'] = 'aaa66d5516497357ef858307348ecd40'; // Modified or inserted by TYPO3 Install Tool.
$TYPO3_CONF_VARS['FE']['disableNoCacheParameter'] = '0'; // Modified or inserted by TYPO3 Install Tool.
$TYPO3_CONF_VARS['GFX']["im_path"] = '/usr/bin/'; // Modified or inserted by TYPO3 Install Tool.
$TYPO3_CONF_VARS['GFX']['im_version_5'] = 'gm'; // Modified or inserted by TYPO3 Install Tool.
$TYPO3_CONF_VARS['SYS']['sitename'] = 'Robustsoft'; // Modified or inserted by TYPO3 Install Tool.
// Updated by TYPO3 Install Tool 31-05-08 19:16:03
?> Wenn ich jedoch im 1-2-3-Install-Tool versuche, mit der Datenbank zu verbinden, bekomme ich:
Code:
Warning: mysql_query:smile:sad: supplied argument is not a valid MySQL-Link resource in /srv/www/typo3/t3lib/class.t3lib_db.php on line 987
Woran könnte das liegen? Wie stelle ich auf PostgreSQL um?