I get this error on a webpage created for mobiles:
Warning: session_start(): Cannot send session cache limiter - headers already sent (output started at /customers/6/6/1/chromium.no/httpd.www/mobil/start.php:1) in /customers/6/6/1/chromium.no/httpd.www/mobil/start.php on line 1
I have been trying to read up on what the problem could be, but all the answers is about header-output before the session_start() is called. As you can see, the output is happening on line 1, but line 1 is:
<?php session_start(); ?>
This is the full start of my document:
1: <?php session_start(); ?>
2:
3: <!DOCTYPE html>
4: <html>
5: <head>
6: <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7: <meta charset="UTF-8">
8: <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0"/>
So I can't see that something is output in header before session_start() has been called....
I would appreciate any help given!
Thanks!