Products     Magento Extension     PCI-Shopping-Carts     Templates       CRELoaded     WordPress Modules     osCommerce Modules       osCommerce Addons       osCommerce Features       osCommerce Management       Payment Modules     CRELoaded Modules       CRE Loaded Addons       CRE Loaded Features       CRE Loaded Management       Payment Modules       CRELoaded Services
Free Stuff
Customization
Templates
Compare Products
You have no items to compare.
Affiliate Info
Affiliate Program FAQ
Affiliate Log In
Recent Orders
Hot Keywords: Order Notification, Order Search, Coupon, Flash Board, Compare, Floating Message, Tracking, Moneris, RSS, Visitor Filter
Contributions
The following osCommerce contributions are free Opensource code originated from official osCommerce website and provided for your reference only, you may download the original contribution file(s) and install it on your own; or you may request a Paid Installation Service from Agents Of Power; Agents Of Power does the "AS IS" installation on your website, we do not guarantee it will work properly on your website. Extra Paid service is available for repairing the problem from the original contribution or from your website.
Filter: Search:
Displaying 1036 to 1044 (of 1445 contributions) Result Pages: [<< Prev]  ... 111  112  113  114  115  116  117  118  119  120 ...  [Next >>] 
1151. Credit Card numbers cleaner Request Installation with Paid service
For those using the Credit Card Number Encryption contribution (http://addons.oscommerce.com/info/4359), you'll need to modify your code as follows:


Find the section of code in /catalog/admin/clean_cc_numbers.php:

while ($orders = tep_db_fetch_array($orders_query)) {
$newNum = 'XXXXXXXXXXXX';
$newNum .= substr($orders['cc_number'], strlen($orders['cc_number'])-4);
echo "<tr><td align='right'>".$orders['orders_id']."&nbsp;</td><td>".$newNum."</td><td>".substr($orders['date_purchased'],0,-8)."</td><td align='center'>".$orders['orders_status']."</td></tr>";
// Uncommenting the line below will ACTIVATE the script
//tep_db_query("update " . TABLE_ORDERS . " set cc_number='".$newNum."' where orders_id=".$orders['orders_id'].";");
}


And replace with:


while ($orders = tep_db_fetch_array($orders_query)) {
$newNum = 'XXXXXXXXXXXX';

// Credit Card Number Decryption
// check for encryption status and if credit card number exist decrypt
if ((USE_ENCRYPTION == true) && (tep_not_null($orders['cc_number'])) && (strlen($orders['cc_number']) > 19) ) {
$cc_new_value = md5_decrypt($orders['cc_number'], TEXT_ENCRYPTION_PW, $iv_len = 16);
} else {
$cc_new_value = $orders['cc_number'];
}

$newNum .= substr($cc_new_value, strlen($cc_new_value)-4);
echo "<tr><td align='right'>".$orders['orders_id']."&nbsp;</td><td>".$newNum."</td><td>".substr($orders['date_purchased'],0,-8)."</td><td align='center'>".$orders['orders_status']."</td></tr>";
// Uncommenting the line below will ACTIVATE the script
//tep_db_query("update " . TABLE_ORDERS . " set cc_number='".$newNum."' where orders_id=".$orders['orders_id'].";");
}

--------------------------------

Thanks. Great Contrib!

Other things I'd suggest others consider - on our site, we are contemplating
that across ALL orders. I cannot think of a use case where the cc number should be cleansed
regardless of order status.

Also, I'd prefer if there was some way for this script to be automated (run once daily)

Attached File just contains what I have posted
- Now does not re-clean previously cleaned records. Slightly more processing for less database access.
- Output is now a table for better readability.

Please be aware that lines are commented out as a safety feature. You may remove the "//" after testing to ACTIVATE the script.
   Posted on: 11/11/2008     See contribution details

1152. Online payment with ICEPAY Request Installation with Paid service
Payment ICEPAY
   Posted on: 01/20/2009     See contribution details

1153. Stock Status in Product Listing Request Installation with Paid service
This is a fix for those of you who had the issue of all products displaying "OUT OF STOCK".

Use this code in

includes/modules/product_listing.php

instead of the original.

Text file only.....
   Posted on: 01/20/2009     See contribution details

1154. jQuery & Interface 3D Specials Carousel Request Installation with Paid service
I do this:
- add a file jquery-1.2.6.pack.js
- adjust the carousel_header.php for include it.
- fix file_put_contents() error with php4

it work for me!
Some bugs fixed
   Posted on: 09/11/2008     See contribution details

1155. Store Mode (Open | Closed | Maintenance) Request Installation with Paid service
FULL PACKAGE with UPDATE instructions

Since v1.2
----------
* Added Maintenance Page: testing mode to temporarily disable the automatic ip detection so that you may view the index_maintenance.php page from the viewpoint of your customers for testing purposes
* Added Screenshots

Scott
FULL PACKAGE

Only change is to catalog/index_maintenance.php adding green header bar if email is successful rather than red (detailed on forum)

Scott
FULL PACKAGE

The only update is in catalog/index_maintenance.php so just upload and overwrite and you are set.

Scott
FULL PACKAGE

No changes; however, the placement of the edit in catalog/index.php for a default store in STEP 1 was incorrect. This has been fixed.

Scott
FULL PACKAGE with UPDATE INSTRUCTIONS

Since v1.1
----------
* Added a contact form to the maintenance page
* Added compatibility for my osC reCaptcha addon (download it for how to install): http://addons.oscommerce.com/info/6306

Scott
FULL PACKAGE with UPDATE INSTRUCTIONS

Only changes in the sql defines to better understand/explain the functionality in the admin.

Scott
Only Changed Step 11 defines to be defined correctly via the notice in the forum... FULL PACKAGE with UPDATE INSTRUCTIONS

Scott
Full Package: Update Instructions Included

Since v1.0
----------
* Fixed correct file path for Step 11
* Edited the maintenance reminder to include the date/time the customers are expecting the store to be online
* Edited the description to be more complete
* Added the Troubleshooting section

Description
------------
The purpose of this add-on is to set the mode of your store: Open, Closed, or Maintenance
The settings are defined in the Admin->Configuration->Store Mode and in the language files

Set Store Mode-> Open, Closed, or Maintenance

Open Store Mode:
Fully functioning ecommerce webstore

Closed Store Mode:
While in Closed mode, your customers will be able to create accounts, browse the store, and add products to their basket; however, they will NOT be able to checkout until you reopen the store in the Admin. Your customers will see a friendly message on your index AND shopping cart pages informing them of this and telling them the date and time the
store plans to reopen.

Closed Store Features:
Allows your customers to create accounts
Allows your customers and search engines to browse
Allows your customers to add items to the cart
Saves shopping carts for delayed checkout
Prohibits customers from checking out of the store
Displays a friendly message on the index and shopping cart pages
Public notice before going offline

Maintenance Store Mode:
While in Maintenance mode, your customers will ONLY be able to access the Maintenance Page; however, you (the store owner) are granted full access to your website to test the changes you are making to your store. This is determined by the admin/owner's IP Adress which is automatically detected in the Admin section of this addon. As you browse your webstore, you will see a warning message at the top of your screen which reminds you that your store is in Maintenance Mode and that your customers will be expecting your store to return online at the date and time entered in the Admin. In order to see what your customers see while in Maintenance Mode you will either need to go to your store website from a different computer
(with a different IP Address) or follow the steps in the Troubleshooting section. You must manually reopen the store in the Admin. While the store is in Open Mode, your customers are denied access to the Maintenance Page.

Maintenance Store Features:
Choose filename (default is index_maintenance.php)
Hide the header
Hide the left column
Hide the right column
Hide the footer
Hide the product prices
Perform offline maintenance (admin's ip address bypasses the maintenance page)
Public notice before going offline
Display catalog side reminder to admin of offline status

Scott
Store Mode (Open | Closed | Maintenance)
---------------------------------------------

The purpose of this add-on is to set the mode of your store: Open, Closed, or Maintenance
The settings are defined in the Admin->Configuration->Store Mode and in the language files

Set Store Mode-> Open, Closed, or Maintenance

Open Store Mode:
Fully functioning ecommerce webstore

Closed Store Mode:
Allows your customers to create accounts
Allows your customers and search engines to browse
Allows your customers to add items to the cart
Saves shopping carts for delayed checkout
Prohibits customers from checking out of the store
Displays a friendly message on the index and shopping cart pages
Public notice before going offline

Maintenance Store Mode:
Choose filename (default is index_maintenance.php)
Hide the header
Hide the left column
Hide the right column
Hide the footer
Hide the product prices
Perform offline maintenance (admin's ip address bypasses the maintenance page)
Public notice before going offline
Display catalog side reminder to admin of offline status

**************************************************************************
* Support Forum: http://forums.oscommerce.com/index.php?showtopic=319369 *
**************************************************************************
   Posted on: 10/29/2008     See contribution details

1156. Specials in Categories list Request Installation with Paid service
Small bug fix to prevent inactive products showing in specials category. all credit to original coder
   Posted on: 01/15/2009     See contribution details

1157. Bank Transfer Simple V1.0 Request Installation with Paid service
Now Upto 3 Bank Account Compatible

Bank: Axis BAnk1
Branch Name: Cox Town Bengaluru
Account Holder: Ragavendra BN
Account Type: Savings
MICR:
Account Number:

Bank: Axis BAnk2
Branch Name: Cox Town Bengaluru
Account Holder: Ragavendra BN
Account Type: Savings
MICR:
Account Number:

Bank: Axis BAnk3
Branch Name: Cox Town Bengaluru
Account Holder: Ragavendra BN
Account Type: Savings
MICR:
Account Number:
   Posted on: 01/17/2009     See contribution details

1158. Remove corners from infobox Request Installation with Paid service
Previous version of boxes.php removed the clickable arrow on infoboxes such as the shopping cart - this has been corrected in this version.
   Posted on: 01/17/2009     See contribution details

1159. UK VAT Summary Request Installation with Paid service
The previous versions of this report, gave inaccurate figures, for instance if an order had been cancelled and not deleted, the figures would appear in the report but not the customer. so you very quickly orders were out of sync with the totals and more importantly totals were wrong. You would end up paying more VAT to HMRC then you needed too.

This new version works perfectly and in addition breaks out the Postage which can be accounted for by Courier our Royal Mail depending on how you account for your postage and if you are liable for VAT on it or not.. Either way this will break it down for you.

Configuration for your site will be needed. Instructions included

Updates

* Correct Calculation of VAT
* Orders Totals Reflect those of Customers ordered
* Separate breakdown for Postage costs / Courier
* Suitable for 15% VAT 2008-2009 With auto update
* removed need for table creation
   Posted on: 01/18/2009     See contribution details
Displaying 1036 to 1044 (of 1445 contributions) Result Pages: [<< Prev]  ... 111  112  113  114  115  116  117  118  119  120 ...  [Next >>]