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
| var osa = require('osa2'); | |
| var fs = require('fs'); | |
| var chokidar = require('chokidar'); | |
| var watcher = chokidar.watch('/Users/rup/Desktop/trolls', { | |
| ignored: /(^|[\/\\])\../, | |
| ignoreInitial: true, | |
| persistent: true, | |
| }); |
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
| config.tx_extbase { | |
| persistence { | |
| classes { | |
| Vendor\MyPackage\Domain\Model\Organisation { | |
| mapping { | |
| columns { | |
| tstamp.mapOnProperty = tstamp | |
| hidden.mapOnProperty = hidden | |
| crdate.mapOnProperty = crdate | |
| cruser_id.mapOnProperty = cruserId |
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
| <?php | |
| ## commentout preVars | |
| $GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['realurl']['_DEFAULT'] = array( | |
| 'preVars' => array( | |
| array( | |
| 'GETvar' => 'L', | |
| 'valueMap' => '', | |
| 'noMatch' => 'bypass', | |
| ), | |
| array( |
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
| SQL: | |
| images int(11) unsigned DEFAULT '0', | |
| ======================================================= | |
| TCA | |
| .... | |
| 'images' => array( | |
| 'exclude' => 0, | |
| 'label' => 'images', | |
| 'config' => \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::getFileFieldTCAConfig( | |
| 'images', |
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
| stages: | |
| - deploy | |
| # use caching | |
| cache: | |
| key: "$CI_BUILD_REF_NAME/$CI_BUILD_STAGE" | |
| paths: | |
| - .caches/ | |
| variables: |
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
| watch -n 5 "ls -lh *.css | awk '{print \$8, \$9, \$10, \$5}'" |
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
| User-agent: * | |
| # Only allow URLs generated with RealURL | |
| Disallow: /*?id=* | |
| Disallow: /*&id=* | |
| # L=0 is the default language | |
| Disallow: /*?L=0* | |
| Disallow: /*&L=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
| <f:translate extensionName="ot_website" id="page_created" arguments="{0: '{f:format.date(date: \'@{data.crdate}\', format: \'{f:translate(id: \\\'formatDate\\\', extensionName: \\\'ot_website\\\')}\')}'}" /> |
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
| /** | |
| * A special action which is called if the originally intended action could | |
| * not be called, for example if the arguments were not valid. | |
| * | |
| * The default implementation sets a flash message, request errors and forwards back | |
| * to the originating action. This is suitable for most actions dealing with form input. | |
| * | |
| * We clear the page cache by default on an error as well, as we need to make sure the | |
| * data is re-evaluated when the user changes something. | |
| * |
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
| <?php | |
| $TYPO3_CONF_VARS['FE']['addRootLineFields'] .= ',tx_realurl_pathsegment'; | |
| $TYPO3_CONF_VARS['EXTCONF']['realurl'] = array( | |
| '_DEFAULT' => array( | |
| 'init' => array( | |
| 'enableCHashCache' => true, | |
| 'appendMissingSlash' => 'ifNotFile,redirect[301]', | |
| 'enableUrlDecodeCache' => true, | |
| 'enableUrlEncodeCache' => true, | |
| 'adminJumpToBackend' => true, |
NewerOlder