ln -s /usr/local/bin/php7-70LATEST-CLI ~/php
In den neuen ManagedHosting 64 Bit Umgebungen (ManagedHosting 64, ManagedServer 64 oder Reseller Dedicated 64) ist der Pfad anders, z.B. so:
ln -s /usr/bin/php74 ~/php
| #!/bin/sh | |
| # this script lists only those domain names with missing A records | |
| domainnames="www.google.de | |
| foobar.google.de | |
| www.heise.de" | |
| for domain in $domainnames | |
| do |
| mod { | |
| web_layout { | |
| // disable translation mode for content elements | |
| // backported feature from TYPO3 9.x. See Xclass PageLayoutView.php for details | |
| localization.enableTranslate = 0 | |
| } | |
| } |
| # Load default processing options | |
| imports: | |
| - { resource: "EXT:rte_ckeditor/Configuration/RTE/Processing.yaml" } | |
| - { resource: "EXT:rte_ckeditor/Configuration/RTE/Editor/Base.yaml" } | |
| - { resource: "EXT:rte_ckeditor/Configuration/RTE/Editor/Plugins.yaml" } | |
| # Add configuration for the editor | |
| # For complete documentation see http://docs.ckeditor.com/#!/api/CKEDITOR.config | |
| editor: | |
| externalPlugins: |
| { | |
| "require": { | |
| "typo3-console/composer-auto-setup": "^0.1", | |
| "georgringer/news": "^6.1", | |
| "helhum/typo3-secure-web": "^0.2.5", | |
| "typo3/cms-introduction": "^3.0" | |
| }, | |
| "extra": { | |
| "typo3/cms": { | |
| "cms-package-dir": "{$vendor-dir}/typo3/cms", |
brew install imapsyncimapsync \
--host1 mail.nine.ch --ssl1 --user1 YOUR.NAME@typo3.org --password1 XXXXX \
--host2 mail.typo3.org --ssl1 --user2 YOUR.NAME@typo3.org --password2 YYYYY
| #!/bin/bash | |
| ## Description: Fetch and import production data | |
| ## Usage: import-production-data | |
| ## Example: "ddev import-production-data" | |
| SSH_CREDENTIALS="user@domain.tld" | |
| PRODUCTION_DB_USER="user" | |
| PRODUCTION_DB_PASSWORD="pw" |
| SELECT uid, pid, ExtractValue(pi_flexform, '/T3FlexForms/data/sheet[@index="receiver"]/language/field[@index="settings.flexform.receiver.email"]/value') as value | |
| FROM tt_content WHERE list_type LIKE "%powermail%" AND hidden = 0 AND deleted = 0; |