Hallo,
kann mir jemdn sagen was diese Fehler meldung sagt wenn ich mich als Kunde neu anmelde ??
Warning: Cannot modify header information - headers already sent by
(output started at /kunden/xxxxx_xxxxx/nachtschwaermer/xtcommerce/inc/xtc_draw_
checkbox_field.inc.php:49) in /kunden/xxxx_xxxxx/nachtschwaermer/xtcommerce/inc/xtc_redirect.inc.php on line 28
hier meine xtc_redirect.inc.php
Zitat:
<?php
/* -----------------------------------------------------------------------------------------
$Id: xtc_redirect.inc.php,v 1.1 2003/09/06 21:47:50 fanta2k Exp $
XT-Commerce - community made shopping
http://www.xt-commerce.com
Copyright © 2003 XT-Commerce
-----------------------------------------------------------------------------------------
based on:
© 2000-2001 The Exchange Project (earlier name of osCommerce)
© 2002-2003 osCommerce(general.php,v 1.225 2003/05/29); www.oscommerce.com
© 2003 nextcommerce (xtc_redirect.inc.php,v 1.5 2003/08/13); www.nextcommerce.org
Released under the GNU General Public License
---------------------------------------------------------------------------------------*/
// include needed functions
require_once(DIR_FS_INC . 'xtc_exit.inc.php');
function xtc_redirect($url) {
if ( (ENABLE_SSL == true) && (getenv('HTTPS') == 'on') ) { // We are loading an SSL page
if (substr($url, 0, strlen(HTTP_SERVER)) == HTTP_SERVER) { // NONSSL url
$url = HTTPS_SERVER . substr($url, strlen(HTTP_SERVER)); // Change it to SSL
}
}
header('Location: ' . $url);
xtc_exit();
}
?>
|
und hier die andere
Zitat:
<?php
/* -----------------------------------------------------------------------------------------
$Id: xtc_draw_checkbox_field.inc.php,v 1.1 2003/09/06 21:47:50 fanta2k Exp $
XT-Commerce - community made shopping
http://www.xt-commerce.com
Copyright © 2003 XT-Commerce
-----------------------------------------------------------------------------------------
based on:
© 2000-2001 The Exchange Project (earlier name of osCommerce)
© 2002-2003 osCommerce(html_output.php,v 1.52 2003/03/19); www.oscommerce.com
© 2003 nextcommerce (xtc_draw_checkbox_field.inc.php,v 1.5 2003/08/13); www.nextcommerce.org
Released under the GNU General Public License
---------------------------------------------------------------------------------------*/
require_once(DIR_FS_INC . 'xtc_draw_selection_field.inc.php');
// Output a form checkbox field
function xtc_draw_checkbox_field($name, $value = '', $checked = false, $parameters = '') {
return xtc_draw_selection_field($name, 'checkbox', $value, $checked, $parameters);
}
?>
|
ich wei? nicht so richtig was das system mir sagen will. :unsure:
Bitte kann da jemand ?ber setzen und helfen?
Gru?
Ela