I'm setting up a new shopsite version 10 sp2 and for the most part it is working except certain portions. The most probermatic is when configuring the payment method anytime i try to save or configure a method it fails. Looking at the error logs to can't find /payconfig.cgi when in actuality it should be cgi-bin/ss/payconfig.cgi. I am running shopsite version 10 sp2 on redhat linux and apache 2. Parts of the payconfig work but some fail by calling it in / instead of out of the cgi-bin. I've had the same issue with otderhandler.cgi and billing.cgi. I was able to fix them at first with a rewrite rule in apache but payconfig.cgi does a POST which doesn't use rewrite rules. The cgi files are in the ss dir under cgi
RewriteEngine ON
RewriteRule ^/orderhandler.cgi(.*) https://marketing.injersey.com/cgi-bin/ss/orderhandler.cgi$1 [R=301,L]
RewriteRule ^/billing.cgi(.*) https://marketing.injersey.com/cgi-bin/sc/billing.cgi$1 [R=301,L]
#RewriteRule ^/payconfig.cgi(.*) https://marketing.injersey.com/cgi-bin/ss/payconfig.cgi$1 [R=301,L]
any help would be appreciated.