Title: Session throws warn &amp; brackets error
Last modified: April 1, 2020

---

# Session throws warn & brackets error

 *  Resolved [azrieil](https://wordpress.org/support/users/azrieil/)
 * (@azrieil)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/session-throws-warn/)
 * case 1:
    Somewhere in my functions.php
 *     ```
       if (session_status() == PHP_SESSION_NONE)
       	session_start();
       ```
   
 * /super_socializer.php:332
    `session_start();` Facebook pop-up window on my [https://localhost](https://localhost)
 * > Notice: session_start(): A session had already been started – ignoring in /
   > var/www/html/wp-content/plugins/super-socializer/super_socializer.php on line
   > 332
 * Can be fixed by change /super_socializer.php:332
 *     ```
       if (session_status() == PHP_SESSION_NONE)
       	session_start();
       ```
   
 * Or
    `@session_start();`
 * case 2
    /library/Google/Utils.php:67 `$ordinalValue = ord($str{$ret});` That 
   syntax [removed in 7.4](https://wiki.php.net/rfc/deprecate_curly_braces_array_access).
   Please change it to `$ordinalValue = ord($str[$ret]);` for better compatibility
   if it possible. Thanks.
    -  This topic was modified 6 years, 1 month ago by [azrieil](https://wordpress.org/support/users/azrieil/).
    -  This topic was modified 6 years, 1 month ago by [azrieil](https://wordpress.org/support/users/azrieil/).
    -  This topic was modified 6 years, 1 month ago by [azrieil](https://wordpress.org/support/users/azrieil/).

Viewing 1 replies (of 1 total)

 *  Plugin Author [Heateor Support](https://wordpress.org/support/users/heateor/)
 * (@heateor)
 * [6 years, 1 month ago](https://wordpress.org/support/topic/session-throws-warn/#post-12645792)
 * Sorry for the late reply. Thanks for the heads up. We will take care of it in
   upcoming releases.

Viewing 1 replies (of 1 total)

The topic ‘Session throws warn & brackets error’ is closed to new replies.

 * ![](https://ps.w.org/super-socializer/assets/icon-128x128.png?rev=1866723)
 * [Social Share, Social Login and Social Comments Plugin - Super Socializer](https://wordpress.org/plugins/super-socializer/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/super-socializer/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/super-socializer/)
 * [Active Topics](https://wordpress.org/support/plugin/super-socializer/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/super-socializer/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/super-socializer/reviews/)

## Tags

 * [headers](https://wordpress.org/support/topic-tag/headers/)
 * [session](https://wordpress.org/support/topic-tag/session/)

 * 1 reply
 * 2 participants
 * Last reply from: [Heateor Support](https://wordpress.org/support/users/heateor/)
 * Last activity: [6 years, 1 month ago](https://wordpress.org/support/topic/session-throws-warn/#post-12645792)
 * Status: resolved