Project

General

Profile

Actions

Bug #44825

closed

Pagerenderer / page.headerData + USER_INT is not working

Added by Bas van Beek about 11 years ago. Updated over 5 years ago.

Status:
Closed
Priority:
Should have
Assignee:
Category:
Frontend
Target version:
Start date:
2013-01-26
Due date:
% Done:

100%

Estimated time:
TYPO3 Version:
6.0
PHP Version:
Tags:
Complexity:
hard
Is Regression:
Yes
Sprint Focus:

Description

This does not work (USER_INT):

page.headerData.2002 =< plugin.tx_multishop_pi1
page.headerData.2002 {
userFunc = tx_multishop_pi1->main
method=meta_tags
}

Outputs:

Apparently the marker is not replaced with the dynamic content.

Below example works, but is obvious a cached version and that is not desired:

page.headerData.2002 < plugin.tx_multishop_pi1
page.headerData.2002 = USER
page.headerData.2002 {
userFunc = tx_multishop_pi1->main
method=meta_tags
}

Will USER_INT work again on page.headerData in the next TYPO3 update?


Related issues 2 (0 open2 closed)

Related to TYPO3 Core - Bug #22273: PageRenderer does not work for USER_INT pluginsClosed2011-08-25

Actions
Related to TYPO3 Core - Bug #37988: COA_INT in Fluid-TemplatesClosed2012-06-13

Actions
Actions #1

Updated by Christian Kuhn about 11 years ago

which core versions are affected?

Actions #2

Updated by Bas van Beek about 11 years ago

I tried it with the official TYPO3 6.0 and the latest version of 6.1, both downloaded today. The latest commit hash of 6.1 is:

[root@baslaplinux Core]# git rev-parse --short HEAD
43ade89

Actions #3

Updated by Bas van Beek about 11 years ago

Do you need additional feedback to reproduce this missing feature?

Actions #4

Updated by Christian Buelter about 11 years ago

I could reproduce this on a TYPO3 6.0.0 Government package using the extension ke_stats.

Adding

page.headerData.100 < plugin.tx_kestats_pi1

to the Typoscript Setup results in

<!--INT_SCRIPT.6fb024cc290a3d12e287e3fe414af811-->

in the frontend while it should normaly output nothing but count the page view.

Actions #5

Updated by Bas van Beek about 11 years ago

Excellent Christian,

What are the next steps to solve this issue? Cause without this fixed feature Multishop will not work on TYPO3 6.X.

Thanks!

Actions #6

Updated by Stefan Galinski about 11 years ago

  • Status changed from New to Accepted
  • TYPO3 Version changed from 6.1 to 6.0
Actions #7

Updated by Jonathan Heilmann about 11 years ago

By accident, i found a workaround for ke_stats 1.1.1, tested within TYPO3 CMS 6.0.2 and 6.0.4

Just replace the line

page.headerData.100 < plugin.tx_kestats_pi1

by
page.100 < plugin.tx_kestats_pi1

Actions #8

Updated by Jelle Groenendal about 11 years ago

Confirmed workaround on 6.0.2 for plugin.tx_kestats_pi1

Actions #9

Updated by Bas van Beek about 11 years ago

Yeah I also confirm. Multishop 3 is working flawless in TYPO3 6.0.4, so this issue can be updated to resolved!

Actions #10

Updated by Bas van Beek about 11 years ago

I cheered to early.

It's not yet working well in TYPO3 6.0.4. The problem is that we want the USER_INT output to be processed by pagerenderer as headerData, so the output gets inside the <head> of the document.

In your tweak the output is just printed in the body of the document. For stats that don't need to print anything that's fine. But for plugins that want to add content to the head it's no solution.

Actions #11

Updated by Arek van Schaijk almost 11 years ago

I also run into this problem. I tested it with TYPO3 6.0.5rc1, this ticket is now open for a couple of months why isnt it solved yet?

I use the following work around for my extbase extension wich also works fine in earlier versions of TYPO3:

page.100 < plugin.tx_myext

And in my controller:

$this->response->addAdditionalHeaderData('header content');
Actions #12

Updated by Bas van Beek almost 11 years ago

No idea why this issue cannot be resolved.

I asked one of the TYPO3 development team members, he said he did not know whether the team is still working on this issue or not.

Actions #13

Updated by Marco Zanter almost 11 years ago

COA_INT does also not work (6.1.1)

Actions #14

Updated by Mario Beiser over 10 years ago

I only can second that. Not able to inject USER_INT objects. Is this planned to remove?
Didn't found any info on that.

Actions #15

Updated by Georg Ringer over 10 years ago

a start to debug

This is a simple TS for testing

page = PAGE
page.10 = TEXT
page.10.value = HELLO WORLD!

page.20 = TEXT
page.20.data= date:U
page.20.strftime = %H:%M:%S

page.30 = COA_INT
page.30 {
  10 < page.20
  stdWrap.wrap = ....|....
}

page.headerData.10 = COA
page.headerData.10 {
  10 = COA_INT
  10 {
    stdWrap.wrap = coa_int: | ----------
    10 < page.20
  }
  20 = COA
  20 {
    stdWrap.wrap = coa: | ----------
    10 < page.20
  }
}

Problem is that TypoScriptFrontendController got a function INTincScript_process to process the INT_SCRIPT snippets but only $this->content is checked which is just the body and not the header. therefor it stays unsubstituted.

I really don't know if that is such simple but changing in PageGenerator

from

        $pageRenderer->addBodyContent(LF . $pageContent);
        if (!empty($GLOBALS['TSFE']->config['INTincScript']) && is_array($GLOBALS['TSFE']->config['INTincScript'])) {
            // Store the serialized pageRenderer in configuration
            $GLOBALS['TSFE']->config['INTincScript_ext']['pageRenderer'] = serialize($pageRenderer);
            // Render complete page, keep placeholders for JavaScript and CSS
            $GLOBALS['TSFE']->content = $pageRenderer->renderPageWithUncachedObjects($GLOBALS['TSFE']->config['INTincScript_ext']['divKey']);
        } else {
            // Render complete page
            $GLOBALS['TSFE']->content = $pageRenderer->render();
        }
        // Ending page
        if ($GLOBALS['TSFE']->pSetup['frameSet.']) {
            $GLOBALS['TSFE']->content .= LF . '</noframes>';
        }

to
        $pageRenderer->addBodyContent(LF . $pageContent);
        if (!empty($GLOBALS['TSFE']->config['INTincScript']) && is_array($GLOBALS['TSFE']->config['INTincScript'])) {
            // Store the serialized pageRenderer in configuration
            $GLOBALS['TSFE']->config['INTincScript_ext']['pageRenderer'] = serialize($pageRenderer);
            // Render complete page, keep placeholders for JavaScript and CSS
            $GLOBALS['TSFE']->content = $pageRenderer->renderPageWithUncachedObjects($GLOBALS['TSFE']->config['INTincScript_ext']['divKey']);
# ---------
            $GLOBALS['TSFE']->content = $pageRenderer->render();
# ---------
        } else {
            // Render complete page
            $GLOBALS['TSFE']->content = $pageRenderer->render();
        }
        // Ending page
        if ($GLOBALS['TSFE']->pSetup['frameSet.']) {
            $GLOBALS['TSFE']->content .= LF . '</noframes>';
        }

makes it working.
all tested with current master

Actions #16

Updated by Markus Klein over 10 years ago

  • Is Regression set to No
Actions #17

Updated by Markus Klein over 10 years ago

  • Complexity set to hard
Actions #18

Updated by Markus Klein over 10 years ago

The problem here is some sort of chicken-egg.

At the point in time where the INT_SCRIPTs are processed the page content does not yet contain the header and footer data, to allow the scripts to dynamically add these.
Unfortunately these header data might again contain INT_SCRIPTs which are not processed then.

A solution would be to repeatedly insert the header and footer data into the page content and run the INT_SCRIPT processing.

Actions #19

Updated by Gerrit Code Review over 10 years ago

  • Status changed from Accepted to Under Review

Patch set 1 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/23788

Actions #20

Updated by Gerrit Code Review over 10 years ago

Patch set 2 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/23788

Actions #21

Updated by Gerrit Code Review over 10 years ago

Patch set 3 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/23788

Actions #22

Updated by Gerrit Code Review over 10 years ago

Patch set 4 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/23788

Actions #23

Updated by Gerrit Code Review over 10 years ago

Patch set 5 for branch master has been pushed to the review server.
It is available at https://review.typo3.org/23788

Actions #24

Updated by Helmut Hummel over 10 years ago

Bas van Beek wrote:

It's not yet working well in TYPO3 6.0.4. The problem is that we want the USER_INT output to be processed by pagerenderer as headerData, so the output gets inside the <head> of the document.
In your tweak the output is just printed in the body of the document. For stats that don't need to print anything that's fine. But for plugins that want to add content to the head it's no solution.

An easy way to go would be to not return the wanted headerData as content but use the following in the code:

$GLOBALS['TSFE']->additionalHeaderData['your_plugin_asset'] = $dynamicHaderContent;

This worked in 4.0 already and will also work in 6.x

But I agree that using COA_INT in page.headerData should also work, so I created a patch which enable this functionality again.

Please test the latest patch if it works for you.

However please note, that

$GLOBALS['TSFE']->additionalHeaderData['your_plugin_asset'] = $dynamicHaderContent;

in a PHP method added to page.headerData as USER_INT will not work. It never worked before and we will not make it work as it introduces a chicken/egg problem which is not easily fixable and not worth the overhead.

Actions #25

Updated by Helmut Hummel over 10 years ago

  • Assignee set to Helmut Hummel
  • Target version changed from 6.1.0 to next-patchlevel
  • % Done changed from 0 to 90

OK. Can anybody of the 44 voters of this issue please test and comment the patch?

Thanks.

Actions #26

Updated by Helmut Hummel over 10 years ago

  • Status changed from Under Review to Needs Feedback
  • Is Regression changed from No to Yes

Helmut Hummel wrote:

OK. Can anybody of the 44 voters of this issue please test and comment the patch?

No Feedback?

Actions #27

Updated by Gerrit Code Review over 10 years ago

  • Status changed from Needs Feedback to Under Review

Patch set 1 for branch TYPO3_6-1 has been pushed to the review server.
It is available at https://review.typo3.org/23981

Actions #28

Updated by Gerrit Code Review over 10 years ago

Patch set 1 for branch TYPO3_6-0 has been pushed to the review server.
It is available at https://review.typo3.org/23982

Actions #29

Updated by Helmut Hummel over 10 years ago

  • Status changed from Under Review to Resolved
  • % Done changed from 90 to 100
Actions #30

Updated by Benni Mack over 5 years ago

  • Status changed from Resolved to Closed
Actions

Also available in: Atom PDF