网站在安装上了伪静态功能,每个页面显示都是正常的,
进入某个商品后,点了添到购物车 还是回到原页面 而且网址出现http://www.AA.com/-phone-dual-camera-java-bluet-p-112.html?action=add_product
照帖子http://www.zen-cart.cn/forum/topic17884.html所说,
这个问题我遇到过,只要修改模板目录里的商品页面模板文件templates/tpl_product_info_display.php
把
<?php echo zen_draw_form('cart_quantity', zen_href_link(zen_get_info_page($_GET['products_id']), zen_get_all_get_params(array('action')) . 'action=add_product'), 'post', 'enctype="multipart/form-data"') . "\n"; ?>
改成
<form name="cart_quantity" action="index.php?main_page=product_info&products_id=<?=intval($_GET['products_id'])?>&action=add_product" method="post" enctype="multipart/form-data">
确实能成功加进购物车,并跳转,但是其他的页面
产品列表页,当产品有2页以上时,就无法打开第二页以后的所有页。。。。
类似于这样的链接http://localhost/ttfdghj-qwdsf-c-1.html?page=2&sort=20a
以及联系我们页,发邮件时点击send提交到http://localhost/contact_us.html?action=send也打不开
这个问题一直解决不了! 请问该怎么办?


News