|
|
Zeile 2: |
Zeile 2: |
| [[typo3 Installation]]|[[Typo3 Extensions]]|[[Typoscript]]|[[typo3 Benutzerverwaltung]]|[[Diskussion:Typo3]]|[[Debian_squeeze_typo3]]| | | [[typo3 Installation]]|[[Typo3 Extensions]]|[[Typoscript]]|[[typo3 Benutzerverwaltung]]|[[Diskussion:Typo3]]|[[Debian_squeeze_typo3]]| |
| [[typo3 hello world Seite anlegen]]|[[typo3 fT3BLOG Seite anlegen]]|[[typo3 Layout]]|[[typo3 Verschiedenes]]|[[typo3 netbeans]]|[[Typoscript]]|[[Typo3 Extensions]]|[[typo3 Benutzerverwaltung]] | | [[typo3 hello world Seite anlegen]]|[[typo3 fT3BLOG Seite anlegen]]|[[typo3 Layout]]|[[typo3 Verschiedenes]]|[[typo3 netbeans]]|[[Typoscript]]|[[Typo3 Extensions]]|[[typo3 Benutzerverwaltung]] |
− |
| |
− | == Installation ==
| |
− | === Basis ===
| |
− | apt-get install typo3
| |
− |
| |
− | === dummy ===
| |
− |
| |
− | # dummy kommt ins /home/dev, alternativ irgendwo anders hin
| |
− | cd /home/dev/
| |
− |
| |
− | cp /var/lib/typo3-dummy . -r
| |
− | rm typo3-dummy/typo3conf/localconf.php
| |
− | cp /etc/typo3-dummy/localconf.php typo3-dummy/typo3conf/
| |
− | chown devuser:www-data typo3-dummy/ -R
| |
− | chmod g+rw typo3-dummy/typo3conf/localconf.php
| |
− | ln -s typo3-dummy/ /var/www/typo3-dummy
| |
− |
| |
− | danach sollte im Browser mit der Url [http://localhost/typo3-dummy/ localhost/typo3-dummy] folgende Fehlermeldung erscheinen "No pages are found on the rootlevel!"
| |
− |
| |
− | == Konfiguration ==
| |
− | ausgehend von der dummy Seite [http://localhost/typo3-dummy/ localhost/typo3-dummy] bzw im Beispiel Ordner /home/dev
| |
− |
| |
− |
| |
− | bevor die ''Installationsseite:'' [http://localhost/typo3-dummy/typo3/install/index.php localhost/typo3-dummy/typo3/install] ohne Fehlermeldungen aufgerufen werden kann, muss noch folgendes gemacht werden:
| |
− |
| |
− | touch typo3-dummy/typo3conf/ENABLE_INSTALL_TOOL
| |
− | chmod g+rw typo3-dummy/typo3temp/ -R
| |
− | chmod g+rw typo3-dummy/typo3conf/ -R
| |
− | chmod ug+rw typo3-dummy/uploads/ -R
| |
− | chmod ug+rw typo3-dummy/fileadmin/ -R
| |
− |
| |
− | # Achtung außerhalb des typo3-dummy Verzeichnis, da typo3 ein Symbolischer Link ist
| |
− | chmod ug+rw typo3-dummy/typo3/ext/
| |
− |
| |
− | nun kann mit dem default passwort joh316 sich auf der ''Installationsseite:'' [http://localhost/typo3-dummy/typo3/install/index.php localhost/typo3-dummy/typo3/install] angemeldet werden
| |
− |
| |
− | auch sollte jetzt die ''Basic Configuration'' Seite relativ viel grün sein
| |
− |
| |
− | folgende Einstellung unter ''All Configuration'' können interessant sein
| |
− | * [im_noScaleUp] --- bilder werden nicht automatisch vergrößert als das original
| |
− | * [enable_DLOG] -- für entwickler
| |
− | * [SYS][enableDeprecationLog] -- für entwickler - falls alte funktionen benutzt werden
| |
− | * [warning_email_addr] --- hier die admin mail addresse
| |
− | * [fileCreateMask] ... [BE][createGroup] -- datei rechte ....
| |
− | * [explicitADmode] --- default dürfen backend nutzer alles ... vllt besser anderrum
| |
− |
| |
− | == Backend ==
| |
− | unter [http://localhost/typo3-dummy/typo3/index.php localhost/typo3-dummy/typo3] kann sich mit "admin" und "password" angemeldet werden
| |
− |
| |
− | == interessante Extension -- Erweiterungen ==
| |
− | siehe auch folgende Unterseite [[Typo3 Extensions]]
| |
− |
| |
− | == Probleme ==
| |
− | === No authentication methods available. Please, contact your TYPO3 administrator. ===
| |
− | Wahrscheinlich ist es eine ältere Typo3 Version oder bzw ein update zu einer neueren etc. Bei mir hatte ich über apt-get install typo3 die Version: 4.5.19+dfsg1-1 installiert. Default mäßig war als Authentifikation rsa ausgewählt, aber noch gar nicht als Erweiterun installiert.
| |
− |
| |
− | # ''Installationsseite:'' [http://localhost/typo3-dummy/typo3/install/index.php localhost/typo3-dummy/typo3/install] aufrufen und einloggen
| |
− | ## Menupunkt ''All Configuration''
| |
− | ## [loginSecurityLevel]=superchallenged setzen
| |
− | ## unten speichern
| |
− | # [http://localhost/typo3-dummy/typo3/index.php localhost/typo3-dummy/typo3] aufrufen und einloggen
| |
− | ## Menupunkt Admin Werkzeuge >> Erweiterungen (Extension) aufrufen
| |
− | ## Erweiterungen installieren
| |
− | ## Erweiterung rsaauth unter Dienste installieren
| |
− | # unter der ''Installationsseite:'' [http://localhost/typo3-dummy/typo3/install/index.php localhost/typo3-dummy/typo3/install] oder links im Menu Admin Werkzeuge >> Installation aufrufen und wieder unter
| |
− | ## All Configuration
| |
− | ## [loginSecurityLevel]=rsa setzen
| |
− | ## unten speichern
| |
− |
| |
− |
| |
− | * [loginSecurityLevel]=rsa -- konnte mich erstmal nicht ins backend einloggen (vorrübergehend gleich superchallenged gesetzt... evt später mal mit der extension rsaauth oder so schauen)
| |
− | ** danach kann über den extensionmanager/erweiterungen im admin bereich die rsaauth installiert werden, danach sollte dann auch rsa gehen
| |
− |
| |
− | == Unter Archlinux ==
| |
− | [[arch_typo3]]
| |
− |
| |
− |
| |
− | == Unter Debian ==
| |
− | [[debian_squeeze_typo3]]
| |
− |
| |
− | == Details zu Bestimmten Versionen von typo3 ==
| |
− | * Version 4.7.2: Berechtigungsproblem beim anlegen von Content
| |
− | => Lösung:
| |
− | ALTER TABLE `pages` ADD `t3ver_swapmode` TINYINT( 4 ) NOT NULL DEFAULT '0' AFTER `t3ver_tstamp`
| |
− |
| |
− | == Standards für unsere Vorlagen==
| |
− | [[typo3_templates_std_nc]]
| |
− |
| |
− | == für RedakteurInnen ==
| |
− | [[backend_anpassen]]
| |
− |
| |
− | == Quellen ==
| |
− | * [https://typo3.org typo3.org]
| |
− | * [https://de.wikipedia.org/wiki/TYPO3 de.wikipedia.org/wiki/TYPO3]
| |
− | * [http://wowa-webdesign.de/typo3-kurs/ Video Tutorial 2012]
| |
− |
| |
− | Vergleiche:
| |
− | * [http://www.handelskraft.de/2011/12/joomla-drupal-wordpress-typo3-und-contao-im-kampf-um-die-spitze/]
| |