Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Typo3 form displays as ###LABEL### ###FIELD###

I've made a form on a page using the Typo3 4.6 form wizard, but on the page it renders as

<!--  Mail form inserted: [begin] -->
 <fieldset class="csc-mailform">
 <div class="csc-mailform-field">###LABEL### ###FIELD###</div>
 </fieldset>
<!--  Mail form inserted: [end] -->

... instead of displaying a form. I'm completely new to Typo3. How do I get it working?

like image 953
Simon Fredsted Avatar asked Mar 06 '12 13:03

Simon Fredsted


People also ask

What is TYPO3 used for?

TYPO3 is a free and open-source Web content management system written in PHP. It is released under the GNU General Public License. It can run on a variety of web servers, such as Apache, Nginx or IIS, and on top of many operating systems, including Linux, Microsoft Windows, FreeBSD, macOS and OS/2.

How do you make a TYPO3 page?

Right-click any existing page and choose More options > 'Create New' Wizard from the context menu. The New record screen displays. Click an arrow in the tree to select the position where you want the new page to be created. The Create new Page screen displays.


2 Answers

Original answer does not work in Typo3 v 6.1.0

See http://forge.typo3.org/issues/50274

What helped was to disable Form extension as suggested in link above, then there is no need to include static typoscript.

like image 25
snoblucha Avatar answered Sep 18 '22 06:09

snoblucha


You have to insert the static typoscript "Default TS (form)"! Goto your main typoscript template file or create a extension template on the current site (where the form is) and edit the whole template file so that you can insert the "Default TS (form)"!

like image 92
Spry Avatar answered Sep 20 '22 06:09

Spry