Navaneeth
Navaneeth

Reputation: 1418

I am not able to reorder the blocks in drupal 7

I have more than 200 blocks in my drupal website. Right now I am not able to reorder the blocks from the admin end.

I can drag and drop the blocks. So there is no problem with my js (I think so). After saving the blocks, selected blocks went to the previous position. (Weight is not updating.)

Any Idea?

Upvotes: 4

Views: 1411

Answers (1)

Pete Dailor
Pete Dailor

Reputation: 61

Try increasing the max_input_vars value in php.ini. Setting that value to 2000 worked in my case (Windows Server 2008/IIS/MySQL/PHP5.3 and over 200 D7 blocks).

Troubleshooting tips for WIMP: In php.ini, set:

error_log=C:\Windows\temp\php_errors.log

In php_errors.log, look for a message such as:

PHP Warning: Unknown: Input variables exceeded 1000. To increase the limit change max_input_vars in php.ini. in Unknown on line 0

Upvotes: 6

Related Questions