Questions tagged [extbase]

Extbase is a TYPO3 CMS extension development framework working closely with TYPO3 Fluid and TYPO3's Extension Builder.

Extbase is a TYPO3 CMS extension development framework written in PHP . Its purpose is to be the foundation of model-view-controller driven extensions. It replaces the older TYPO3 pibase extension development methodology. Extbase works closely with the TYPO3 Fluid templating engine, and with the TYPO3 Extension Builder.

Resources

1425 questions
-1
votes
1 answer

Typo3 changing existing frontend via extension

I got a website (Typo3 9.5) already configured with existing typoscript and a bunch of pages. Now I want to create an extension which simply adds one line of code to every page when a checkbox in the backend for this specific page is set. Like a…
Starzi
  • 71
  • 7
-1
votes
2 answers

TYPO3 10: Error: Call to a member function findByUid()

I updated the dependency Injection in my Controller, now it looks like this: class MyExtensionController extends ActionControlelr { /** * @ var MyExtensionRepository /** protected $myRepository .. .. .. But calling the Repository in the next…
Victor MGE
  • 41
  • 6
-1
votes
1 answer

How to give a fixed Uid to my Action

Hy, I'm trying to call my action with allways a fixed Uid (configured by TS) so I could put a plugin on my page to register for a specific Event. And don't have to go over a Event List click the Event click register. I tried the following which did…
im_gm
  • 3
  • 4
-1
votes
2 answers

TYPO3: Strict Standards: Non-static method / Fatal error: Uncaught exception

I have googled so much and tried everything but can't get behind this. A client installed an extension on TYPO3 and we get the following error message in the backend and frontend. Strict Standards: Non-static method t3lib_div::getClassName() should…
Xandru
  • 13
  • 10
-1
votes
1 answer

How to handle large QueryResults in TYPO3

If I try to iterate trough a QueryResult with a lot of relations, my foreach loop needs a lot of time. /** @var Product $productItem */ foreach ($products as $productItem) { print($productItem->getTitle()); } How can I do it…
Jonas
  • 349
  • 3
  • 21
-1
votes
1 answer

TYPO3 caching and redirectToUri

I have a saveDataAction. It is marked as non-cached in the ext_localconf.php. The saving works when I try it right after clearing the cache. The second time, the action is running, just the redirect works, but the data won't be saved. Here is my…
Mike
  • 1
  • 1
-1
votes
1 answer

extbase "An error occurred while trying to call", only before cleaning Cache

I have a extension which runs with parameter no_cache=1 t ensure i always have fresh data. There is a strange behaviour. After a certain while (for example a night) the call of a showAction brings the error: An error occurred while trying to call…
metaxos
  • 151
  • 1
  • 16
-1
votes
1 answer

Typo3 with realurl: rewrite /feed.rss to /index.php?id=33&type=777

I created a typeNum 777 with a RSS Feed. What I want to achieve now is that the feed can be reached via http://www.domain.com/feed.rss instead of http://www.domain.com/index.php?id=33&type=777 I have realurl installed but I don't seem to be able…
Chi
  • 1,320
  • 1
  • 14
  • 48
-1
votes
1 answer

Extension builder Content Element type "content element" has no rendering definition

I did the example brought by Tobias Liegl: "FCE (Flexible Content Elements) ohne TemplaVoila" in http://www.slideshare.net/TobiasLiegl/fce-ohne-templavoila. But i get an error that says: ERROR: Content Element type "contentelements_contactbox" has…
user1677293
  • 9
  • 1
  • 4
-1
votes
1 answer

Validation in extbase using regex

I want to use validation of model properties in extbase via regex and using the following syntax: /** * *@var string $telephone *@validate RegularExpression('/^[0-9]+$/') */ $protected $telephone; But I keep getting a validation error,…
user1107888
  • 1,481
  • 5
  • 34
  • 55
-1
votes
2 answers

How to get an AJAX call in my TYPO3 Extbase Extension?

I have trouble doing this, I've been looking for some manuals, but they don't seems to work for me (they're either or detailed enough or I'm too stupid, probably something from both). So I want to start an AJAX call from my Fluid View HTML file by…
user828591
  • 1,212
  • 2
  • 17
  • 32
-2
votes
1 answer

own typo3 Extension doesn't get shown in Extension Manager (Composer Mode)

Im trying to set up my own Extension, for having in the all kind of changes to my Site. I set up typo3 9.5.5 via. Composer. The next step was building up my own extension. I followed the official docs and also added a composer.json, but it wont show…
migmig
  • 7
  • 4
-2
votes
1 answer

Typo3: jQuery $(document).ready() not called, but scripts are loaded

I have an issue with an extbase frontend plugin where I list, edit and create new domain model entries. The problem is that in the "list" action of the controller the $(document).ready() function is called, but when I navigate to the "new" Action in…
-2
votes
4 answers

Execute plain SQL query in Extbase repository

I am trying to execute a query in Extbase repository, but it is not return any result. This is my syntax and if anybody knows the problem, please help. In repository file; public function getImages( $uidOfCE, $pid ) { $query =…
Arun Chandran
  • 175
  • 1
  • 3
  • 18
1 2 3
94
95