Support the ongoing development of Laravel.io →
Database Eloquent

I am posting arrays of related field ids using the product id as the key, to my controller:

		$input = Input::except('_token');
		foreach ($input as $k=>$v){
			$item = Product::find($k);
			$item->othercats()->sync($v);
		}

This data comes from a large table of checkboxes in which I check any related items I want linked to each product in a table row. This has worked great up to recently as I seem to have reached a certain threshold with Mysql and can't work out what it is. Would anyone be able to point me in the right direction as far as what php.ini settings I may have to adjust to cope with this style of updating operation?

Last updated 2 years ago.
0

To answer my own question.... Instead of the problem being a Mysql setting it ended up being a PHP Core setting called 'max_input_vars' in my php.ini, which was set at 1000. The warning didn't present itself until I dumped the output of the post variables with an exceeded number of vars. A log error was never written.

Last updated 2 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

Bulmer bulmer Joined 5 Mar 2014

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.