Jump to content



Latest News: (loading..)

FIMBLE

Member Since 28 Sep 2003
OFFLINE Last Active May 18 2013 04:03 PM
***--

Posts I've Made

In Topic: Recommend a Product has been hacked - help!

22 April 2013 - 04:12 PM

You could always use captcha or set tell a friend to to only allow logged in guests to use this form.
Not so sure the site would of been hacked, but certainly there is a lot of this going around the 'net.
this add on has some protection of the tell a freind built into it
http://addons.oscommerce.com/info/8283
Nic

In Topic: Products added but not displaying

20 April 2013 - 10:33 AM

Hello
I see one product in your store without any image "
Cinna-Bone Biscuits"

Is this the only item you have loaded?
I cannot imagine it being anything to do with the PC that was used to upload the product.
Nic

In Topic: Products added but not displaying

19 April 2013 - 10:11 AM

Hello
What is the name of your web site please?
Nic

In Topic: paypal payments advanced

25 June 2012 - 08:34 AM

You can search the addons to see if one already exists, or you can check with the payment processor to see if the have a plug in for osC, some of the providers you need to request the module.
Nic

In Topic: Remove Tell A Friend Box

25 June 2012 - 08:32 AM

with this

if (isset($HTTP_GET_VARS['products_id'])) {
if (basename($PHP_SELF) != FILENAME_TELL_A_FRIEND)
include(DIR_WS_BOXES . 'tell_a_friend.php');
} else {
include(DIR_WS_BOXES . 'specials.php');
}

make it this

//if (isset($HTTP_GET_VARS['products_id'])) {
//if (basename($PHP_SELF) != FILENAME_TELL_A_FRIEND)
//include(DIR_WS_BOXES . 'tell_a_friend.php');
//} else {
include(DIR_WS_BOXES . 'specials.php');
//}

or delete the rest to leave you with this

include(DIR_WS_BOXES . 'specials.php');

Nic