XF 2.0 Having issues POSTing a large form...

Jaxel

Well-known member
The POST limit in my PHP is 10mb... if you add an upload input to your form, and plug in a file larger than your post limit, XF returns a security error.

However, what I am doing is not an upload input. Its a simple form, with a bunch of hidden values:
Code:
<xf:foreach loop="$results" key="$key" value="$result">
    <xf:hiddenval name="results[]">
        {$result.user_id}:{$result.result_standing}:{$result.result_extra}:{$result.result_player}
    </xf:hiddenval>
</xf:foreach>


Generally this works. However, if the number of result items exceeds a certain amount (seems to be somewhere around 1500-2000), I get that security error.

I highly doubt 2000 hidden text fields posts at larger than 10mb.

Is there anything I can do to take care of this?
 
Top Bottom