Validator | Code | Message | Supported by Fieldtypes | Matching JavaScript Validity State |
---|---|---|---|---|
NotEmpty | 1221560910 | The given subject was NULL | all | |
NotEmpty | 1221560718 | The given subject was empty (string). | all | valueMissing |
NotEmpty | 1347992400 | The given subject was empty (array). | all |
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
# Fediverse Hints | |
The fediverse is a decentral hosted network, which is working based on the ActivityPub protocol. | |
There are Servers with different Apps, whereas the kind of the app might serve a special purpose like (Micro)Blogging, Video-streaming, etc. | |
This page is for getting a quick overview and doesn't claim to have the right links for everyone. | |
Instead it's perhaps only a base to search for a better fitting solution. | |
## The Apps | |
Examples: |
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 | |
# Execute: | |
# php -d memory_limit=2G t3d.php file.t3d > output.txt | |
$fd = fopen($argv[1], 'rb'); | |
function getNextFilePart($fd, $unserialize = false, $name = '') { | |
$headerLength = 32 + 1 + 1 + 1 + 10 + 1; | |
$headerString = fread($fd, $headerLength); | |
if (empty($headerString)) { | |
echo 'File does not contain data for "' . $name . '"'; |
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
Running bash [-c /tmp/test_ddev.sh] | |
======= Existing project config ========= | |
These config files were loaded for project test: [/media/david/DataLinux/___DDEV___/TYPO3/t3-screenshots/test/.ddev/config.yaml] | |
name: test | |
type: typo3 | |
docroot: public | |
php_version: 8.1 | |
webserver_type: nginx-fpm | |
webimage: drud/ddev-webserver:v1.21.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
## Configuration options with # in front are not active and they were | |
## valid at install time. Updating the package does not update this file | |
## automatically. | |
## Latest options listed at: | |
## https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/files/gitlab-config-template/gitlab.rb.template | |
## Url on which GitLab will be reachable. | |
## For more details on configuring external_url see: | |
## https://gitlab.com/gitlab-org/omnibus-gitlab/blob/master/doc/settings/configuration.md#configuring-the-external-url-for-gitlab |
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
<NotepadPlus> | |
<?xml version="1.0" encoding="UTF-8" ?> | |
<AutoComplete> | |
<KeyWord name="absRefPrefix" /> | |
<KeyWord name="accessibility" /> | |
<KeyWord name="accessKey" /> | |
<KeyWord name="ACT" /> | |
<KeyWord name="ACTIFSUB" /> | |
<KeyWord name="ACTIFSUBRO" /> | |
<KeyWord name="ACTRO" /> |
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 | |
protected function executeQueryBuilder($queryBuilder, string $debugHeader) | |
{ | |
$resource = null; | |
try { | |
$resource = $queryBuilder->execute(); | |
} catch (\Doctrine\DBAL\DBALException $e) { | |
$previous = $e->getPrevious(); |
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); | |
namespace WDB\PHP\Csv2content\Utility; | |
defined('TYPO3_MODE') || die(); | |
class CsvUtility | |
{ |
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 | |
/* | |
* This file is part of the TYPO3 CMS project. | |
* | |
* It is free software; you can redistribute it and/or modify it under | |
* the terms of the GNU General Public License, either version 2 | |
* of the License, or any later version. | |
* | |
* For the full copyright and license information, please read the |
NewerOlder