"If your function takes eleven parameters, you probably have forgotten one more"
EDIT: as I have been downvoted ;-) I will just explain.
I love this sentence because it sums it all: Bad design calls for bad design.
I think I quoted this sentence is from C++ Coding Standards: 101 Rules, Guidelines, And Best Practices by Herb Sutter, Andrei Alexandrescu
Functions with so many parameters are a symtom of bad design.
One of the possibility is to try to encapsulate part of these parameters in an entity/class that has a defined goal. (not a garbage class that would list all parameters without sens).
EDIT2: Never forget the Single Responsibility Principle
As a consequence, classes remain limited in size, and as a consequence, limited in number of member paramters, and thus limited in the size of parameters needed for its constructors. Like one of the comments below says, the class with so much constructor parameters may handle too much futile details independent of its main goal.