Log in to your Managed Hosting Server via SSH
Add these two lines to .bashrc:
| /* | |
| * TypoScript | |
| */ | |
| # render headline | |
| #tt_content.gridelements_pi1.10 = < lib.stdheader | |
| tt_content.gridelements_pi1.20.10.setup { | |
| 1 < lib.gridelements.defaultGridSetup | |
| 1 { | |
| cObject = FLUIDTEMPLATE | |
| cObject { |
| /* | |
| * TypoScript | |
| */ | |
| # render headline | |
| #tt_content.gridelements_pi1.10 = < lib.stdheader | |
| tt_content.gridelements_pi1.20.10.setup { | |
| 1 < lib.gridelements.defaultGridSetup | |
| 1 { | |
| columns { | |
| 1 < .default |
| lib.hreflang = HMENU | |
| lib.hreflang { | |
| special = language | |
| special.value = 0,1,2 | |
| 1 = TMENU | |
| 1 { | |
| # Link zu nicht-aktiven Sprachen anzeigen | |
| NO = 1 | |
| NO { | |
| stdWrap.cObject = TEXT |
| #!/bin/bash | |
| url="http://get.typo3.org/7" | |
| target="t3latest.tar.gz" | |
| workingdirectory=${PWD} | |
| clear | |
| echo "Getting the TYPO3 Sources from ${url}, writing to ${target}" | |
| # get the sourcec |
| (function(window, document, $) { | |
| "use strict" | |
| // Just for testing purposes this function triggers on all links | |
| $('a').on('click', function(event) { | |
| event.preventDefault(); | |
| // remove all existing modalboxes in DOM |
| <?xml version="1.0" encoding="utf-8" standalone="yes" ?> | |
| <T3DataStructure> | |
| <meta type="array"> | |
| <langDisable>1</langDisable> | |
| </meta> | |
| <sheets> | |
| <general> | |
| <ROOT type="array"> | |
| <TCEforms> | |
| <sheetTitle>Spalten (normal)</sheetTitle> |
| $(function() { | |
| $('a[href*=#]:not([href=#])').click(function() { | |
| if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') | |
| && location.hostname == this.hostname) { | |
| var target = $(this.hash); | |
| target = target.length ? target : $('[name=' + this.hash.slice(1) +']'); | |
| if (target.length) { | |
| $('html,body').animate({ | |
| scrollTop: target.offset().top - 124 //offsets for fixed header |
| plugin.tx_powermail.settings.setup { | |
| marketing { | |
| # Send Form values to CRM like salesforce or eloqua | |
| sendPost { | |
| # Activate sendPost (0/1) | |
| _enable = TEXT | |
| _enable.value = 1 | |
| # Target URL for POST values (like http://www.target.com/target.php) | |
| targetUrl = http://www.example.com/scripts/supermailer-powermail-crm.php?debug=1 |
| <?php | |
| // enable "sysfolder" and "startingpoints_recursive" field | |
| $GLOBALS['TCA']['tx_kesearch_indexerconfig']['columns']['sysfolder']['displayCond'] .= ',customindexer'; | |
| $GLOBALS['TCA']['tx_kesearch_indexerconfig']['columns']['startingpoints_recursive']['displayCond'] .= ',customindexer'; |