session_start(); (Nog nooit gezien :S)
Lange tijd geleden dat ik hier geweest ben maar ik zit met een probleempje :(
Op mijn eigen host werkt het wel :) Host heb ik al gecontact maar die weten het niet :S
Ik krijg de volgende error:
Code (php)
1
2
3
2
3
Warning: session_start() [function.session-start]: Cannot send session cookie - headers already sent by (output started at /home/ictupdates/domains/ictupdates.nl/public_html/index.php:1) in /home/ictupdates/domains/ictupdates.nl/public_html/index.php on line 2
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/ictupdates/domains/ictupdates.nl/public_html/index.php:1) in /home/ictupdates/domains/ictupdates.nl/public_html/index.php on line 2
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/ictupdates/domains/ictupdates.nl/public_html/index.php:1) in /home/ictupdates/domains/ictupdates.nl/public_html/index.php on line 2
Bij het volgende script:
Code (php)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<?php
session_start();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>ICTupdates.nl - ICT nieuws en meer</title>
<link type="text/css" rel="stylesheet" href="/style.css" />
<meta http-equiv="content-type" content="iso-8859-1" />
<meta name="title" content="ICTupdates.nl - Alles dat met ICT te maken heeft" />
<meta name="description" content="ICTupdates.nl - Alles dat met ICT te maken heeft" />
<meta name="keywords" content="ict updates, ICTupdates, Security Nieuws, ICT nieuws, IT Nieuws, ICT Security, IT Security, computer nieuws, internet nieuws, security nieuws, Security Films, Security Tips, Security Truucs" />
</head>
<body><div id="box">
<div id="header">
<div id="header_login">
<form action="" method="post" style="margin:0px;">
<table>
<tr><td>Gebruikersnaam:</td><td></td></tr>
<tr><td><input type="text" name="gebrnaam" style="width:168px;border:none;" /></td><td style="width:20px;"></td><td><input type="image" src="/images/header_login_button.jpg" value="Login" class="header_login_button"/></td></tr>
<tr><td>Wachtwoord:</td><td style="width:20px;"></td><td style="padding-left:12px;">Ww vergeten?</td></tr>
<tr><td> <input type="text" name="ww" style="width:168px;border:none;" /></td><td style="width:20px;"></td><td style="padding-left:12px;">Aanmelden</td></tr>
</table>
</form>
</div>
</div>
<div id="content">
<div id="menu">
<div class="menuitem"><a href="/">Home</a></div>
<div class="menuitem"><a href="/ict/">ICT</a></div>
<div class="menuitem"><a href="/videos/">Videos</a></div>
<div class="menuitem"><a href="/nieuws/">Nieuws</a></div>
<div class="menuitem"><a href="/overons/">Over Ons</a></div>
<div class="menuitem"><a href="/partners/">Partners</a></div>
<div class="menuitem"><a href="/contact/">Contact</a></div>
<div style="clear:both;"></div>
</div>
<?php
if(empty($_GET['p']) || $_GET['p'] == 'home'){?>
<div id="side_left">
<h2>Wat doen we?</h2>
<div style="width:180px;background-color:#ebebeb;padding:5px;">
Wij verdiepen ons in Informatie en Communicatie Technologie.<br />
<br />
Wij plaatsen ICT Nieuws, truucs, filmpjes, tips en nog meer om zo ICTers op de hoogte te houden.
</div>
<div style="font-weight:bold;padding:10px;width:170px; text-align:center;">Bekenden</div>
<div class="side_button">Security.nl</div>
<div class="side_button">Webwereld.nl</div>
</div>
<?php
}
?>
<?php if(empty($_GET['p']) || $_GET['p'] == 'home'){echo '<div id="main">';}else{echo '<div id="main2">';}?>
<?php
switch(@$_GET['p']){
case "ict":include("pages/ict.php");break;
case "nieuws":include('pages/nieuws.php');break;
case "videos":include('pages/videos.php');break;
case "overons":include('pages/overons.php');break;
case "contact":include('pages/contact.php');break;
case "partners":include('pages/partners.php');break;
case "msnvideo":include('pages/msnvideo.php');break;
case "hostsvideo":include('pages/hostsvideo.php');break;
default:include('pages/home.php');break;
}
?>
</div><div style="clear:both;"></div>
</div>
<div id="footer">Copyright 2009 - 2010 ICTupdates.nl ICT nieuws</div>
</div></body>
</html>
session_start();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>ICTupdates.nl - ICT nieuws en meer</title>
<link type="text/css" rel="stylesheet" href="/style.css" />
<meta http-equiv="content-type" content="iso-8859-1" />
<meta name="title" content="ICTupdates.nl - Alles dat met ICT te maken heeft" />
<meta name="description" content="ICTupdates.nl - Alles dat met ICT te maken heeft" />
<meta name="keywords" content="ict updates, ICTupdates, Security Nieuws, ICT nieuws, IT Nieuws, ICT Security, IT Security, computer nieuws, internet nieuws, security nieuws, Security Films, Security Tips, Security Truucs" />
</head>
<body><div id="box">
<div id="header">
<div id="header_login">
<form action="" method="post" style="margin:0px;">
<table>
<tr><td>Gebruikersnaam:</td><td></td></tr>
<tr><td><input type="text" name="gebrnaam" style="width:168px;border:none;" /></td><td style="width:20px;"></td><td><input type="image" src="/images/header_login_button.jpg" value="Login" class="header_login_button"/></td></tr>
<tr><td>Wachtwoord:</td><td style="width:20px;"></td><td style="padding-left:12px;">Ww vergeten?</td></tr>
<tr><td> <input type="text" name="ww" style="width:168px;border:none;" /></td><td style="width:20px;"></td><td style="padding-left:12px;">Aanmelden</td></tr>
</table>
</form>
</div>
</div>
<div id="content">
<div id="menu">
<div class="menuitem"><a href="/">Home</a></div>
<div class="menuitem"><a href="/ict/">ICT</a></div>
<div class="menuitem"><a href="/videos/">Videos</a></div>
<div class="menuitem"><a href="/nieuws/">Nieuws</a></div>
<div class="menuitem"><a href="/overons/">Over Ons</a></div>
<div class="menuitem"><a href="/partners/">Partners</a></div>
<div class="menuitem"><a href="/contact/">Contact</a></div>
<div style="clear:both;"></div>
</div>
<?php
if(empty($_GET['p']) || $_GET['p'] == 'home'){?>
<div id="side_left">
<h2>Wat doen we?</h2>
<div style="width:180px;background-color:#ebebeb;padding:5px;">
Wij verdiepen ons in Informatie en Communicatie Technologie.<br />
<br />
Wij plaatsen ICT Nieuws, truucs, filmpjes, tips en nog meer om zo ICTers op de hoogte te houden.
</div>
<div style="font-weight:bold;padding:10px;width:170px; text-align:center;">Bekenden</div>
<div class="side_button">Security.nl</div>
<div class="side_button">Webwereld.nl</div>
</div>
<?php
}
?>
<?php if(empty($_GET['p']) || $_GET['p'] == 'home'){echo '<div id="main">';}else{echo '<div id="main2">';}?>
<?php
switch(@$_GET['p']){
case "ict":include("pages/ict.php");break;
case "nieuws":include('pages/nieuws.php');break;
case "videos":include('pages/videos.php');break;
case "overons":include('pages/overons.php');break;
case "contact":include('pages/contact.php');break;
case "partners":include('pages/partners.php');break;
case "msnvideo":include('pages/msnvideo.php');break;
case "hostsvideo":include('pages/hostsvideo.php');break;
default:include('pages/home.php');break;
}
?>
</div><div style="clear:both;"></div>
</div>
<div id="footer">Copyright 2009 - 2010 ICTupdates.nl ICT nieuws</div>
</div></body>
</html>
Iemand enig idee? Bvd.
Geen include geklooi o.id. ? (1200 posts, dus lijkt me niet ....)
Controleer dat nog eens (open het bestand desnoods eens met kladblok oid) en upload het dan opnieuw.
In ieder geval ik heb het probleem gefixed door de file met dreamweaver op te slaan zonder BOM. Heel raar, nog nooit meegemaakt.
Ik hoop dat andere mensen hier nog iets aan hebben :)
Ja, dan zit BOM in de weg. Dat hebben wel meer mensen ooit gemerkt :-).