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
composer dump-autoload |
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
SELECT COUNT(*) AS COUNT, SPALTE | |
FROM TABELLE | |
GROUP BY SPALTE | |
HAVING COUNT(*) > 1 |
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:if(condition: '{salutation} == 1', then: 'Herr....', else: 'Frau...')} |
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
// Push | |
scp -P26 DATEI.EXT BENUTZER@localhost: | |
// Get | |
scp -P26 BENUTZER@localhost:DATEI . |
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
UPDATE oxarticles AS c | |
LEFT JOIN oxarticles AS p | |
ON p.oxid = c.oxparentid | |
SET | |
c.oxweight = p.oxweight, | |
c.oxlength = p.oxlength, | |
c.oxheight = p.oxheight | |
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
oxLang::getInstance()->translateString('OX_LANG_KEY'); |
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
sass --watch ./Sass:./Styles | |
sass --watch ./sass:./css |
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
// /typo3/mod/tools/conf.php | |
$MCONF['access']='admin'; -> $MCONF['access']='group,user'; | |
// typo3/sysext/EXTENSION/mod/conf.php | |
$MCONF['access']='admin'; -> $MCONF['access']='group,user'; |
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
$oArticle = oxNew('oxarticle'); | |
$oArticle->load(oxConfig::getParameter('id')); |
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
oxConfig::getParameter('id'); |