[TYPO3-german] Oracle mit TYPO3
Philipp Gampe
philipp.gampe at typo3.org
Tue Jan 27 14:16:01 CET 2015
Hi Hans Wolf,
Hans Wolf wrote:
> Ohne den Installer zumindest einmal aufzurufen fehlen aber die Ordner
> \typo3conf\ oder auch t3lib (es gibt nur typo3).
Es gibt seit 6.2 keinen Ordner t3lib mehr, der wird auch nicht benötigt.
Du musst die Ordner typo3conf/, typo3temp/, fileadmin/, und uploads/
anlegen. In den Ordner typo3conf/ kommt die LocalConfiguration.php Datei.
Dort schreibst du die Settings wie im Wiki beschrieben rein:
<?php
return array(
'DB' => array(
'username' => '<name>',
'password' => 'pwd',
'host' => '...',
'database' => 'db-name',
),
'EXT' => array(
'EXTCONF' => array(
'dbal' => array(
'handlerCfg' => array(
'_DEFAULT' => array(
'type' => 'adodb',
'config' => array(
'driver' => 'oci8',
),
),
),
),
),
),
);
Dann kannst du das Install Tool aufrufen. Überspringe den 1-2-3-Installer
und gehe stattdessen zu Important Actions > DB Compare.
Am besten installierst du dir aber zuerst mal eine Beispielinstallation auf
einer MySQL Datenbank, damit du dir anschauen musst, wie eine "normale"
Installation aussieht.
Grüße
--
Philipp Gampe – PGP-Key 0AD96065 – TYPO3 UG Bonn/Köln
Documentation – Active contributor TYPO3 CMS
TYPO3 .... inspiring people to share!
More information about the TYPO3-german
mailing list