- WordPress
- Shopware
- TYPO3
- PrestaShop
- Contao
- Joomla!
- Magento
- Redaxo
- Drupal
- osCommerce
- phpBB
- ProcessWire
RSS-/Atom-Feeds für CMS-Updates
Tags: Allgemein | Contao | Drupal | Joomla! | osCommerce | phpBB | ProcessWire | Redaxo | TYPO3 | TYPOlight | WordPress Kommentieren
Konfigurationsdateien und Backend-URLs der wichtigsten CMS und Shop-Systeme
Tags: CMS | Gambio | Joomla! | Joomla! / Virtuemart | phpBB | PrestaShop | Redaxo | TYPO3 | xt:Commerce | xt:Commerce VEYTON 4.0 Kommentieren
CMS
CMS | Konfigurationsdatei | Backend-URL |
---|---|---|
Conrete5 | /config/site.php (?) | |
Contao | /system/config/localconfig.php | /contao |
Drupal | /sites/default/settings.php (?) | /user |
ProcessWire | /site/config.php | /wadmin/login/ |
Joomla! | /configuration.php (?) | /administrator |
phpBB | /config.php (?) | |
phpwcms | /config/phpwcms/conf.inc.php | /login.php |
Redaxo | /redaxo/include/master.inc.php | /redaxo |
Typo3 4.7 | /typo3conf/config.php (?) | /typo3 |
Typo3 6.2 | /typo3conf/LocalConfiguration.php | /typo3 |
Typo3 7 | /typo3conf/LocalConfiguration.php | /typo3 |
Typolight | /typolight | |
Vanilla | /conf/config.php (?) | |
Website Baker CMS | /config.php (?) | /admin |
WordPress | /wp-config.php | /wp-admin |
Shop-Systeme
CMS | Konfigurationsdatei | Backend-URL |
---|---|---|
osCommerce | /admin | |
Oxid E-Shop | /config.inc.php (?) | |
Prestashop | /config/settings.inc.php | /adminXXXX XXXX steht dabei für eine zufällige vierstellige Zahl, die automatisch bei der Installation generiert wird. Dies dient der Absicherung des Backends. |
ShopWare | /config.php | /backend |
xt:commerce 3 / Gambio | /admin/includes/configure.php /includes/configure.php |
Der Login erfolgt über das Frontend |
xt:commerce VEYTON 4 | /conf/config.php | /xtAdmin |
[TypoScript] Hinzufügen einer Klasse zum body-Tag
Tags: Allgemein | TYPO3 Kommentieren
1 2 3 4 |
page.bodyTag > page.bodyTagCObject = TEXT page.bodyTagCObject.value= mobile page.bodyTagCObject.wrap = <body class="|"> |
Dies ist zum Beispiel nützlich, wenn für mobile Endgeräte eine spezielle Klasse verwendet werden soll:
1 2 3 4 5 6 7 8 9 10 11 12 |
[useragent = *iPhone*] || [useragent = *iPod*] || [useragent = *Android*] page.includeCSS { file1 = fileadmin/templates/default/css/mobile.css file1.title = Mobile CSS file1.media = screen } # Add class 'mobile' to body tag page.bodyTag > page.bodyTagCObject = TEXT page.bodyTagCObject.value= mobile page.bodyTagCObject.wrap = <body class="|"> [global] |
TYPO3 6.2.16: Links in Tabellen werden nach Update nicht mehr angezeigt
Tags: Allgemein | TYPO3 1 Kommentar
Mit TYPO3 Version 6.2.16 werden nun bestimmte Elemente durch htmlspecialchars
geschleust und nicht mehr geparsed. Dies kann folgende Symptome zur Folge haben:
- Element Tabelle: Links und HTML-Tags werden in Tabellenzellen ignoriert
- Element Bild / Bild und Text: HTML-Tags ind Bildunterschriften werden lesbar ausgeben (z.B. <strong>
)
Lösung
Man kann die durch das Update vorgenommene Änderung der TypoScript-Konfiguration wie folgt wieder zurücksetzen:
1 2 3 4 |
tt_content.table{ 20.innerStdWrap.parseFunc =< lib.parseFunc 20.innerStdWrap.htmlSpecialChars > } |
Quellen