문제

How can I fix this?

Warning: ini_set() [function.ini-set]: A session is active. You cannot change the session module's ini settings at this time in C:\xampp\htdocs******.php on line 3

I already tried using session_destroy(); but I still get the error.

Thanks.

도움이 되었습니까?

해결책

use session_start(); after ini_set or @ sign before ini_set: @ini_set

다른 팁

if you server is configured to auto start sessions, you can try also:

php_flag session.auto_start 0

in your .htaccess file

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top