Viewing 1 replies (of 1 total)
  • Like the plugin is the old code of dnui (well with improvements) i can help you, the problem is because you have other plugin that use session_start(), because in php :

    As of PHP 4.3.3, calling session_start() after the session was previously started will result in an error of level E_NOTICE. Also, the second session start will simply be ignored.

    So you can comment the code //add_action(‘init’, ‘session_start’); but if you delete the plugin who use session to you will have problem and you will have to put again the add_action(‘init’, ‘session_start’); The other way is to disabled the E_NOTICE of PHP and you will not have this problem.

Viewing 1 replies (of 1 total)
  • The topic ‘I do get the following: notice a session had already been started…’ is closed to new replies.