[TYPO3-dev] maximum size of fe extension return
Steffen Ritter
info at rs-websystems.de
Tue Nov 11 07:37:40 CET 2008
Hi,
i have this in an installation too, with normal texts.
There, long tables are copied into RTE.
For me I think it's about the runtime your scripts are allowed to last.
So if you are able to change this, try and check if theres another limit.
kind regards
STeffen
Ronald Steiner schrieb:
> Hi List,
>
> I just observed something strange:
> My Extension is a FE-Plugin. It generates some CE. If this generated CE
> has more than 29200 characters typo3 won't give an output at all.
>
> This is my example main function for my CE (just generated by kick
> starter):
> [code]
> function main ($content,$conf){
> $output = "";
> for ($i = 0; $i <= 2920; $i++) {
> $output .= "0123456789";
> }
> debug($output);
> return $output;
> }
> [/code]
>
> The problem seams to be caused by the pure length of the output string.
> I did various tests that suggest that the problem is not processing time
> or script errors. In the above example the debug still works.
>
> Has anyone ideas on this?
> Can anybody reproduce my observation?
> Has anyone a concept for the reason of my problem?
> Or can my server be the possible reason that stops an output that is
> larger than 29200 characters?
> I'm really puzzled.
>
> greetings
>
> Ron
More information about the TYPO3-dev
mailing list