Home  >  Q&A  >  body text

Unable to adjust the value of PHP max_input_variables

<p>So, I tried using the user.ini file to increase my max input time to 150, however, when I reopen the user.ini file, it only shows ARRAY (0x27c2560) instead of the increased one I assigned variable. </p> <p>I can add any variable like upload_max_filesize = 256M; and post_max_size = 256M; but after adding max_input_time = 150; it only shows this: ARRAY(0x27c2560)</p> <p>What does ARRAY(0x27c2560) mean? And even after saving the file, my max_input_time is still 60...</p> <p>After adding max_input_time = 150;, it only shows this: ARRAY(0x27c2560)</p> <p>What does ARRAY(0x27c2560) mean? And even after saving the file, my max_input_time is still 60...</p>
P粉970736384P粉970736384402 days ago385

reply all(1)I'll reply

  • P粉649990163

    P粉6499901632023-08-15 10:13:50

    I think this is because of syntax error.

    You said you added the following:

    max_input_time = 150;

    But it should be

    max_input_time = 150

    No semicolon. Other modifications are the same.

    reply
    0
  • Cancelreply