Nur nach dem Absenden erscheint im obern bereich folgende Fehlermeldung!
Warning: session_name() [function.session-name]: Cannot change session name when session is active in /users/nutzer/www/include/includes/captcha/MemorySession.php on line 25
Warning: Cannot modify header information - headers already sent by (output started at /users/nutzer/www/include/includes/captcha/MemorySession.php:25) in /users/nutzer/www/include/includes/class/design.php on line 23
woran könnte dies liegen?
Danke für die Hilfe
von der MermorySession.php der Code
<?php /** * Captcha für www.ilch.de * @author T0P0LIN0 * thanks to uwe slick! http://www.deruwe.de/captcha.html - his thoughts */ /** * MemorySession * Speichern der Zahlen für das Captcha in der Session * * @author Mairu */ class MemorySession { /** * Initialisiert Session * * @param boolean $startSession session_start wird ausgeführt * @param string $sessionId SessionId die dabei verwendet wird */ function MemorySession($startSession = true, $sessionId = 'sid') { if ($startSession) { session_name($sessionId);
Von der design.php der Code
<?php // Copyright by Manuel // Support www.ilch.de defined ('main') or die ('no direct access'); if (!isset($ILCH_HEADER_ADDITIONS)) { $ILCH_HEADER_ADDITIONS = ''; } if (!isset($ILCH_BODYEND_ADDITIONS)) { $ILCH_BODYEND_ADDITIONS = ''; } class design extends tpl { var $html; var $design; var $vars; var $was; var $file; function design ($title, $hmenu, $was = 1, $file = null) { global $allgAr; header('Content-Type: text/html;charset=' . ILCH_CHARSET);
verwendete ilch Version: 1.1 P
Zuletzt modifiziert von mmpro20 am 15.12.2018 - 20:39:44