
Originally Posted by
deb
Thanks deBeaujeu.
Things are going through now but a new wrinkle. After the order has been processed using IE (for the browser), we get this error message:
https://www.cropaddict.com/shop/cybe...hp?result=true
cannot find server
Yet when we refresh the page the IE browser clears and you get the order confirmation page plus the email confirmation is sent.
This doesn't happen in Netscape or Firefox, just IE. Any thoughts?
Also, how do we tell if the cybersource.php file is corrupted? It opens fine.
thks :)
To hopefully reach full compatibility with IE (prior to IE7), you can add the code provided to your (store root directory) .htaccess file:
## Add these to your .htaccess file so that only one way to your site exists, either
http://yoursite.com and
http://www.yoursite.com ... preferably the same as your SSL Certificate ... the following adds the www if it's missing:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^yoursite.com$ [NC]
RewriteRule ^(.*)$ http://www.yoursite.com/$1 [R=301,L]
## If you'd like your site to go to
http://mysite.com instead of
http://www.mysite.com, add these changes instead:
##RewriteEngine On
##RewriteCond %{HTTP_HOST} ^www.yoursite.com$ [NC]
##RewriteRule ^(.*)$ http://yoursite.com/$1 [R=301,L]
## the following makes sure the correct mime type is sent for the .htc file
AddType text/x-component .htc
These .htaccess (Apache Server) files are distributed configuration files used to provide a way to make configuration changes on a per-directory basis. A file, containing one or more configuration directives, is placed in a particular document directory, and the directives apply to that directory, and all its subdirectories.
For more info, please review: http://httpd.apache.org/docs/2.0/howto/htaccess.html
For the cybersource.php file, the easiest way is to upload to your ZC store host a fresh copy of that file, obtained from the original CyberSource Payment Module 1.04 contribution package.
deBeaujeu