• Home
  • Services
  • Extensions
    • OAuth2 Server + Client
    • Cardealer
    • Questionaire
    • Sitepackage
  • Blog
  • Kontakt

Blog

about TYPO3, Vue or other cool Web Dev Stuff

07/04/2023

Starlink vs Deutsche Telekom

Any questions?

  Read more

06/22/2023

Mount multiple apps in a Vue project

<div id="app-1"></div>
<div id="app-2"></div>
______________________________

import { createApp } from 'vue'

import App1 from './App1.vue'
…
 Vue
  Read more

06/21/2023

Secure way to receive a Secret in PHP

The readable secret is only stored on user side for usage in JS code, which sends the secret with a post request to the server

On server side we use…

 PHP  Backend
  Read more

06/11/2023

Render content by UID in controller

$contentObject = GeneralUtility::makeInstance(ContentObjectRenderer::class);
return $contentObject->cObjGetSingle('CONTENT', array('table' =>…

 Extbase  TYPO3  PHP
  Read more

01/07/2023

StandaloneView FLUID Template Rendering

if (!$this->view) {
    /** @var \TYPO3\CMS\Fluid\View\StandaloneView $tempView */
$tempView =…
 Extbase
  Read more

01/05/2023

Define multiple hosts in .htaccess to solve CORS issues

# Define allowed origins
SetEnvIf Origin "(https://my.ddev.site|tauri://localhost|https://localhost:1420|https://127.0.0.1:1420)$"…
  Read more

11/22/2022

Recursive function for a TYPO3 sys_category tree

$categories = $this->categoryRepository->findAll()->toArray();
$categoriesTree = $this->buildTree($categories);
$this->view->assign('categories',…
 Extbase  Frontend
  Read more

11/16/2022

Another way to use EXT:headless for a Vue app with "TYPO3 SSR"

In a previous post did I show a way to build a Vue app (Vue TYPO3 Template / Sitepackage) without the (for me pretty annoying) JS SSR stuff. Instead…

 Backend  Frontend  Vue  SEO
  Read more

11/11/2022

B13/Container with headless

tt_content.b13-1col < lib.contentElement
tt_content.b13-1col {
    fields {
        content = TEXT
content {
            dataProcessing…
 Vue  Frontend  Backend
  Read more

11/07/2022

Vite https on localhost

npm i vite-plugin-mkcert -D

 

import { defineConfig } from 'vite'
import mkcert from 'vite-plugin-mkcert'

export default defineConfig({
 …
 Vue
  Read more

  • 1
  • 2
  • 3

Tags

  • Extbase (7)
  • Vue (17)
  • Frontend (9)
  • Backend (8)
  • SEO (3)
  • PHP (2)
  • TYPO3 (1)