Typo3: Unterschied zwischen den Versionen
F (Diskussion | Beiträge) (→Konfiguration) |
F (Diskussion | Beiträge) (→Konfiguration) |
||
Zeile 27: | Zeile 27: | ||
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: | 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 typo3conf/ENABLE_INSTALL_TOOL | + | touch typo3-dummy/typo3conf/ENABLE_INSTALL_TOOL |
chmod g+rw typo3-dummy/typo3temp/ -R | chmod g+rw typo3-dummy/typo3temp/ -R | ||
chmod g+rw typo3-dummy/typo3conf/ -R | chmod g+rw typo3-dummy/typo3conf/ -R | ||
Zeile 39: | Zeile 39: | ||
auch sollte jetzt die ["http://localhost/typo3-dummy/typo3/install/index.php?TYPO3_INSTALL[type]=config" BasicConfiguration] Seite relativ viel grün sein | auch sollte jetzt die ["http://localhost/typo3-dummy/typo3/install/index.php?TYPO3_INSTALL[type]=config" BasicConfiguration] Seite relativ viel grün sein | ||
+ | |||
+ | |||
+ | All Configuration | ||
+ | |||
+ | [im_noScaleUp] --- bilder werden nicht automatisch vergrößert als das original | ||
+ | |||
+ | [enable_DLOG] -- für entwickler | ||
== Quellen == | == Quellen == |
Version vom 31. August 2012, 14:55 Uhr
in Arbeit!
Inhaltsverzeichnis
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 localhost/typo3-dummy folgende Fehlermeldung erscheinen "No pages are found on the rootlevel!"
Konfiguration
ausgehend von der dummy Seite localhost/typo3-dummy bzw im Beispiel Ordner /home/dev
bevor die Installationsseite: 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: localhost/typo3-dummy/typo3/install angemeldet werden
auch sollte jetzt die ["http://localhost/typo3-dummy/typo3/install/index.php?TYPO3_INSTALL[type]=config" BasicConfiguration] Seite relativ viel grün sein
All Configuration
[im_noScaleUp] --- bilder werden nicht automatisch vergrößert als das original
[enable_DLOG] -- für entwickler