Jump to content

PAYMENT METHOD


Recommended Posts

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

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

<?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

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

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...