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

get element from session and fill out form

I am trying to assign an object to a view from the session in the action new with $project = $this->userInput->getProject(); $this->view->assign('project', $project); {project} shows the complete object with the tags prototype,…
Tiero L.
  • 57
  • 11
0
votes
3 answers

Submit form to different action with typo3 flow

I have a page with a form for creating users. A user has an hobby, which can be created on the same page by clicking on the second button which opens the page for creating a hobby. After creating the hobby, the previous user form should be shown…
Tiero L.
  • 57
  • 11
0
votes
1 answer

Which MVC thing I need here?

In general there are ActionController, Repositories, Models und Views in TYPO3 Flows domain driven MVC system. In our project we use a general File model that contains the Ressource. Now we need a special "expert" php script like an action…
Pete
  • 524
  • 3
  • 26
0
votes
1 answer

Typo3 (7.6.4) Extbase New Action arguments empty after submit

if I submit my New Action and the form is not valid, then I can't get the submited post vars. $this->request->getArguments() is empty at my new action. /** * action new * * @param \Vendor\MyExt\Domain\Model\Protokoll $newProtokoll * @return…
anguish
  • 428
  • 1
  • 7
  • 26
0
votes
2 answers

TYPO3 7.6.x Class 'TYPO3\Flow\Error\Message' not found

I want to override the getErrorFlashMessage method in my action but getting the error message Class 'TYPO3\Flow\Error\Message' not found. /** * @return \TYPO3\Flow\Error\Message */ protected function getErrorFlashMessage() { switch…
anguish
  • 428
  • 1
  • 7
  • 26
0
votes
1 answer

htaccess rewrite a get parameter

I have already the Typo3 Flow .htaccess # # TYPO3 Flow context setting # # You can specify a default context by activating this option: # SetEnv FLOW_CONTEXT Production # If the root path is not the parent of the Web directory, # TYPO3…
PinkyTV
  • 118
  • 13
0
votes
1 answer

Warning message: garbage collection of typo3

Strange things happened Session: Ommitting garbage collection because another process is already running. Consider lowering the GC propability if these messages appear a lot. Does anyone can explain this warning log ? What is the problems ?
0
votes
2 answers

(PART 2) what does this fluid error mean? No unique path segment could be found after 100 iterations

This is a continuation of a previously asked and answered question that has cropped up again and needs a different solution ( different problem but same error message ). Again the links to the shippingAddress action are not rendering: …
The Newbie Qs
  • 343
  • 5
  • 21
0
votes
2 answers

Typo3 Neos Cannot Load Custom Plugin JS On Backend, Must Refresh To Make It Works

i'm trying to load my custom plugin on backend, e.g. datatables.js. But the JS is not working, i must refreshing the page once to make it works, there is also no error on the backend webbrowser console. How to solve this? Any help would be much…
Muhammad Kamal
  • 174
  • 1
  • 10
0
votes
1 answer

Typo3 Neos Redirect to Backend

I got question about example site on Typo3 Neos. There is create an account, and i tested it on backend. After submitting, the page return to backend again. But when i try to make a form just like that, the return target is to the route, not to the…
Muhammad Kamal
  • 174
  • 1
  • 10
0
votes
1 answer

Typo3 Neos: How to pass parameter from typoscript using 'TYPO3.Neos:Plugin'?

i wanted to pass a parameter dynamically via aloha editor, i have select box like this on .yaml properties: events: type: string ui: label: 'Events' reloadIfChanged: TRUE inspector: group: 'document' editor:…
morgan9999
  • 680
  • 10
  • 26
0
votes
1 answer

How to fill select options from custom database in .yaml files using typo3-neos?

i am currently using typo3-neos for my project and i have this problem. i try to make my custom node like this in .yaml file 'TYPO3.Designs:SomeItem': superTypes: - 'TYPO3.Neos:Content' ui: group: 'structure' label: 'Some Item' …
morgan9999
  • 680
  • 10
  • 26
0
votes
1 answer

Relationships Typo3

can anyone tell me about relationship on typo 3? e.g. i got 2 tables, 'A' and 'B', currently i got simple form that can inserting data into 'A' table, the 'A' table fields are "name","id_types","address". the "id_types" is foreign_key from 'B'…
Muhammad Kamal
  • 174
  • 1
  • 10
0
votes
0 answers

Flow commands lead to Doctrine Database Exception

I have installed NEOS 1.2.1 via composer,created a new site, everything is dandy. but after a while i ran across an error where neos told me to use node:repair okay i did, but with that i ran afoul of the following exception. it seems it cannot…
LucitheR
  • 96
  • 1
  • 5
0
votes
0 answers

What is wrong this this typo3 flow migration code and new domain? I get sql errors when I try to migrate

What is wrong this this typo3 flow migration code and new domain? I get sql errors when I try to migrate. Seems like a simple new domain, it will allow me to define a new product type - a Kit - that will be defined as having components drawn from…
The Newbie Qs
  • 343
  • 5
  • 21