Php – Do Apache connections limit the amount of php sessions

apache-2.2PHP

My host is saying that maximum number of Apache connections is limited to 30. Does this mean I can't maintain more than 30 php sessions at a time?

Best Answer

No. PHP sessions are (by default) file based, so you can have as many of them as can fit on your server's disk.