SilverSunrise Posted February 6, 2009 Report Share Posted February 6, 2009 Hallo, ich habe ein kleines Problem mit der Datei product_info.html. Ich habe diese xt Commerce Datei ein wenig geändert, optisch als auch um Javascript Funktionalität ergänzt. Ich habe das Problem, dass der Button "Bestellen" im unteren Bereich (form type="image" in den Produktdetails mit dem Internet Explorer nicht funktioniert und zeigt keinerlei Reaktion. Im Firefox funktioniert jedoch alles tadellos. Ein Javascript Fehler wird nicht angezeigt, ebenso wenig zeigt die FF Fehlerkonsole oder die Validierung über den Dreamweaver ein Problem mit dem Code. Ich habe schon so einiges ausprobiert, bekomme den Fehler aber nicht weg. Das Smarty Element {$FORM_ACTION} ist ebenfalls vorhanden und der Browser wirft auch nach meiner Einschätzung einen korrekten Code aus. Über den Validator von W3C werden mir noch ein paar Fehlermeldungen angezeigt, wie z.B. Line 188, Column 95: cannot generate system identifier for general entity "action" . ….com/product_info.php?products_id=73&action=add_product&XTCsid=a57a567373dd1b ✉ An entity reference was found in the document, but there is no reference by that name defined. Often this is caused by misspelling the reference name, unencoded ampersands, or by leaving off the trailing semicolon (. The most common cause of this error is unencoded ampersands in URLs as described by the WDG in "Ampersands in URLs". Entity references start with an ampersand (&) and end with a semicolon (. If you want to use a literal ampersand in your document you must encode it as "&" (even inside URLs!). Be careful to end entity references with a semicolon or your entity reference may get interpreted in connection with the following text. Also keep in mind that named entity references are case-sensitive; &Aelig; and æ are different characters. If this error appears in some markup generated by PHP's session handling code, this article has explanations and solutions to your problem. Note that in most documents, errors related to entity references will trigger up to 5 separate messages from the Validator. Usually these will all disappear when the original problem is fixed. Kann es vielleicht daran liegen, dass das "&" Zeichen durch "&" ersetzt werden müsste? Kann sich der IE daran stören? Wenn ja, wie kann ich diesen URL entsprechend ändern, da sie ja dynamisch durch SMARTY erzeugt wird? Kann mir da jemand in meiner Misere helfen? Danke schon mal vorab! Link to comment Share on other sites More sharing options...
suppi_2 Posted February 7, 2009 Report Share Posted February 7, 2009 hast du mal im quellcode geschaut, ob das ende tag </form> auch hinter dem Button befindet? Link to comment Share on other sites More sharing options...
SilverSunrise Posted February 7, 2009 Author Report Share Posted February 7, 2009 Hi suppi, danke für deine Antwort. Das </form> Tag befindet sich aber nach dem Button. Daran kann es also nicht liegen. Hier ein Auszug aus dem Quelltext der product_info.htm: {$ADD_CART_BUTTON} </div> <br style="clear:both" /> </div> </div> <br style="clear:both" /> <br /><br /> </div> </div> </div> {$FORM_END}[/HTML] per Smarty wird dann in product_info.php folgendes zugewiesen: [PHP]$info_smarty->assign('ADD_CART_BUTTON', xtc_image_submit('button_in_cart.gif', IMAGE_BUTTON_IN_CART));[/PHP] im Browser wird dann folgendes ausgegeben: [code] <div class="product_info_cartbutton" style="width:100%"> <p> </p> <div style="width:60px; float:left"> <input type="text" name="products_qty" value="1" size="3" /> <input type="hidden" name="products_id" value="73" /> </div> <div> <input type="image" src="templates/cool-arts-tf/buttons/german/button_in_cart.gif" alt="In den Warenkorb" title=" In den Warenkorb " /> </div> <br style="clear:both" /> </div> </div> <br style="clear:both" /> <br /><br /> </div> </div> </div> </form> [/code] Kann es eventuell auch an den CSS Eigenschaften der div-Container liegen? Link to comment Share on other sites More sharing options...
SilverSunrise Posted February 7, 2009 Author Report Share Posted February 7, 2009 Hallo suppi, ich habe gerade gesehen, dass innerhalb der beiden Form-Tags ein weiteres Formular eingebettet wird durch Smarty. Kann es daher zu Problemen kommen bzw. ist das nicht standardkonform? Grüße, SilverS Link to comment Share on other sites More sharing options...
suppi_2 Posted February 9, 2009 Report Share Posted February 9, 2009 einfach mal den inneren form teil auskommentieren und probieren, dann weißt du ob das daran liegt... Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.