Install FFmpeg with homebrew. You'll need to install it with a couple flags for webm and the AAC audio codec.
brew install ffmpeg --with-libvpx --with-libvorbis --with-fdk-aac --with-opus
<settings.link> | |
<TCEforms> | |
<exclude>1</exclude> | |
<label> | |
Link to Page or a File or a Content-Element | |
</label> | |
<config> | |
<type>input</type> | |
<size>30</size> | |
<eval>trim</eval> |
<?php | |
namespace Vendor\Extension\Solr\UserFunc; | |
class IndexUserFunc | |
{ | |
/** | |
* This value is automatically inserted by userFunc handling | |
* @var \TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer | |
*/ |
<?php | |
namespace Vendor\MyExt\Solr\IndexQueue; | |
use ApacheSolrForTypo3\Solr\IndexQueue\Item; | |
use ApacheSolrForTypo3\Solr\IndexQueue\PageIndexer as SolrPageIndexer; | |
/** | |
* Override PageIndexer class | |
*/ | |
class PageIndexer extends SolrPageIndexer |
# Redis (has to be configured to different databases on shared hosting) | |
TYPO3_TypoScript_Content: | |
backend: TYPO3\Flow\Cache\Backend\RedisBackend | |
backendOptions: | |
defaultLifetime: 0 | |
Flow_Mvc_Routing_Resolve: | |
backend: TYPO3\Flow\Cache\Backend\RedisBackend | |
backendOptions: | |
defaultLifetime: 0 |
location ~ /\. { | |
deny all; | |
access_log off; | |
log_not_found off; | |
} | |
location = /favicon.ico { | |
log_not_found off; | |
access_log off; | |
} |
import axios, { AxiosRequestConfig } from "axios"; | |
import router from "@/router"; //shortcut to src | |
import { Module } from "vuex"; | |
const authModule: Module<any, any> = { | |
state: { | |
loggedIn: false, | |
loginError: null, | |
username: null |