Questions tagged [typo3-flow]

Flow is a web application framework developed in PHP, created to support Neos, a next generation content management system.

Flow is a web application framework developed in PHP. With its convention before configuration approach, it cares for developer happiness and slim and readable code. Flow uses the Doctrine ORM and provides features like Dependency Injection and Aspect Oriented Programming.

It was started as foundation for Neos, a next generation content management system.

Official website: https://flow.neos.io/

116 questions
0
votes
1 answer

Typo3 Neos: How to use a flow plugin in a page template?

If I have a flow plugin TYPO3.NeosDemoTypo3Org:MyQuotesPlugin and I want to render the return value of the method 'quoteOfTheDayAction' which is implemented in my ActionController, how can I do that in my page template? With Typo3 I would do it like…
Andreas
  • 1
  • 3
0
votes
1 answer

How decides Typo3 Neos which Settings.yaml to choose?

i use one Neos installation for multiple domains with different content. duplicating the package TYPO3.NeosDemoTypo3Org, removing the node-identifier and doing some replacements brought me nearby everything i need. But only the first Settings.yaml…
Thosh
  • 45
  • 1
  • 6
0
votes
1 answer

Typo3 Flow which RTE?

For a Typo3 Flow 2.1.2 Projekt we are looking for a stable RTE. We would also be ready to pay a licence if there are good arguments :) What are your suggestions? Which RTE do you use with your Flow projects?
metaxos
  • 151
  • 13
0
votes
1 answer

typo3 flow always creates new session

we have several TYPO3 FLOW projects in development. In all our projects the session handling does not work as expected. We are using FLOW 2.1 On every request, there will be generated a completely new session identifier. There is NO cookie set for…
Martin
  • 1,739
  • 3
  • 19
  • 25
0
votes
3 answers

How to include public resources in frontend plugin typo3

I'm building a weather widget extension for typo3 6.1.4 using Extbase/Fluid. The extension skeleton was created with extension_builder My question is : How can i include css and js files to the template ? When trying to add a viewHelper i get this…
alex
  • 616
  • 9
  • 18
0
votes
0 answers

Doctrine2 STI: how do you change the descrimnator column value?

I have objects that users can buy to use. Backpacks. Backpacks have different types so I was thinking I would use STI as described in the doctrine…
RISC OS
  • 139
  • 11
0
votes
1 answer

Is it possible to use the same view for two diffrent actions?

i am trying to share one view with two actions from the same controller and i am quite struggling. Is it even possible?
0
votes
1 answer

Is there away to use SetEnvIf with host and ip address?

I'm using setenvif like so: SetEnvIf Host ^dev\.mydomain\.com$ FLOW_CONTEXT=Development SetEnvIf Host ^(www\.)?mydomain\.com$ FLOW_CONTEXT=Production What I want to know is, can I also somehow restrict dev.mydomain.com to an IP address? So that the…
RISC OS
  • 139
  • 11
0
votes
3 answers

installation error typo3-neos- 500 internal server error

I have downloaded typo3-neos using php c:/xampp/Composer/bin/composer.phar create-project --dev --stability alpha typo3/neos-base-distribution TYPO3-Neos-1.0-alpha my httpd.conf is : ServerName neos.demo DocumentRoot…
Desh
  • 165
  • 1
  • 10
0
votes
1 answer

TYPO3 file upload resource manager

I made file upload according to http://docs.typo3.org/flow/TYPO3FlowDocumentation/TheDefinitiveGuide/PartIII/ResourceManagement.html I have this error: Invalid type encountered: '\TYPO3\Flow\Resource\Resource' Code Controler: class…
tttpapi
  • 838
  • 2
  • 8
  • 28
0
votes
3 answers

in() method - Typo3 - queryInterface

if you use the QueryInterface from Typo3 or Flow3 you can look up in the QueryInterface Extbase Dokumentation for all functions you can use. I already created some ANDs, ORs and LogicalNOTs in Flow3 and they work great. My problem is the in()…
Pete
  • 524
  • 3
  • 26
0
votes
2 answers

Multiple optionLabelField in Fluid

I've got a select field in a fluid template and need two attributes for the optionLabelField. How can I handle this? That doesn't work: Thanks, Pete
Pete
  • 524
  • 3
  • 26
0
votes
0 answers

TYPO3 6.1 using Repositories in Service Class

I am trying to implement an authentication service that authenticates users against an ADLDS. So far, so good. The implementation and activation of the service is not the problem, but I need some features from my Repositories inside the…
hoebbelsB
  • 21
  • 6
0
votes
1 answer

How can i setup different domains to different flow3 namespace application?

I have a flow3 app that have several namespace, how can i manage to point another domain to another specific namespace ?
Ramy Selim
  • 81
  • 1
  • 9
0
votes
2 answers

TYPO3 Flow Dependency Injection and geting objects that are sub objects of others

Hello I have been learning to use FLOW and have some questions: I have an action in a controller like this: /** * Displays a subproduct. * * @param \My\Package\Domain\Model\Product $product The main product. * @param…