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
| services: | |
| db: | |
| image: mariadb:11.4 | |
| restart: unless-stopped | |
| environment: | |
| MARIADB_ROOT_PASSWORD: "GehtDichNixAn" | |
| MARIADB_USER: "bugsink" | |
| MARIADB_PASSWORD: "bugsink" | |
| MARIADB_DATABASE: "bugsink" | |
| volumes: |
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 PhpStorm Log Parser Configuration | |
| ======================================= | |
| Author: Stefan Froemken | |
| Purpose: Highlight and parse TYPO3 CMS logs in PhpStorm's "Log File Colors & Formatting" | |
| This configuration extracts and color-codes log fields: | |
| Timestamp, Severity, Request, Component, and Message. |
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 CType, list_type, GROUP_CONCAT(pid) AS Seiten, COUNT(*) AS Anzahl | |
| FROM `tt_content` | |
| WHERE `tt_content`.`hidden` = 0 | |
| AND `tt_content`.`deleted` = 0 | |
| GROUP BY CType, list_type | |
| ORDER BY CType, list_type; |
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 | |
| declare(strict_types=1); | |
| /* | |
| * This file is part of the package jweiland/yellowpages2. | |
| * | |
| * For the full copyright and license information, please read the | |
| * LICENSE file that was distributed with this source code. | |
| */ |
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
| # Add Froemmi specified configuration | |
| # For complete documentation see https://ckeditor.com/docs/ckeditor5/latest/api/module_core_editor_editorconfig-EditorConfig.html | |
| editor: | |
| #externalPlugins: | |
| # typo3link: { route: 'rteckeditor_wizard_browse_links' } | |
| config: | |
| # the CSS file to be used inside the editor | |
| contentsCss: | |
| - "EXT:site_package/Resources/Public/Css/RTE.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_git curl -vvv -X 'POST' 'https://typo3git.ddev.site' | |
| * Trying ::1:443... | |
| * connect to ::1 port 443 failed: Connection refused | |
| * Trying 127.0.0.1:443... | |
| * Connected to typo3git.ddev.site (127.0.0.1) port 443 (#0) | |
| * ALPN: offers h2 | |
| * ALPN: offers http/1.1 | |
| * CAfile: /etc/ssl/cert.pem | |
| * CApath: none | |
| * (304) (OUT), TLS handshake, Client hello (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
| SELECT table_name AS "Table", ROUND((data_length / 1024 / 1024), 2) AS "Data size (MB)", ROUND((index_length / 1024 / 1024), 2) AS "Index size (MB)" | |
| FROM information_schema.TABLES | |
| WHERE table_schema = "[database_name]" | |
| ORDER BY data_length DESC |
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
| // Example for TYPO3 extension maps2 | |
| $maps2OpenStreetMaps[0].map.eachLayer(function(layer) { | |
| if (layer instanceof L.Polygon){ | |
| layer.off("click"); | |
| } | |
| }); |
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 | |
| // For port 24 host without scheme is just fine | |
| // Add scheme, if using secure connection. Port 465 or 587 | |
| $host = 'ssl://smtp.strato.de'; | |
| //$host = 'tls://smtp.strato.de'; | |
| $port = 465; | |
| //$port = 25; | |
| $errorNumber; | |
| $error; | |
| $timeout = 10; |
NewerOlder