How are people dealing with session.trans_id in php.ini??
Since PHP 4.3, session.trans_id is disabled by default and instead PHP recommends you to use cookie-oriented session management. But I found it very hard to deal with because my website and my clients' are hosted on a shared server.
Hosting company usually give you a free SSL however under the name of the hosting service and not yours (so if your host is www.xxx.com then usually, https://www.xxx.com/~your_account/ etc.) So cookie doesn't exactly work well since the domains are different. The PHP default session management doesn't work in the same reason, unless session.trans_id is enabled.
I tried using MySQL database session management, but I'm worried that it would run out of the max query connection.
If you have a good recommendation, please let me know.