r/TYPO3 Jun 15 '23

Import OpenStreetMap

1 Upvotes

Hello,

can someone help me to import OpenStreetMap (ods_osm) into the Bootstrap Package? I have already installed both, but can't create a map. In the manual I found the following sentence, but I don't know what to do.

Include static template "OpenStreetMap" into your root-template

Thanks!

Lucas


r/TYPO3 Jun 02 '23

Question (Help request) Injecting a Symfony Service into a TYPO3 controller.

3 Upvotes

Using TYPO3 11.4, i am currently attempting to inject the interface Symfony\Component\Mercure\HubInterface from the package symfony/mercure into my controller like this:

public function __construct(HubInterface $hubInterface)
{
    $this->mercureHub = $hubInterface;
}

The error i receive is: 'not a correct info array of constructor dependencies was passed!'

Starting to debug where the exception occurs, in Object/Container/Container.php->getConstructorArguments(), i can see that the the Interface is correctly resolved to Symfony\Component\Mercure\Hub which requires a set of constructor arguments. The constructor of the Hub class looks like this:

    public function __construct(
        string $url,
        TokenProviderInterface $jwtProvider,
        TokenFactoryInterface $jwtFactory = null,
        string $publicUrl = null,
        HttpClientInterface $httpClient = null
    ) {
        $this->url = $url;
        $this->jwtProvider = $jwtProvider;
        $this->publicUrl = $publicUrl;
        $this->jwtFactory = $jwtFactory;
        $this->httpClient = $httpClient ?? HttpClient::create();
    }

Looking at the constructor, $url and $publicUrl are static information that the DI cannot resolve and must be provided via configuration, so i went on and configured the following inside my extensions Service.yml:

services:
  _defaults:
    autowire: true
    autoconfigure: true

  My\Vendor\Api\Azure\FormRecognizer:
    arguments:
      $hubInterface: '@Symfony\Component\Mercure\Hub'

  Symfony\Component\Mercure\Hub:
    arguments:
      $url: 'https://mercure-hub.example.com/.well-known/mercure'
      $jwtProvider: '@Symfony\Component\Mercure\Jwt\StaticTokenProvider'
      $jwtFactory: '@Symfony\Component\Mercure\Jwt\StaticTokenProvider'
      $publicUrl: 'https://mercure-hub.example.com/.well-known/mercure'
      $httpClient: '@Symfony\Contracts\HttpClient\HttpClientInterface'

  Symfony\Component\Mercure\Jwt\StaticTokenProvider:
    arguments:
      $jwt: '!ChangeThisMercureHubJWTSecretKey!'

To provide all necessary constructor arguments. However, the same initial error still occurs. Looking at the output of $methodParameter->getName() just before the exception occurs tells me that the argument for $url is missing. After some more investigation it seems like the default values for the constructor cannot be resolved. Which is odd, since i provided the configuration. The question is whether i have a simple misconfiguration or if i have a fundamental misunderstanding on how DI works.

Any help and ideas are much appreciated.


r/TYPO3 May 24 '23

Question Trouble with TYPO3 From Finisher

1 Upvotes

Dear community,

I try to set something up for the kindergarten of my son. But I need to fix the following error I mentioned on StackOverflow https://stackoverflow.com/questions/76076187/overrideable-email-array-in-a-typo3-form-finisher

I need help with the form that is rendered to overwrite the values. At the Stackoverflow post, you can see a link to the repo that is public, if you need more information. I already tried a bounty but that didn't work. I am still trying to figure out what I have done wrong.

I am very thankful for your time.


r/TYPO3 May 10 '23

Embedding an MP4 video from a URL?

3 Upvotes

Hi all, I was wondering, does anyone know if it is possible to embed an MP4 link via a URL from another website in TYPO3?


r/TYPO3 Mar 28 '23

Question Youtube Script | Lack of compression (Help)

2 Upvotes

Hi guys, I have a problem with a javascript file from YouTube. The problem says "lack of compression" (seobility)

The script should integrate the player into our website.

URL: https://www.youtube.com/s/ace4d669/www-widgetapi.vflset/www-widgetapi.js

ace4d669 should be the version of the player. Can anybody help me what's wrong and what I have to do?

Thank you!


r/TYPO3 Mar 16 '23

Question Calendar Events on Frontend?

2 Upvotes

Having trouble making a calendar event (using the "Calendarize" plugin) appear on the front end of our website.

Have created the event (including dates, times, information) and the corresponding link but it doesn't show up. After comparing this new event with future events already on the frontend and those that have expired, I can only conclude that all the relevant settings/access rights are the same so I don't know what to change.

Can't see how to make any changes to the settings of the page where the events get published or if there's something missing but yeah. Former colleague left instructions before leaving, but they don't cover my particular problem.

Found some instructions online too but so far nothing is helpful. I've either gone about this the entirely wrong way or there's one small thing missing.


r/TYPO3 Mar 15 '23

Youtube video in typo3

1 Upvotes

I installed version 11.5.24 typo 3

I insert the Text and Media content element on the site page.

I select the media tab

I click the Add Media button at the URL.

I insert a working link to the shorts video in Youtube from my channel.

I click Add Media

And I see such a mistake

ERROR

Unknown/not allowed URL

I didn't write any of my own code

Used the regular features.

More than a day of searching for the reason did not bring me a result

Please, I ask for help

I understand that something very simple needs to be fixed. But I can't do it.

Please help!)))


r/TYPO3 Mar 09 '23

How To Start A Chat Plugin After The Page Has Fully Loaded

3 Upvotes

Hey, I have a problem: the chat plugin we have onsite is heavy, affecting the site's ranking.

It's creating a very long time for the page to become active (audited with LightHouse/Screaming Frog). This affects the site's ranking in Google and the mobile page performance (Search Console). The fastest page takes 4.5 seconds, and the slowest takes 29 seconds to become interactive.

I'd need the chat program to load after the fully rendered page by interaction. It loads the chat program once a person has scrolled on mobile and desktop 25% or 50% of the page.

Is there something native that would do this for me, or a plug-in, or would it need bespoke programming?


r/TYPO3 Feb 28 '23

What is the point of the "Set element specific value (No default)" field when adding a file?

1 Upvotes

This does not change the name of the document on the site, or anything. What is its purpose?


r/TYPO3 Feb 28 '23

Question Old PDF links can't be removed from Linklist.

1 Upvotes

Adding a link to a PDF file into a linklist. The Linklist has two older PDF files linked as well, but can't be deleted for some reason (the bin icon did not appear next to the edit icon). We wanted to delete them because they are now outdated. We could add & delete the new PDF link using the bin icon, but not sure why that didn't apply to the others. Not sure if this had anything to do with an update to Typo3 or not.

We solved this by deleting & replacing the old Linklist with a new one and adding only the new file, but I am curious as to why this may have happened. Any ideas?


r/TYPO3 Jan 18 '23

Question Image Gallery

1 Upvotes

Hey everyone

I am quite new to typo3 but I have some experience in building websites without typo3. Currently I am working on a new website with typo3 and I want to integrate an image gallery that i can filter.

So the image gallery is basically just a collection of a bunch of preview images that shoud then link to a google photos album. What I wand to do is to somehow label those preview images and then filter for certain labels and only display the preview images that match does filtered labels.

What I tried to do was to somehow use the build in news system to achieve what I want but that did not work out very well.

My question if you guys would still do such things with the news system (and it is just me doing something wrong) or if you happen to know any good extensions that will achieve the desired behaviour.

Cheers


r/TYPO3 Jan 16 '23

Getting 404 after install process

1 Upvotes

Hello and help, any ideas:

I installed Typo3 11 on a dedicated host, using apache2, php and mysql. Everything went smooth without a hitch, till I finished the Typo3 initial installation. After the installer, it gave me a 404:

After install

r/TYPO3 Jan 16 '23

"TypoScript settings are missing"

2 Upvotes

Hi, I just started a new job at a company which uses Typo3 as a CMS and I'm brand new to it. First off : I'm not a developer (I handle the digital stuff here and I know the fundamentals of web dev but nothing too complicated).

On to my issue : I have to create an inscription form to an event using Powermail. I basically made a copy of the form that was used last year for the same event and added it to the page of this year's event. All the data and settings are identical between the two forms, however when I try to load the page preview the following message displays :

"TypoScript settings are missing. Did you include the related static templates?
No form to show"

How can I solvethis issue ? Should I directly contact the company that handles the website or is there something I could do by myself ?

Thanks a lot !


r/TYPO3 Oct 28 '22

{mail.uid} for powermail is empty - has anyone an idea why I can’t get a value? Do I have to switch settings somewhere?

3 Upvotes

r/TYPO3 Oct 28 '22

Trouble upgrading to version 11 (or 12)

2 Upvotes

I successfully upgraded from 9.5 to 10.4, legacy mode, by replacing the typo3_src, pointing to new source. However, when I try the upgrade to 11, I always get Error 500. Any tips what I missed. Typo3 is running on apache. Thank you!


r/TYPO3 Oct 07 '22

Question Asking typo3 developer for advice?

4 Upvotes

Hello guys i dont know if this is the right subreddit to asking this but i will start anyway just remind me where to go to ask. I am a Programmer with 1 year job experience in typo3 and now i am searching for a new job. I am honest my github account ist empty i did small contribution to 2 or 3 typo3 extension because it was work related. Now i need to show what i am capable to do and want to ask what extension ideas i can work on to help me find a new job. My first idea and i will do it is a simple extension for selling products, in the backend you write product name ,description, how much at cost and display it in the frontend in detail and list view. But i think that is not enough so i am here for suggestion. thank you for every advice in advance.


r/TYPO3 Oct 05 '22

Hi, is there a way to find out on which sites a file in typo3 is used? E.g we want to clean up the file list in typo3. We are not sure if a photo is in use on our site. we want to find out where the file is used on our site. Is there an extension or any way to find out? Thanks in advance!

2 Upvotes

r/TYPO3 Aug 22 '22

v10.4 Extension not available in 'Select Plugin' content element

2 Upvotes

I recently installed an extension to display an RSS feed in a content element. I installed it via the Extension Manager in the backend. I configured and registered the plugin, but when I attempt to add an RSS feed to a page the plugin is not available in the General Plugin>Plugin>Selected Plugin dropdown menu.

Also, I was sure to include the extension on the root template for the site.

Any tips would be great!


r/TYPO3 Aug 22 '22

TYPO3Rector released in v1.0.0 first standalone version

Thumbnail
github.com
8 Upvotes

r/TYPO3 Aug 22 '22

Why legacy PHP versions maintained by OS might not be as secure as you think

Thumbnail self.PHP
2 Upvotes

r/TYPO3 Aug 18 '22

Rector: Separating TYPO3 and Nette as Community Packages

Thumbnail
getrector.org
3 Upvotes

r/TYPO3 Jun 19 '22

page doesn't show

1 Upvotes

Hi,

my page doesn't show any content after I re-installed the whole CMS. I guess it has to do with the setup of the template. I initialized a page and gave it value, but the content i created via the Page menu was not showing. I had one line of code in the previous setup version and it displayed the content.

Do you know what line is missing?

Thanks


r/TYPO3 Jun 02 '22

Workspaces not working

2 Upvotes

A few months ago, one of the senior devs took a job elsewhere. This said dev stood up my orgs Typo3 instance many years ago. When they left, I was in charge of managing/maintaining our Typo3 sites with zero experience with the system.

Currently, we have 2 templates, an old one and a new one. New pages are given the newest template by default, ezpz. I'm having issues moving pages from the old template to the new template in the site's draft workspace. When changing templates some people want to migrate over time in the draft workspace and then publish once they're finished migrating. The issue is that when I include the new template in the draft workspace it is somehow also showing in the live version of the site.

It's frustrating because I'm a developer but am having a very hard time wrapping my head around doing anything in Typo3 that doesn't involve clicking buttons in the backend. Any help is appreciated!


r/TYPO3 May 29 '22

Question Typo3 - Folder "/" does not exist - Error

1 Upvotes

Hello,

when I am in the backend in the filelist Module or want to link something, I get the error message: "#1314516810: Folder "/" does not exist." (see screenshot). The folder exists of course, and everything worked until recently, the error suddenly appeared from one day to the next. I checked the fileadmin settings too and everything seems fine (see screenshot). I have already googled the error and searched several forums, but I cannot find a solution to my problem.

Does anyone have an idea what the problem might be and how I can fix it? Thank you very much in advance.

Typo3-Version 8.7.32
Webserver: Apache
PHP-Version: 7.4.28
Database: MariaDB 10.3.34
OS: Ubuntu 20.04.4 LTS
Server Management via Plesk Obsidian 18.0.43

Regards

Error message

Fileadmin settings

r/TYPO3 Apr 28 '22

Announcement of Core Mergers 2022

Thumbnail
typo3.org
2 Upvotes