Sending a lot of POST data, in xampp ok, in plesk is not ok

I developed a project with KOHANAFramework and the form sends a large amount of data through POST. The problem is that in my local environment ( XAMPP) I see all my data as I type print_r($_POST), but in the live environment ( Plesk) I do not see everyone. I increased the value max_input_varsto 25000, post_max_sizeto 256 M, and I left the default memory limit Plesk. One thing that I found strange was that in the NET tab in the Firebug console, I see all the data $_POST. Can anybody help me?

+4
source share
1 answer

As far as I know, Kohana unsets $_POST. You should try to use$this->request->post()

Post API Link

0
source

Source: https://habr.com/ru/post/1606364/


All Articles