#1 (permalink)  
Alt 03.01.2006, 17:32
Erfahrener Benutzer
 
Registriert seit: 21.09.2005
Beiträge: 117
Böse

Hallo!

Wenn ich admin aufrufen will dann kommen folgende Fehler:

Warning: main(): Unable to access /srv/www/htdocs/web8/html/shop/lang/german/login.php in /srv/www/htdocs/web8/html/shop/login.php on line 20

Warning: main(/srv/www/htdocs/web8/html/shop/lang/german/login.php): failed to open stream: No such file or directory in /srv/www/htdocs/web8/html/shop/login.php on line 20

Fatal error: main(): Failed opening required '/srv/www/htdocs/web8/html/shop/lang/german/login.php' (include_path='.') in /srv/www/htdocs/web8/html/shop/login.php on line 20


Was hat dies zu bedeuten. Die Installation und die Templates funktionieren. Nur komme ich nicht ins admin rein! :hit:
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #2 (permalink)  
Alt 03.01.2006, 17:34
Erfahrener Benutzer
 
Registriert seit: 21.09.2005
Beiträge: 117
Standard

Hallo!

hab den Grund!
Die Datei fehlt sozusagen.

Habe aber dennoch das problem, dass ich keine login.php habe.
Wohertbekomme ich diese?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #3 (permalink)  
Alt 07.01.2006, 11:55
 
Registriert seit: 03.01.2006
Beiträge: 2
Standard

Hallo tonkelz,
Vielleicht wei?t Du was damit anzufangen!

meine login.php


<?php


/* -----------------------------------------------------------------------------------------
$Id: login.php 1143 2005-08-11 11:58:59Z gwinger $

XT-Commerce - community made shopping
http://www.xt-commerce.com

Copyright &copy; 2003 XT-Commerce
-----------------------------------------------------------------------------------------
based on:
&copy; 2000-2001 The Exchange Project (earlier name of osCommerce)
&copy; 2002-2003 osCommerce(login.php,v 1.79 2003/05/19); www.oscommerce.com
&copy; 2003 nextcommerce (login.php,v 1.13 2003/08/17); www.nextcommerce.org

Released under the GNU General Public License
-----------------------------------------------------------------------------------------
Third Party contribution:

guest account idea by Ingo T. <xIngox@web.de>
---------------------------------------------------------------------------------------*/

include ('includes/application_top.php');

if (isset ($_SESSION['customer_id'])) {
xtc_redirect(xtc_href_link(FILENAME_ACCOUNT, '', 'SSL'));
}
// create smarty elements
$smarty = new Smarty;
// include boxes
require (DIR_FS_CATALOG.'templates/'.CURRENT_TEMPLATE.'/source/boxes.php');

// include needed functions
require_once (DIR_FS_INC.'xtc_validate_password.inc.php');
require_once (DIR_FS_INC.'xtc_array_to_string.inc.php');
require_once (DIR_FS_INC.'xtc_write_user_info.inc.php');
// redirect the customer to a friendly cookie-must-be-enabled page if cookies are disabled (or the session has not started)
if ($session_started == false) {
xtc_redirect(xtc_href_link(FILENAME_COOKIE_USAGE)) ;
}

if (isset ($_GET['action']) && ($_GET['action'] == 'process')) {
$email_address = xtc_db_prepare_input($_POST['email_address']);
$password = xtc_db_prepare_input($_POST['password']);

// Check if email exists
$check_customer_query = xtc_db_query("select customers_id, customers_vat_id, customers_firstname,customers_lastname, customers_gender, customers_password, customers_email_address, customers_default_address_id from ".TABLE_CUSTOMERS." where customers_email_address = '".xtc_db_input($email_address)."'");
if (!xtc_db_num_rows($check_customer_query)) {
$_GET['login'] = 'fail';
$info_message = TEXT_NO_EMAIL_ADDRESS_FOUND;
} else {
$check_customer = xtc_db_fetch_array($check_customer_query);
// Check that password is good
if (!xtc_validate_password($password, $check_customer['customers_password'])) {
$_GET['login'] = 'fail';
$info_message = TEXT_LOGIN_ERROR;
} else {
if (SESSION_RECREATE == 'True') {
xtc_session_recreate();
}

$check_country_query = xtc_db_query("select entry_country_id, entry_zone_id from ".TABLE_ADDRESS_BOOK." where customers_id = '".(int) $check_customer['customers_id']."' and address_book_id = '".$check_customer['customers_default_address_id']."'");
$check_country = xtc_db_fetch_array($check_country_query);

$_SESSION['customer_gender'] = $check_customer['customers_gender'];
$_SESSION['customer_first_name'] = $check_customer['customers_firstname'];
$_SESSION['customer_last_name'] = $check_customer['customers_lastname'];
$_SESSION['customer_id'] = $check_customer['customers_id'];
$_SESSION['customer_vat_id'] = $check_customer['customers_vat_id'];
$_SESSION['customer_default_address_id'] = $check_customer['customers_default_address_id'];
$_SESSION['customer_country_id'] = $check_country['entry_country_id'];
$_SESSION['customer_zone_id'] = $check_country['entry_zone_id'];

$date_now = date('Ymd');

xtc_db_query("update ".TABLE_CUSTOMERS_INFO." SET customers_info_date_of_last_logon = now(), customers_info_number_of_logons = customers_info_number_of_logons+1 WHERE customers_info_id = '".(int) $_SESSION['customer_id']."'");
xtc_write_user_info((int) $_SESSION['customer_id']);
// restore cart contents
$_SESSION['cart']->restore_contents();

if ($_SESSION['cart']->count_contents() > 0) {
xtc_redirect(xtc_href_link(FILENAME_SHOPPING_CART, '', 'SSL'));
} else {
xtc_redirect(xtc_href_link(FILENAME_DEFAULT));
}

}
}
}

$breadcrumb->add(NAVBAR_TITLE_LOGIN, xtc_href_link(FILENAME_LOGIN, '', 'SSL'));
require (DIR_WS_INCLUDES.'header.php');

//if ($_GET['info_message']) $info_message = $_GET['info_message'];
$smarty->assign('info_message', $info_message);
$smarty->assign('account_option', ACCOUNT_OPTIONS);
$smarty->assign('BUTTON_NEW_ACCOUNT', ''.xtc_image_button('button_continue.gif', IMAGE_BUTTON_CONTINUE).'');
$smarty->assign('BUTTON_LOGIN', xtc_image_submit('button_login.gif', IMAGE_BUTTON_LOGIN));
$smarty->assign('BUTTON_GUEST', ''.xtc_image_button('button_continue.gif', IMAGE_BUTTON_CONTINUE).'');
$smarty->assign('FORM_ACTION', xtc_draw_form('login', xtc_href_link(FILENAME_LOGIN, 'action=process', 'SSL')));
$smarty->assign('INPUT_MAIL', xtc_draw_input_field('email_address'));
$smarty->assign('INPUT_PASSWORD', xtc_draw_password_field('password'));
$smarty->assign('LINK_LOST_PASSWORD', xtc_href_link(FILENAME_PASSWORD_DOUBLE_OPT, '', 'SSL'));
$smarty->assign('FORM_END', '</form>');

$smarty->assign('language', $_SESSION['language']);
$smarty->caching = 0;
$main_content = $smarty->fetch(CURRENT_TEMPLATE.'/module/login.html');
$smarty->assign('main_content', $main_content);

$smarty->assign('language', $_SESSION['language']);
$smarty->caching = 0;
if (!defined(RM))
$smarty->load_filter('output', 'note');
$smarty->display(CURRENT_TEMPLATE.'/index.html');
include ('includes/application_bottom.php');
?>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #4 (permalink)  
Alt 07.01.2006, 13:44
 
Registriert seit: 18.12.2005
Beiträge: 76
Standard

Warum bitte hast du keine login.php?
Schaue doch mal bitte genau nach und zwar in den Daten die du noch auf deinem Computer hast. Die muss da drin sein.
Es kann m?glich sein das dein ftp proggie die datei aus welchem grund auch immer nicht mit auf den sever gelegt hat.
Die muss in deinen original dateien vorhanden sein. Schau da bitte nochmal nach.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #5 (permalink)  
Alt 09.03.2006, 17:02
Erfahrener Benutzer
 
Registriert seit: 21.09.2005
Beiträge: 117
Standard

Habe den fehler gefunden.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #6 (permalink)  
Alt 09.03.2006, 17:15
Benutzer
 
Registriert seit: 07.03.2006
Beiträge: 31
Standard

verr?tse den uns auch bitte

hilfreich f?r andere die das "gleiche" oder ?hnliches probl haben
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #7 (permalink)  
Alt 09.03.2006, 19:15
Erfahrener Benutzer
 
Registriert seit: 21.09.2005
Beiträge: 117
Standard

Tja war meine Schuld!
Habe OSCommerce und XTCommerce ineinander kopiert--funktioniert nicht (war ja klar!)
Die Login.php war n?mlich von OSC---dann wieder die richtige von XTC eingespielt, dann funktioniert es ohne Probleme!
Au?erdem hatte ich bei der Installation ein falsches Passwort bzw. 1.User falsch angegeben.

Nun funktioniert es.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
Antwort

Lesezeichen

Stichworte
admin, mglich#33

Themen-Optionen
Ansicht

Forumregeln
Es ist dir nicht erlaubt, neue Themen zu verfassen.
Es ist dir nicht erlaubt, auf Beiträge zu antworten.
Es ist dir nicht erlaubt, Anhänge hochzuladen.
Es ist dir nicht erlaubt, deine Beiträge zu bearbeiten.

BB-Code ist an.
Smileys sind an.
[IMG] Code ist an.
HTML-Code ist aus.
Trackbacks are aus
Pingbacks are aus
Refbacks are aus



Alle Zeitangaben in WEZ +1. Es ist jetzt 05:13 Uhr.

Copyright © 2011 xt:Commerce GmbH / xt:Commerce International Ltd. - All Rights Reserved

xt:Commerce is a SafeCharge brand