Hey leute
Ich habe da folgendes Problem.
Ich habe ein Loginscript gefunde habe es hochgeladen und alles funktioniert tadellos. Soweit sogut.
Fange ich nun an mein Design anzupassen beim Login bekomme ich fehlermeldungen:
Die Fehlermeldungen:
Warning: Cannot modify header information - headers already sent by (output started at /usr/export/www/vhosts/funnetwork/hosting/user/members.php:89) in /usr/export/www/vhosts/funnetwork/hosting/user/shared/class/faSession.php on line 31
Warning: Cannot modify header information - headers already sent by (output started at /usr/export/www/vhosts/funnetwork/hosting/user/members.php:89) in /usr/export/www/vhosts/funnetwork/hosting/user/shared/class/faSession.php on line 32
Warning: Cannot modify header information - headers already sent by (output started at /usr/export/www/vhosts/funnetwork/hosting/user/members.php:89) in /usr/export/www/vhosts/funnetwork/hosting/user/shared/class/faSession.php on line 33
Warning: Cannot modify header information - headers already sent by (output started at /usr/export/www/vhosts/funnetwork/hosting/ali4user/members.php:89) in /usr/export/www/vhosts/funnetwork/hosting/user/shared/class/faSession.php on line 34
Warning: Cannot modify header information - headers already sent by (output started at /usr/export/www/vhosts/funnetwork/hosting/user/members.php:89) in /usr/export/www/vhosts/funnetwork/hosting/user/shared/class/faSession.php on line 35
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /usr/export/www/vhosts/funnetwork/hosting/ali4web/members.php:89) in /usr/export/www/vhosts/funnetwork/hosting/user/shared/class/faSession.php on line 44
Das ist die faSession.php vin line 26 - 50
Und das ist die line 80 - 100 der members.php
So und nun weiß ich wirklich nicht was an der members.php falsch ist und die fehglermeldung auslöst, da ich nur das Design angepasst habe sprich die login.php des scripts per include in die members.php eingefügt habe...
Wäre um hilfe dankbar.. vielen dank
MfG bamless
Ich habe da folgendes Problem.
Ich habe ein Loginscript gefunde habe es hochgeladen und alles funktioniert tadellos. Soweit sogut.
Fange ich nun an mein Design anzupassen beim Login bekomme ich fehlermeldungen:
Die Fehlermeldungen:
Warning: Cannot modify header information - headers already sent by (output started at /usr/export/www/vhosts/funnetwork/hosting/user/members.php:89) in /usr/export/www/vhosts/funnetwork/hosting/user/shared/class/faSession.php on line 31
Warning: Cannot modify header information - headers already sent by (output started at /usr/export/www/vhosts/funnetwork/hosting/user/members.php:89) in /usr/export/www/vhosts/funnetwork/hosting/user/shared/class/faSession.php on line 32
Warning: Cannot modify header information - headers already sent by (output started at /usr/export/www/vhosts/funnetwork/hosting/user/members.php:89) in /usr/export/www/vhosts/funnetwork/hosting/user/shared/class/faSession.php on line 33
Warning: Cannot modify header information - headers already sent by (output started at /usr/export/www/vhosts/funnetwork/hosting/ali4user/members.php:89) in /usr/export/www/vhosts/funnetwork/hosting/user/shared/class/faSession.php on line 34
Warning: Cannot modify header information - headers already sent by (output started at /usr/export/www/vhosts/funnetwork/hosting/user/members.php:89) in /usr/export/www/vhosts/funnetwork/hosting/user/shared/class/faSession.php on line 35
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /usr/export/www/vhosts/funnetwork/hosting/ali4web/members.php:89) in /usr/export/www/vhosts/funnetwork/hosting/user/shared/class/faSession.php on line 44
Das ist die faSession.php vin line 26 - 50
PHP-Code:
function faSession_start($name = "faSID", $handler = "faSession") {
global $debug;
if ($debug)
echo "<br>[faSession] Session-Handler: $handler<br>\n";
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");
session_name($name);
if ($handler == "faSession") {
set_faSessionHandler();
return session_start();
}
else
if ($handler == "php") {
return session_start();
}
}
function faSession_checkEnv() {
global $faDB;
if (is_object($faDB) and $faDB->class_id == "fa_db") {
Und das ist die line 80 - 100 der members.php
PHP-Code:
</tr>
</table>
</td>
</tr>
<tr>
<td height="45" background="grafiken/lastnews.jpg"> </td>
</tr>
<tr>
<td height="125" background="grafiken/13.jpg" valign="top"><table width="86%" border="0" cellspacing="0" cellpadding="0"
<tr>
<td>
<table width="99%" border="0" cellspacing="0" cellpadding="0" align="right" height="13">
<tr>
<td width="24%"><font size="1" face="Verdana, Arial, Helvetica, sans-serif" color="#333333"><b>Datum</b></font></td>
<td width="37%">
<div align="right"><font color="#009900" size="1" face="Verdana, Arial, Helvetica, sans-serif"><b><font color="#000000">Titel</font></b></font></div>
</td>
</tr>
</table>
</td>
So und nun weiß ich wirklich nicht was an der members.php falsch ist und die fehglermeldung auslöst, da ich nur das Design angepasst habe sprich die login.php des scripts per include in die members.php eingefügt habe...
Wäre um hilfe dankbar.. vielen dank
MfG bamless
Kommentar