i978 Posted April 1, 2009 Share Posted April 1, 2009 I test on my web, when i choose PAYMENT METHOD --bank wire, then check next ,but appear 404 erro? why?shop install at "/" ,host is bluhost ,no ssl; who can help me? can login in for test Link to comment Share on other sites More sharing options...
rocky Posted April 1, 2009 Share Posted April 1, 2009 1. Make sure that all the files in the modules/bankwire directory have been properly uploaded, including modules/bankwire/payment.php, which is the file that appears to be missing.2. Remove the following line 112 from product.tpl in your theme directory: {l s='Print'} Link to comment Share on other sites More sharing options...
i978 Posted April 1, 2009 Author Share Posted April 1, 2009 Thanks for rocky. For 2. it's OK.But for 1 , after uploading all files in modules/bankwire.it also appear 404 error, not enter payment.php. My shop is installed at "/shop/",not in "/", have dealings with it? Link to comment Share on other sites More sharing options...
i978 Posted April 1, 2009 Author Share Posted April 1, 2009 <?php /* SSL Management */ $useSSL = false; include(dirname(__FILE__).'/../../config/config.inc.php'); include(dirname(__FILE__).'/../../header.php'); include(dirname(__FILE__).'/bankwire.php'); if (!$cookie->isLogged()) Tools::redirect('authentication.php?back=order.php'); $bankwire = new BankWire(); echo $bankwire->execPayment($cart); include_once(dirname(__FILE__).'/../../footer.php'); ?> it 's domain.com/shop/modules/bankwire/payment.php. it is correct? Link to comment Share on other sites More sharing options...
rocky Posted April 1, 2009 Share Posted April 1, 2009 Yes, that is the URL. Have you tried entering that directly into your browser? If it comes up as a 404, then the file must be missing, or your .htaccess file is set up to block it. Link to comment Share on other sites More sharing options...
i978 Posted April 2, 2009 Author Share Posted April 2, 2009 Following is my .htacess ,i can't find where is blokced? and all files not missing. # URL rewriting module activation RewriteEngine on RewriteCond %{REQUEST_METHOD} !^(TRACE|TRACK|GET|POST|HEAD)$ RewriteRule .* - [F] RewriteBase /shop/ Options +FollowSymLinks # URL rewriting rules RewriteRule ^([a-zA-Z0-9-]*)/([0-9]+)\-([a-zA-Z0-9-]*)\.html(.*)$ product.php?id_product=$2$4 [L,E] RewriteRule ^([0-9]+)\-([a-zA-Z0-9-]*)\.html(.*)$ product.php?id_product=$1$3 [L,E] RewriteRule ^([0-9]+)\-([a-zA-Z0-9-]*)(.*)$ category.php?id_category=$1 [QSA,L,E] RewriteRule ^content/([0-9]+)\-([a-zA-Z0-9-]*)(.*)$ cms.php?id_cms=$1 [QSA,L,E] # Catch 404 errors ErrorDocument 404 /404.php Link to comment Share on other sites More sharing options...
i978 Posted April 2, 2009 Author Share Posted April 2, 2009 url is :http://www.warestrading.com/ Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now