Questions tagged [typo3]

TYPO3 stands out as an innovative and reliable Open Source Enterprise Web Content Management System (CMS) coded in PHP. A powerful collaboration with a MySQL database empowers its seamless functioning across various operating systems, including Unix and Windows.

What is the process for integrating a color scheme into tx_news within TYPO3?

Is there a way to add the essential gallerySettings palette to the media tab in tx_news? I would like to use these settings within the news detail template. I attempted to include this code in my tt_content.php file located in my site package: \TYPO3 ...

Having issues with IE8 and SmoothGallery script errors

I'm currently utilizing the SmoothGallery plugin created by Jon Designs to enhance the website of one of my clients. However, there seems to be a minor issue in Internet Explorer 8 when attempting to navigate to the next image. Interestingly enough, after ...

How to Import SQL dump into Typo3 installation without creating new tables

I am currently facing a dilemma with a Typo3 website for a customer, as it is hosted on a webserver with strict database user policies. I am trying to create a development site by duplicating the original site's database, but I am unable to do so due to re ...

The functionality of $GLOBALS['TSFE']->set_no_cache() seems to be ineffective starting from TYPO3 version 6.2.17 and newer versions

I previously implemented the 'set_no_cache' function globally in the initialize action of my extension. $GLOBALS['TSFE']->set_no_cache(); However, it seems that this method is not effective starting from typo3 version 6.2.17 onwards. I am now explori ...

Unlimited scroll, pagination, and navigation paths

Encountering an issue with the News extension and Infinite Scrolling plugin on TYPO3 9.5.11. I am trying to set up two infinite scrollings: one for listing all news, and another for categorizing news by categories using the list by category feature. While ...

The tabs functionality is broken due to an upgrade in jQuery and jQuery UI

I recently upgraded my website to use the latest versions of jQuery and jQuery UI, but I'm facing some unexpected issues with the Tabs widget. Previously, everything was working fine with jQuery 1.5.1 and jQuery UI 1.8.4. After upgrading to jQuery 1. ...

What is the reason behind the colorPicker input only accepting Hex values?

Could someone please explain why there doesn't seem to be a system-level option for choosing RGB, including transparencies? Have I overlooked something, or was this feature left out of Typo3 11 as well? Appreciate the help! ...

Tips for integrating external JSON files into TYPO3

Hey there, I've been doing some research but can't seem to find a clear answer. Can you explain how to retrieve data from a JSON file and manipulate it within an extbase extension? ...

Trouble in paradise: Datamapper malfunctioning in TYPO3 9.5.x with Extbase

Before in previous versions of TYPO3 such as TYPO3 8.7.x, I utilized DataMapper to transform the results from my querybuilder select result into an array of objects successfully. However, when switching to TYPO3 9.5.x, I encountered the error message "Ca ...

Using AJAX in TYPO3's TCA forms to create dynamic dropdown menus

I have created two drop down lists in my TCA forms. The first one is called Campus and the second one is called Department. I want the options in the Department list to change based on the selection made in the Campus list. Essentially, the items in the De ...

Displaying the number zero in TYPO3 Fluid without it being empty or NULL

Within my TYPO3 Fluid template, I am encountering an issue where I need to display a value only if it is not empty. Currently, my approach is as follows: <f:if condition="{myvalue}"> <div class="myclass">{myvalue}</div> </f:if> Th ...

The CSS property 'clear:both;' is not functioning properly on IE7 browsers whereas works fine on IE8/IE9, Firefox, Chrome, and other browsers

I have been receiving feedback from visitors about some issues on one of my websites. Those who reached out to us are using IE7 on Windows XP. I was able to recreate the problem by using IE7 or by mimicking it in compatibility mode with IE7 document mode o ...

Understanding the process of retrieving form data files sent from Angular to TYPO3/PHP via a Post request

I've been working on uploading an image from Angular to the TYPO3 backend, but I'm struggling to read the request body in the Controller. Here's the code snippet from my Angular side: HTML: <input multiple type="file" (change)="uploadF ...