I did exactly the steps that are shown in that link :
- Go to system/libraries/Session/Session.php
- Comment session_start() by adding //. We want to relocate the sessionn_start().
- Find (using ctrl + f ) a comment that says "Security is king". Comment out all the line under that comment until the end of the function. In my case I commented out the line number 313 - 318.
- Go to the main index.php, it is the first index.php and located in the same directory with the sub-directories 'application', 'system', 'user_guide', etc.
- Put 'session_start()' right after
<
?php
Hope this can help you....
thanks bro
BalasHapusit worked
BalasHapuson line number 284 change this line
BalasHapusini_set('session.name', $params['cookie_name']); to
ini_set('session.id', $params['cookie_name']);