So, I tried to use user.ini file to increase my max input time into 150.
I can add any variables like upload_max_filesize = 256M; and post_max_size = 256M; But after adding the max_input_time = 150; it only display this: ARRAY(0x27c2560)
What does this ARRAY(0x27c2560) means?? and beside my max_input_time is still 60 even after save the file…
2
Answers
I believe this is because of a syntax mistake.
You said you added the following:
But it should be
without any semicolon. And the same goes for all other modification.
The
ARRAY(0x27c2560)
message might be due to a formatting error in youruser.ini
file.Double-check that there are no typos or syntax errors in the line where you’re setting
max_input_time
.Moreover if you’re directly editing the user.ini file and not seeing the expected changes after saving, there could be a file permission issue or a caching problem.
Make sure you have the necessary permissions to edit the file.
Check if there’s any server-level caching that could be causing the changes to not take effect immediately.
If that does not help, you might need to restart the PHP service or the web server to apply the changes.
Lastly, if you still can’t resolve the issue, check for any error messages in the server logs. There might be clues about what’s going wrong.