--enable-trans-sid option is removed and this option should
be disabled by default in php.ini.
1) It's insecure by nature
2) It may not work well always
3) It wasn't enabled by default used be
4) It risks security and user should enable it after realizing
it's security risks.
; Document expires after n minutes.
session.cache_expire = 180
-; use transient sid support if enabled by compiling with --enable-trans-sid.
-session.use_trans_sid = 1
+; trans sid support is disabled by default.
+; Use of trans sid may risk your users security. It may not be
+; feasible to use this option for some sites. Use this option with caution.
+session.use_trans_sid = 0
url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"
; Document expires after n minutes.
session.cache_expire = 180
-; use transient sid support if enabled by compiling with --enable-trans-sid.
-session.use_trans_sid = 1
+; trans sid support is disabled by default.
+; Use of trans sid may risk your users security. It may not be
+; feasible to use this option for some sites. Use this option with caution.
+session.use_trans_sid = 0
url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=fakeentry"