Sorry - Ignore my last question, I removed it via payment modules in admin.
This also solves the problem I couldnt work out with the MATC contribution.
Many Thanks
- osCommerce Support Forum
- → Viewing Profile: Mort-lemur
Latest News: (loading..)
About Me
Firstly I am NOT a PHP Coding expert.
But I have spent the last 18 months getting my site the way it needs to be - Secure, working smoothly, well ranked on Google etc. At times it was a struggle, but worth it in the end!
I now have a site with the following enhancements:
Security mods:
• Obscure Admin Name
• .htaccess file + /Images .htaccess file
• Anti XSS
• check permissions
• IP_Trap
• PHP Intrusion_Provention V1.6
• Sams Anti-Hacker account mods 1.6
• Security Pro
• Site_Monitor_2.5
• Spiders txt
SEO Mods:
• Google_XML_Sitemap_V1.5
• Header_Tags_3.2.2
• seo urls
• Sitemap SEO 1.5
Reporting Mods:
• Google Analytics
• Monthly sales_tax reporting system
• Search_Logging
• Orderlist
• How_Did_you_Hear about us
Selling Enhancements:
• Google_base
• X_Sell
Admin Mods:
• Admin Comments
• define mainpage
• Banner_Rotator
• discount codes
• easypopulate
• Faster Also Purchased
• Fck Editor
• Hide_Categories and Products
• KISS_Error_Handling_Debugging_v1.0_r20
• multi zone multi table shipping
• Option Types V2
• Order Editor
• Order Maker
• Orderlist
• Master_Password
• Product_Mark_Up (cost vs selling)
• Products_Monitor
• Recover Cart Sales
• Remove_Unused_Images
• Tax queries optimization
• OSC Thumb
Catalogue Enhancement Mods:
• PDF Address_Labels
• Call for Pricing ver1.4
• category image box
• Fancybox
• Horizontal_Menu
• html_email
• Fancier invoice & Packing Slip
• Multi Images with fancybox popups
• Dynamenu Fly out Menus
• Catalogue Pricelist
• printable_Catalogue with images
• Product Quantity Dropdown
• Remove from cart button
• Scrolling Specials
• Side_Banners
• Vat Display (Display prices with / without tax)
• collection in person
Others:
• ePDQ_1.09
• paypal_IPN
Plus a few other goodies!
If you would like a version of my modified store installed on your server, then please contact me via a personal message.
Many Thanks
But I have spent the last 18 months getting my site the way it needs to be - Secure, working smoothly, well ranked on Google etc. At times it was a struggle, but worth it in the end!
I now have a site with the following enhancements:
Security mods:
• Obscure Admin Name
• .htaccess file + /Images .htaccess file
• Anti XSS
• check permissions
• IP_Trap
• PHP Intrusion_Provention V1.6
• Sams Anti-Hacker account mods 1.6
• Security Pro
• Site_Monitor_2.5
• Spiders txt
SEO Mods:
• Google_XML_Sitemap_V1.5
• Header_Tags_3.2.2
• seo urls
• Sitemap SEO 1.5
Reporting Mods:
• Google Analytics
• Monthly sales_tax reporting system
• Search_Logging
• Orderlist
• How_Did_you_Hear about us
Selling Enhancements:
• Google_base
• X_Sell
Admin Mods:
• Admin Comments
• define mainpage
• Banner_Rotator
• discount codes
• easypopulate
• Faster Also Purchased
• Fck Editor
• Hide_Categories and Products
• KISS_Error_Handling_Debugging_v1.0_r20
• multi zone multi table shipping
• Option Types V2
• Order Editor
• Order Maker
• Orderlist
• Master_Password
• Product_Mark_Up (cost vs selling)
• Products_Monitor
• Recover Cart Sales
• Remove_Unused_Images
• Tax queries optimization
• OSC Thumb
Catalogue Enhancement Mods:
• PDF Address_Labels
• Call for Pricing ver1.4
• category image box
• Fancybox
• Horizontal_Menu
• html_email
• Fancier invoice & Packing Slip
• Multi Images with fancybox popups
• Dynamenu Fly out Menus
• Catalogue Pricelist
• printable_Catalogue with images
• Product Quantity Dropdown
• Remove from cart button
• Scrolling Specials
• Side_Banners
• Vat Display (Display prices with / without tax)
• collection in person
Others:
• ePDQ_1.09
• paypal_IPN
Plus a few other goodies!
If you would like a version of my modified store installed on your server, then please contact me via a personal message.
Many Thanks
Community Stats
- Group Community Member
- Active Posts 892 (0.92 per day)
- Most Active In General Support (544 posts)
- Profile Views 25,867
- Age Age Unknown
- Birthday Birthday Unknown
-
Real Name
Heather
-
Gender
Female
-
Location
UK
Contact Information
10
Good
Latest Visitors
Posts I've Made
In Topic: Is this Usual 2.3.1 Behaviour?
Yesterday, 15:26
In Topic: Is this Usual 2.3.1 Behaviour?
Yesterday, 15:14
Hi Chris - so even if he selects the paypal standard payment (ie checkbox) rather than hitting the paypal express graphic - it will still bypass checkout confirmation?
If so what is the best way to stop this?
Thanks
If so what is the best way to stop this?
Thanks
In Topic: How Did You Hear About Us - Support
07 February 2012, 21:21
yansfung, on 13 December 2011, 18:32, said:
I want to modify this great add-on a little bit in the "product_info.php" or "checkout_confirmation.php" to have a referral statistics about products instead of target for buyers or guest. However, I am not familiar with drop down option values captured and pass through tep_db_* functions to update the data field "customers_info_source_id" of table "customers_info" with the following SQL statement.
tep_db_query("update " . TABLE_CUSTOMERS_INFO . " set customers_info_source_id = '" . (int)$source_value . "' where customers_info_id = '" . (int)$customer_id . "'");
The following is the "drop down menu" of referral options:
<td align="right" width="100%">
<?php echo "<form action= "What_Action_I_must_take" method=GET>
<select onchange=\"this.form.submit();\" names='This test'>";
for ($i = 0; $i < $source_rows; $i++) {
echo "<option value= $source[$i]['sources_id']>";
echo $source[$i]['sources_name'];
echo "</option>";
}
echo "</select>
</form>";
?>
Call someone kindly show me how to capture the mouse-clicked option value and pass to the parameter "$source_value" for such update.
Thanks a lot in advance!
[img]http://forums.oscommerce.com//public/style_emoticons/default/crying.gif[/img] [img]http://forums.oscommerce.com//public/style_emoticons/default/sick.gif[/img] [img]http://forums.oscommerce.com//public/style_emoticons/default/blush.png[/img]
tep_db_query("update " . TABLE_CUSTOMERS_INFO . " set customers_info_source_id = '" . (int)$source_value . "' where customers_info_id = '" . (int)$customer_id . "'");
The following is the "drop down menu" of referral options:
<td align="right" width="100%">
<?php echo "<form action= "What_Action_I_must_take" method=GET>
<select onchange=\"this.form.submit();\" names='This test'>";
for ($i = 0; $i < $source_rows; $i++) {
echo "<option value= $source[$i]['sources_id']>";
echo $source[$i]['sources_name'];
echo "</option>";
}
echo "</select>
</form>";
?>
Call someone kindly show me how to capture the mouse-clicked option value and pass to the parameter "$source_value" for such update.
Thanks a lot in advance!
[img]http://forums.oscommerce.com//public/style_emoticons/default/crying.gif[/img] [img]http://forums.oscommerce.com//public/style_emoticons/default/sick.gif[/img] [img]http://forums.oscommerce.com//public/style_emoticons/default/blush.png[/img]
What errors?
Thanks
In Topic: Recover Cart Sales for OSC 2.3.1
05 February 2012, 09:45
Thanks Steve,
Releasing them as a contribution is also the best way I can think of of recording what I actually did - and giving those more experienced than me the opportunity to improve / tidy them.
Many Thanks
Releasing them as a contribution is also the best way I can think of of recording what I actually did - and giving those more experienced than me the opportunity to improve / tidy them.
Many Thanks
- osCommerce Support Forum
- → Viewing Profile: Mort-lemur
- Forum Rules






Find content
