Jump to content



Latest News: (loading..)

epwork

Member Since 25 Jul 2010
OFFLINE Last Active Mar 11 2013 07:30 PM
-----

Posts I've Made

In Topic: PCI Compliance Scan Failures Oscommerce or my host provider

16 November 2012 - 04:29 PM

View PostHarald Ponce de Leon, on 16 November 2012 - 11:39 AM, said:

That isn't the point. The point is that XSS vulnerability is a false report and if that company doesn't know better, then I wouldn't use their services. It looks like they will report anything to you just so you can pay a "failure fee".

Ah ha, OK I get it now!  Thank you @Harald Ponce de Leon that gives me a good perspective, I will keep that in mind.  Makes it a challenge when the bank dictates who is used to monitor my sites PCI compliance.  

Thanks again,
Tiffany

In Topic: PCI Compliance Scan Failures Oscommerce or my host provider

16 November 2012 - 07:49 AM

View Posttoyicebear, on 16 November 2012 - 03:58 AM, said:

For nr. 1 , have a look at: ANTI Cross Site Scripting attacks

Can not say for sure, but nr. 2 sounds like a server/hosting issue.

Thanks, I'll try that.  Don't have any languages other than English right now.

In Topic: PCI Compliance Scan Failures Oscommerce or my host provider

16 November 2012 - 07:47 AM

View PostDunWeb, on 16 November 2012 - 04:19 AM, said:

@epwork

2) Does your site utilize a shared SSL ? Or a standard SSL ?  Do you use shared hosting ?




Chris

Site uses a standard SSL and is hosted on a dedicated server.

In Topic: FedEx - Web Services v9

21 October 2012 - 09:14 PM

View PostRoaddoctor, on 21 October 2012 - 07:46 PM, said:

New version posted. 9.4.3

http://addons.oscommerce.com/info/7977

Please post any findngs - Thanks!

Thanks @Roaddoctor!   Sort order is now Low to High.   Only thing i notice is that it picks the lowest FedEx service/cost no matter what instead of  default selection to USPS First Class for example, which is lower.

Don't recall if it selected that way before - that's not a big deal for me, but some people may want default to lowest cost overall.

In Topic: FedEx - Web Services v9

21 October 2012 - 06:45 PM

View PostJohn W, on 19 October 2012 - 12:03 PM, said:

The function to sort low to high is done usort, which is probably commented out.  Look for the line below and uncomment it.
// usort($methods, 'cmp');
But I beleive you have to move the "cmp" function so it's like
function cmp($a, $B) {
	 if ($a['cost'] == $b['cost']) {
		 return 0;
	 }
	 return ($a['cost'] < $b['cost']) ? -1 : 1;
}

usort($methods, 'cmp');

This should solve your problem but post back if not.

I first tried commented out and there was no change.  Then moved the "usort" line as suggested but that broke the entire checkout_shipping page.

I wonder if it's just a matter of changing the SQL configuration table? There is a "sort order of display" entry - currently set to a sort order value of 99. Or even just changing the values of the services i'm using. For example, it has all the priority and next day services at a sort order ID of 10, where the Home Delivery or Ground has a value of 25.  

But i'm no SQL expert and don't know if that would break the entire module or not?