You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.
session_start() called even if session already started in index.php.
I have fixed it temporary with the following code:
```
if (session_id() == ’’)
session_start();
```
If you start session in any case – this causes problem for users which are calling piwik from within their PHP with session already started.
Keywords: session
The text was updated successfully, but these errors were encountered:
session_start() called even if session already started in index.php.
I have fixed it temporary with the following code:
```
if (session_id() == ’’)
session_start();
```
If you start session in any case – this causes problem for users which are calling piwik from within their PHP with session already started.
Keywords: session
The text was updated successfully, but these errors were encountered: