This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # typo3 should be in a subfolder e.g. "domain.tld/liveweb" | |
| # in that subfolder there must be a folder named "_backup_DBs" | |
| # | |
| # vars | |
| # | |
| now=$(date +"%Y%m%d") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| page { | |
| bodyTagCObject = CASE | |
| bodyTagCObject { | |
| key.field = layout | |
| default = TEXT | |
| default.value = <body id="id_{field:alias//field:uid}" class="{$languageKey}"> | |
| default.insertData = 1 | |
| 0 < .default | |
| 1 = TEXT | |
| 1.noTrimWrap = |<body id="id_{field:alias//field:uid}" class="{$languageKey} |">| |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| TCEMAIN.table.pages { | |
| disablePrependAtCopy = 1 | |
| disableHideAtCopy = 0 | |
| } | |
| TCEMAIN.table.altL { | |
| disablePrependAtCopy = 1 | |
| bodytext.RTEfullScreenWidth= 100% | |
| } | |
| #Setzen der Seitenbaumrechte per TypoScript | |
| TCEMAIN { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| mysqldump -u ###user### -p###password### ###dbname### > ###dbname###_@date.sql |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ajax_###myextension### = PAGE | |
| ajax_###myextension### { | |
| typeNum = 6661 | |
| typeNum = {$plugin.tx_###myextension###.settings.###ajaxpagetype###} | |
| config { | |
| disableAllHeaderCode = 1 | |
| xhtml_cleaning = 0 | |
| admPanel = 0 | |
| additionalHeaders = Content-type: text/plain |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // @see https://css-tricks.com/ajaxing-svg-sprite/ | |
| var ajax = new XMLHttpRequest(); | |
| ajax.open("GET", "svg/sprite.svg", true); | |
| ajax.send(); | |
| ajax.onload = function(e) { | |
| var div = document.createElement("div"); | |
| div.innerHTML = ajax.responseText; | |
| document.body.insertBefore(div, document.body.childNodes[0]); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <p>Die angeforderte Seite konnte vom Webserver nicht gefunden werden, daher lieferte dieser den Fehler 404 zurück.</p> | |
| <p>404-Fehler können auftreten, wenn…</p> | |
| <div>…Sie als Besucher einen fehlerhaften Link eintippen, | |
| <br />…eine Suchmaschine auf eine veraltete Webseite verlinkt, | |
| <br />…die Webseite verzogen oder gelöscht wurde.</div> | |
| <div> | |
| <p>Besuchen Sie doch unsere Startseite, Sie finden dort bestimmt wonach sie suchten: <a href="/" title="Zur Startseite" rel="nofollow">Startseite von ###WEBSEITENNAME###</a></p> | |
| </div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # EditorConfig helps developers define and maintain consistent | |
| # coding styles between different editors and IDEs | |
| # editorconfig.org | |
| root = true | |
| [*]a | |
| # change these settings to your own preference |