Title: Session problem &#8211; Session had already been started
Last modified: December 19, 2016

---

# Session problem – Session had already been started

 *  Resolved [Ivijan-Stefan Stipic](https://wordpress.org/support/users/ivijanstefan/)
 * (@ivijanstefan)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/session-problem-session-had-already-been-started/)
 * Hi,
 * There is an error what I have using your plugin:
 *     ```
       Notice: A session had already been started - ignoring session_start() in /wp-content/plugins/slider-image/sliders.php on line 16
       ```
   
 * Please check this because some other plugins also use session and can made some
   problems. I’m WP developer and fix on my side but you can avoid this notification
   adding one small code instand of just basic `session_start()`.
 * Fix is:
 *     ```
       if (strnatcmp(phpversion(),'5.4.0') >= 0)
       {
       	if (session_status() == PHP_SESSION_NONE) {
       		session_start();
       	}
       }
       else
       {
       	if(session_id() == '') {
       		session_start();
       	}
       }
       ```
   
 * Otherwise, Plugin is great!
 * Thanks!

Viewing 5 replies - 1 through 5 (of 5 total)

 *  [support-huge-it](https://wordpress.org/support/users/support-huge-it/)
 * (@support-huge-it)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/session-problem-session-had-already-been-started/#post-8571754)
 * Hello [@ivijanstefan](https://wordpress.org/support/users/ivijanstefan/)
    Thanks
   for pointing out this case. We will fix this issue in next update
 * Sorry for all inconvinences
 *  [support-huge-it](https://wordpress.org/support/users/support-huge-it/)
 * (@support-huge-it)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/session-problem-session-had-already-been-started/#post-8575652)
 * Dear [@ivijanstefan](https://wordpress.org/support/users/ivijanstefan/) we are
   going to take off that session and send the git link to you
 * A pull request has been polished and we will implement the change in the upcoming
   update
 *  Thread Starter [Ivijan-Stefan Stipic](https://wordpress.org/support/users/ivijanstefan/)
 * (@ivijanstefan)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/session-problem-session-had-already-been-started/#post-8583178)
 * Thanks! Find me on the Linkedin and I will send you my contacts.
 *  [support-huge-it](https://wordpress.org/support/users/support-huge-it/)
 * (@support-huge-it)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/session-problem-session-had-already-been-started/#post-8584955)
 * Dear [@ivijanstefan](https://wordpress.org/support/users/ivijanstefan/) will 
   it possible, if you write a message on our email [info@huge-it.com](https://wordpress.org/support/topic/session-problem-session-had-already-been-started/info@huge-it.com?output_format=md)
   and we will get your email as well
 * Thanks
 *  Thread Starter [Ivijan-Stefan Stipic](https://wordpress.org/support/users/ivijanstefan/)
 * (@ivijanstefan)
 * [9 years, 4 months ago](https://wordpress.org/support/topic/session-problem-session-had-already-been-started/#post-8585016)
 * Sent, thanks!

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘Session problem – Session had already been started’ is closed to new 
replies.

 * ![](https://s.w.org/plugins/geopattern-icon/slider-image_277db5.svg)
 * [Responsive Slider - Image Slider - Slideshow for WordPress](https://wordpress.org/plugins/slider-image/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/slider-image/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/slider-image/)
 * [Active Topics](https://wordpress.org/support/plugin/slider-image/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/slider-image/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/slider-image/reviews/)

 * 5 replies
 * 2 participants
 * Last reply from: [Ivijan-Stefan Stipic](https://wordpress.org/support/users/ivijanstefan/)
 * Last activity: [9 years, 4 months ago](https://wordpress.org/support/topic/session-problem-session-had-already-been-started/#post-8585016)
 * Status: resolved