#1 (permalink)  
Alt 30.01.2012, 10:47
Neuer Benutzer
 
Registriert seit: 17.01.2012
Beiträge: 13
Standard Zur Kasse gehen...

So hier hab ich auch schon gleich das nächste Problem... sobald ich als Kunde so oder vom Warenkorb aus zur Kasse gehen will, bekomme ich nur eine weisse Seite...
in der Adresszeile steht ...de/checkout/shipping, aber dort hab ich auch keinen Hinweis gefunden woran es liegen könnte...
Jemand eine Idee dazu?

LG
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #2 (permalink)  
Alt 30.01.2012, 10:59
Neuer Benutzer
 
Registriert seit: 27.01.2012
Beiträge: 24
Standard

Klingt als wäre irgend ein smarty Fehler in dem Template. Veyton ist da leider nicht sehr aussagekräftig.
Kann dir leider nicht genau sagen welches Template, kommt drauf an ob du eingeloggt bist oder nicht. Vermutlich ist ein Bug in einem dieser Files:

templates/[templatename]/xtCore/pages/login.html
templates/[templatename]/xtCore/pages/checkout.html
templates/[templatename]/xtCore/pages/subpage_shipping.html

LG.M

Geändert von marblemoses (30.01.2012 um 16:18 Uhr)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #3 (permalink)  
Alt 30.01.2012, 16:12
Neuer Benutzer
 
Registriert seit: 17.01.2012
Beiträge: 13
Standard

Mhh... hab einfach mal in jede Datei Test reingeschrieben, aber mir wird wirklich nix ausgegeben...
Vielleicht sieht ja einer von euch den Fehler? Ich leider nicht

login.html
Code:
<div class="highlightbox">
	<h1>{txt key=TEXT_RETURNING}</h1>
	{form type=form name=login action='dynamic' link_params='page_action=login' method=post conn=SSL}
	{form type=hidden name=action value=login}
	{form type=hidden name=link_target value=index}
	<p>{txt key=TEXT_TXT_RETURNING}</p>
	<table width="100" border="0" cellspacing="4" cellpadding="0">
         <tr>
           <td style="white-space:nowrap;"><strong>{txt key=text_email}</strong> </td>
           <td>{form type=text name=email maxlength='50'}</td>
           <td>&nbsp;</td>
         </tr>
         <tr>
           <td style="white-space:nowrap;"><strong>{txt key=text_password}</strong></td>
           <td>{form type=password name=password maxlength='30'}</td>
           <td>{button text=$smarty.const.BUTTON_LOGIN file='login.gif' type='form'}</td>
         </tr>
         <tr>
           <td>&nbsp;</td>
           <td colspan="2"><a href="{link page='customer' paction='password_reset' conn=SSL}">{txt key=text_link_lostpassword}</a></td>
         </tr>
       </table>
	{form type=formend}
    <br /><br />
</div>
{$message}
{form type=form name=create_account action='dynamic' link_params='page_action=login' method=post conn=SSL}
{form type=hidden name=action value=add_customer}
{form type=hidden name=page value='customer'}
{form type=hidden name=default_address[address_class] value=default}
<h1>{txt key=TEXT_NEW_CUSTOMER}</h1>


<div class="highlightbox">
<h3>{txt key=TEXT_PERSONAL}:</h3>
<table width="100%" cellspacing="0" cellpadding="4">
  {if $show_gender eq 1}
    <tr>
    <td class="erste">{txt key=TEXT_GENDER}:</td>
    <td class="zweite">{form type=select name=default_address[customers_gender] value=$gender_data default=$default_address.customers_gender note=*}</td>
  </tr>
  {/if}
  <tr>
    <td class="erste">{txt key=TEXT_FIRSTNAME}:</td>
    <td class="zweite">{form type=text name=default_address[customers_firstname] value=$default_address.customers_firstname note=*}</td>
  </tr>
  <tr>
    <td>{txt key=TEXT_LASTNAME}:</td>
    <td>{form type=text name=default_address[customers_lastname] value=$default_address.customers_lastname note=*}</td>
  </tr>
  {if $show_birthdate eq 1}
  <tr>
    <td class="erste">{txt key=TEXT_BIRTHDATE}:</td>
    <td class="zweite">{form type=text name=default_address[customers_dob] value=$default_address.customers_dob note=*} {txt key=TEXT_BIRTHDATE_INFO}</td>
  </tr>
  {/if}
  <tr>
    <td class="erste">{txt key=TEXT_EMAIL}:</td>
    <td class="zweite">{form type=text name=cust_info[customers_email_address] value=$cust_info.customers_email_address note=*}</td>
  </tr>
  <tr>
    <td>{txt key=TEXT_EMAIL_CONFIRM}:</td>
    <td>{form type=text name=cust_info[customers_email_address_confirm] value=$cust_info.customers_email_address_confirm note=*}</td>
  </tr>
</table>
 <br /><br />
{if $show_company eq 1}
<h3>{txt key=TEXT_COMPANY}:</h3>
<table width="100%" border="0" cellspacing="0" cellpadding="4">
  <tr>
    <td class="erste">{txt key=TEXT_COMPANY_NAME}:</td>
    <td class="zweite">{form type=text name=default_address[customers_company] value=$default_address.customers_company}</td>
  </tr>
  <tr>
    <td>{txt key=TEXT_COMPANY_NAME_2}:</td>
    <td>{form type=text name=default_address[customers_company_2] value=$default_address.customers_company_2}</td>
  </tr>
  <tr>
    <td>{txt key=TEXT_COMPANY_NAME_3}:</td>
    <td>{form type=text name=default_address[customers_company_3] value=$default_address.customers_company_3}</td>
  </tr>
  {if $show_vat eq 1}
  <tr>
     <td>{txt key=TEXT_VAT_ID}:</td>
     <td>{form type=text name=cust_info[customers_vat_id] value=$cust_info.customers_vat_id} {txt key=TEXT_VAT_INFO}</td>
  </tr>
  {/if}
</table>
 <br /><br />
{/if}

<h3>{txt key=TEXT_ADDRESS}:</h3>
<table width="100%" border="0" cellspacing="0" cellpadding="4">
  <tr>
    <td class="erste">{txt key=TEXT_STREET}:</td>
    <td class="zweite">{form type=text name=default_address[customers_street_address] value=$default_address.customers_street_address note=*}</td>
  </tr>
  {if $show_suburb eq 1}
  <tr>
    <td class="erste">{txt key=TEXT_SUBURB}:</td>
    <td class="zweite">{form type=text name=default_address[customers_suburb] value=$default_address.customers_suburb}</td>
  </tr>
  {/if}
  <tr>
    <td>{txt key=TEXT_CODE}:</td>
    <td>{form type=text name=default_address[customers_postcode] value=$default_address.customers_postcode note=*}</td>
  </tr>
  <tr>
    <td>{txt key=TEXT_CITY}:</td>
    <td>{form type=text name=default_address[customers_city] value=$default_address.customers_city note=*}</td>
  </tr>
  <tr>
    <td>{txt key=TEXT_COUNTRY}:</td>
    <td>{form type=select name=default_address[customers_country_code] value=$country_data default=$smarty.const._STORE_COUNTRY note=*}</td>
  </tr>
</table>
 <br /><br />
<h3>{txt key=TEXT_CONTACT}:</h3>
<table width="100%" border="0" cellspacing="0" cellpadding="4">
  <tr>
    <td class="erste">{txt key=TEXT_PHONE}:</td>
    <td class="zweite">{form type=text name=default_address[customers_phone] value=$default_address.customers_phone}</td>
  </tr>
  <tr>
    <td>{txt key=TEXT_FAX}:</td>
    <td>{form type=text name=default_address[customers_fax] value=$default_address.customers_fax}</td>
  </tr>
</table>
 <br /><br />

<h3>{txt key=TEXT_PASSWORD}:</h3>
<p>{txt key=TEXT_TXT_NEW_CUSTOMER} {if $smarty.const._STORE_ALLOW_GUEST_ORDERS == 'true'}{txt key=TEXT_TXT_NEW_CUSTOMER_GUEST}{/if}</p>
<table width="100%" border="0" cellspacing="0" cellpadding="4">
  <tr>
    <td class="erste">{txt key=TEXT_PASSWORD_ENTRY}:</td>
    <td class="zweite">{form type=password name=cust_info[customers_password] value=$cust_info.customers_password}</td>
  </tr>
  <tr>
    <td>{txt key=TEXT_PASSWORD_ENTRY_CONFIRM}:</td>
    <td>{form type=password name=cust_info[customers_password_confirm] value=$cust_info.customers_password_confirm}</td>
  </tr>
</table>
 <br /><br />
{if $show_privacy eq 1}
{content cont_id=2 is_id='false'}
{if $show_privacy_type eq 1}
<br />
<table width="100%" cellspacing="0" cellpadding="4">
  <tr>
    <td>{form type=checkbox name=privacy value=1}</td>  
    <td width="100%"><strong>{txt key=TEXT_PRIVACY_ACCEPT}</strong><br /><a href="{$privacy_link}" target="_blank">{txt key=TEXT_PRIVACY_TEXT}</a> {$_content_2.content_popup_link}
    </td>
  </tr>
</table> <br /><br />

{else}
<li><a href="{$privacy_link}" target="_blank">{txt key=TEXT_PRIVACY_TEXT_INFO}</a> {$_content_2.content_popup_link}
    </li> <br /><br />
{/if}
{/if}
{hook key=login_create_account_tpl}
<p>{button text=$smarty.const.BUTTON_NEXT file='next.gif' type='form'}</p>
<p>{txt key=TEXT_MUST}</p>
</div>
{form type=formend}
checkout.html
Code:
<ul id="checkoutnavigation">
	<li {if $page_action == shipping}class="active"{else}class="inactive"{/if} ><span class="title">{txt key=TEXT_SELECT_SHIPPING}</span><br /><span class="description">{txt key=TEXT_SELECT_SHIPPING_DESC}</span></li>
	<li {if $page_action == payment}class="active"{else}class="inactive"{/if}><span class="title">{txt key=TEXT_SELECT_PAYMENT}</span><br /><span class="description">{txt key=TEXT_SELECT_PAYMENT_DESC}</span></li>
	<li {if $page_action == confirmation}class="active"{else}class="inactive"{/if}><span class="title">{txt key=TEXT_CONFIRMATION}</span><br /><span class="description">{txt key=TEXT_CONFIRMATION_DESC}</span></li>
	
	<li {if $page_action == success}class="active"{else}class="inactive"{/if}><span class="title">{txt key=TEXT_SUCCESS}</span><br /><span class="description">{txt key=TEXT_SUCCESS_DESC}</span></li>
</ul>
<div style="clear:both"></div>
{$message}
<br />

{if $page_action == shipping}
{include file="/xtCore/pages/checkout/subpage_shipping.html" type="tpl_include"}
{/if}

{if $page_action == payment}
{include file="/xtCore/pages/checkout/subpage_payment.html" type="tpl_include"}
{/if}

{if $page_action == confirmation}
{include file="/xtCore/pages/checkout/subpage_confirmation.html" type="tpl_include"}
{/if}

{if $page_action == pay}
{include file="/xtCore/pages/checkout/subpage_pay.html" type="tpl_include"}
{/if}

{if $page_action == pay_frame}
{include file="/xtCore/pages/checkout/subpage_pay_iframe.html" type="tpl_include"}
{/if}

{if $page_action == success}
{include file="/xtCore/pages/checkout/subpage_success.html" type="tpl_include"}
{/if}
subpage_shipping.html
Code:
<h1>{txt key=TEXT_SHIPPING_ADDRESS}:TEST</h1>
<table width="100%" class="shipping_address">
  <tr>
    <td width="40%" valign="top">
	<p>
	{if $shipping_address.customers_company} {$shipping_address.customers_company}<br />{/if}
	{$shipping_address.customers_firstname} {$shipping_address.customers_lastname}<br />
	{$shipping_address.customers_street_address}<br />
	{if $shipping_address.customers_suburb} {$shipping_address.customers_suburb}<br />{/if}
	{$shipping_address.customers_postcode} {$shipping_address.customers_city}<br />
	{$shipping_address.customers_country}<br />
	</p>
	{if $shipping_address.allow_change == true}
	<p><a href="{link page='customer' paction=edit_address params='adType=shipping&abID' params_value=$shipping_address.address_book_id conn=SSL}">[{txt key=TEXT_EDIT}]</a></p>
	{/if}
	</td>
	<td width="60%">
	{if $shipping_address.allow_change == true}
	<p><strong>{txt key=TEXT_SELECT_SHIPPING_ADDRESS}:</strong></p>
	{form type=form name=shipping_address action='dynamic' link_params='page_action=shipping' method=post conn=SSL}
	{form type=select name=adID value=$address_data params='onChange="this.form.submit();"'}
	{form type=hidden name=adType value=shipping}
	{form type=hidden name=action value=select_address}
	{form type=formend}
	{if $add_new_address eq 1}
	<p>{txt key=TEXT_NEW_SHIPPING_ADDRESS}:</p>
	<p><a href="{link page='customer' paction='edit_address' params='adType=shipping' conn=SSL}">{button text=$smarty.const.BUTTON_ADD_ADDRESS file='add_address.gif'}</a></p>
	{/if}
	{/if}
	</td>
	</tr>
</table>
<br />
<h1>{txt key=TEXT_SELECT_SHIPPING}:</h1>
{txt key=TEXT_SELECT_SHIPPING_DESC}
<br />
<br />
{form type=form name=shipping action='checkout' method=post conn=SSL}
{form type=hidden name=action value=shipping}

{foreach name=aussen item=sdata from=$shipping_data}
{$sdata.shipping}
{/foreach}

{hook key=checkout_tpl_shipping}


<p>{button text=$smarty.const.BUTTON_NEXT file='next.gif' type='form'}</p>
{form type=formend}
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #4 (permalink)  
Alt 31.01.2012, 08:55
Neuer Benutzer
 
Registriert seit: 27.01.2012
Beiträge: 24
Standard

Hi,

hmm, scheint alles in Ordnung zu sein. Du kannst folgendes versuchen:

Füge in checkout.html ganz am Anfang folgende Zeilen ein, damit PHP Fehler und Warnungen ausgegeben werden.
Code:
{php}
error_reporting(E_ALL); 
ini_set("display_errors", 1); 
{/php}
Wenn dir das nicht weiterhilft, ändere in der Datenbanktabelle xt_config den Datensatz mit dem key _SYSTEM_DEBUG auf true. Damit wird xt:commerce etwas mitteilsamer.

Vielleicht bringt dich das weiter.

LG.M
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #5 (permalink)  
Alt 31.01.2012, 09:26
Neuer Benutzer
 
Registriert seit: 17.01.2012
Beiträge: 13
Standard

Nummer 1 funktioniert leider nicht und in meiner db gibt es keine xt_config... kann es sein das ich beim anlegen der db was falsch gemacht habe?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #6 (permalink)  
Alt 31.01.2012, 10:22
Neuer Benutzer
 
Registriert seit: 27.01.2012
Beiträge: 24
Standard

Hi,

ich glaube es muss nicht unbeding xt_ davor stehen. Den Präfix kann man bei der installation festlegen. Aber wenn du keine xxxconfig Table hast, ist vermutlich was bei der Installation schief gelaufen.
Du verwendest schon ein xt:commerce 4, oder?

LG.M
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
  #7 (permalink)  
Alt 01.02.2012, 13:53
Neuer Benutzer
 
Registriert seit: 17.01.2012
Beiträge: 13
Standard

Ja ich arbeite mit veyton4, und bereue es langsam
Es scheint echt irgendwas nicht funktioniert zu haben bei der installation...
werd das wohl nächste woche nochmal neu machen müssen :'(

Aber Danke für deine Hilfe!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Wong this Post!
Mit Zitat antworten
Antwort

Lesezeichen

Stichworte
gehen, kasse

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


Ähnliche Themen
Thema Autor Forum Antworten Letzter Beitrag
'Zur Kasse' in neuem Fenster öffnen }{xa!Hannes_ xt:Commerce 4.0 - Templates / Shop 1 24.11.2011 08:42
VEYTON SHOP Problem bei zur Kasse gehen Dominho_10 Fragen zur Software 11 19.11.2011 13:31
Warenkorb leert sich auf dem Weg zur Kasse Spanier Installation und Konfiguration 2 15.11.2011 09:52
VEYTON SHOP Weisse Seite bei Klick auf zur Kasse nfy_markus Fragen zur Software 1 27.08.2010 07:38
Zur Kasse gehen im Warenkorb Badkoenig24 Fragen zur Software 4 16.08.2010 10:55


Alle Zeitangaben in WEZ +1. Es ist jetzt 00:39 Uhr.

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

xt:Commerce is a SafeCharge brand