This file contains 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 | |
use TYPO3\CMS\Core\Database\ConnectionPool; | |
use TYPO3\CMS\Core\Utility\GeneralUtility; | |
// insert into tt_content (header, crdate, pid) VALUES ("New content", 123456789, 123); | |
$queryBuilder = GeneralUtility::makeInstance(ConnectionPool::class)->getQueryBuilderForTable('tt_content'); | |
$queryBuilder | |
->insert('tt_content') | |
->values([ | |
'header' => 'New content', |
This file contains 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 | |
namespace Onedrop\Common\Service; | |
/*************************************************************** | |
* Copyright notice | |
* | |
* (c) 2015 Hans Höchtl <[email protected]> | |
* All rights reserved | |
* | |
* This script is part of the TYPO3 project. The TYPO3 project is | |
* free software; you can redistribute it and/or modify |
This file contains 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 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
TRUNCATE TABLE cache_extensions; | |
TRUNCATE TABLE cache_hash; | |
TRUNCATE TABLE cache_imagesizes; | |
TRUNCATE TABLE cache_md5params; | |
TRUNCATE TABLE cache_pages; | |
TRUNCATE TABLE cache_pagesection; | |
TRUNCATE TABLE cache_typo3temp_log; | |
TRUNCATE TABLE index_fulltext; | |
TRUNCATE TABLE index_grlist; | |
TRUNCATE TABLE index_phash; |