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 478 to 486 (of 1445 contributions) Result Pages: [<< Prev]  ... 51  52  53  54  55  56  57  58  59  60 ...  [Next >>] 
531. Visual Verify Code (VVC) security Request Installation with Paid service
Re-written instructions, repackaged with all updates and some code changes to make it work on an RC2a store.

All credit to the original author and thanks for the help of those in the forum

Features

The Visual Verify Code (VVC) contribution is an answer to harmful automated scripts that create large numbers of accounts, or repeatedly send emails via "Tell-A-Friend". The system works by displaying some random characters in an image and asking the user to enter the text that they see displayed.

The image is dynamically generated, and the characters are of random sizes and placements. The pool of characters that serve as fodder for the resulting image is user definable.

You can view this contribution running at
http://www.sk8factoryshop.com/contact_us.php

This contribution is provided "AS IS" and no responsibility is taken by any of the authors, previous or current. Use it at your own risk.....


It should take about 20 minutes or less on a modified store. Only a few changes to core files - and nothing major.


BACK UP BACK UP BACK UP

Forum:
http://forums.oscommerce.com/index.php?showtopic=60044


************************
Complete package
   Posted on: 07/22/2009     See contribution details

532. Customer Connection Status Indicator 1.0 Request Installation with Paid service
This contribution is a modified version of "Secure Infobox Contribution" authored by Patrick Veverka on October 10 2002.

This contribution allows you to place a secure lock and unsecure anywhere you wish on your website vs. a box. When a visitor is browsing in http mode the lock with a red circle and white x will appear. When they hover over the link, it explains they are browsing a portion of your website which doesn't require a secure connection. However, if they move to "https" mode, the lock with a green circle and white checkmark will appear.

This contribution isn't revolutioary by any stretch of the imagination; but it does add another layer of confidence in the minds of your customers.

Enjoy - Dave Roberts - daveroberts@mail.com
   Posted on: 07/22/2009     See contribution details

533. Quantity Price Breaks Per Product Request Installation with Paid service
English______

Added Spanish language
Bugs added to catalog/includes/classes/shopping_cart.php by "Sugarsnappy"


Español______

Añadido lenguaje español
Añadidos Bugs en catalog/includes/classes/shopping_cart.php por "Sugarsnappy"
Hi,

In addition:

Also needed to change lines from 122:

// BOF qpbpp
if ($this->in_cart($products_id_string)) {
$this->update_quantity($products_id_string, $qty, $attributes, $discount_category);
} else {
$this->contents[$products_id_string] = array('qty' => (int)$qty, 'discount_categories_id' => $discount_category);
// EOF qpbpp

to include $discount_category_id instead of $discount_category thus:

// BOF qpbpp
if ($this->in_cart($products_id_string)) {
$this->update_quantity($products_id_string, $qty, $attributes, $discount_category_id);
} else {
$this->contents[$products_id_string] = array('qty' => (int)$qty, 'discount_categories_id' => $discount_category_id);
// EOF qpbpp


Following is correct file

The regular expression pattern for the catalog/includes/classes/shopping_cart.php file was Improved.

Autoinstaller 2.14 for Quantity Price Breaks Per Product 1.3.5 by Jan Zonjee (7 Sep 2008)


The Auto Installer script requires PHP 5.2.0
The "Edit Manually" button fixed


Autoinstaller 2.14 for Quantity Price Breaks Per Product 1.3.5 by Jan Zonjee (7 Sep 2008)


The Auto Installer script requires PHP 5.2.0 !

Few lines of code were added to list all the files that should have 777 permissions.

Autoinstaller 2.13 for Quantity Price Breaks Per Product 1.3.5 by Jan Zonjee (7 Sep 2008)


The Auto Installer script requires PHP5 !

Autoinstaller 2.12 for Quantity Price Breaks Per Product 1.3.5 by Jan Zonjee (7 Sep 2008)

The script automatically install the contribution: copy files, edit files, alter database tables.
It saves a backup before any action.

The aim of the script is to speed up the contribution installation.
And to make possible to uninstall it.

You will need to do manually only what the script cannot.


The Auto Installer script requires PHP5 !
There is an error in the install instructions for catalogincludesclassesshopping_cart.php:

Find (around line 110 [around line 119 in edited file]):
if ($this->in_cart($products_id_string)) {
$this->update_quantity($products_id_string, $qty, $attributes);
} else {
$this->contents[$products_id_string] = array('qty' => (int)$qty);

Replace with:

// BOF qpbpp
$products_query = tep_db_query("select cb.products_id, ptdc.discount_categories_id, customers_basket_quantity from " . TABLE_CUSTOMERS_BASKET . " cb left join " . TABLE_PRODUCTS_TO_DISCOUNT_CATEGORIES . " ptdc using(products_id) where customers_id = '" . (int)$customer_id . "'");
while ($products = tep_db_fetch_array($products_query)) {
$this->contents[$products['products_id']] = array('qty' => $products['customers_basket_quantity'], 'discount_categories_id' => $products['discount_categories_id']);
// EOF qpbpp


This is wrong, it SHOULD BE:

// BOF qpbpp
if ($this->in_cart($products_id_string)) {
$this->update_quantity($products_id_string, $qty, $attributes, $discount_categories_id);
} else {
$this->contents[$products_id_string] = array('qty' => (int)$qty, 'discount_categories_id' => $discount_categories_id);
// EOF qpbpp

The change: $products['discount_categories_id'] => $discount_categories_id

This caused different items in same categories not to qualify for quantity price breaks.

The premodified catalogincludesclassesshopping_cart.php (for fresh installs) in the full package is correct and is modified as above--just the instructions file was incorrect.

Nothing attached, just blank file

Sorry for double post, somehow my post was truncated.
No new functionality, just an update of the install.html that had a faulty instruction in admin/categories.php (a Replace with: should have been "Add:") which seems to have caused a lot of confusion.

Also added a bit of explanation on the use of Discount categories.
in the install.html it says
...
Open: catalogadmincategories.php
...
After (around line 384):
} elseif (tep_not_null($HTTP_POST_VARS)) {
$pInfo->objectInfo($HTTP_POST_VARS);

Replace with:
// BOF qpbpp
$price_breaks_array = array();
for ($count = 0; $count <= (PRICE_BREAK_NOF_LEVELS - 1); $count++) {
if(isset($HTTP_POST_VARS['products_price' . $count]) && tep_not_null($HTTP_POST_VARS['products_price' . $count]) &&
isset($HTTP_POST_VARS['products_qty' . $count]) && tep_not_null($HTTP_POST_VARS['products_qty' . $count])) {
$price_breaks_array[] = array(
'products_price' => $HTTP_POST_VARS['products_price' . $count],
'products_qty' => $HTTP_POST_VARS['products_qty' . $count],
'products_delete' => (isset($HTTP_POST_VARS['products_delete' . $count]) && tep_not_null($HTTP_POST_VARS['products_delete' . $count])));
}
}
// EOF qpbpp



acutally it should be
// BOF qpbpp
} elseif (tep_not_null($HTTP_POST_VARS)) {
$price_breaks_array = array();
for ($count = 0; $count <= (PRICE_BREAK_NOF_LEVELS - 1); $count++) {
if(isset($HTTP_POST_VARS['products_price' . $count]) && tep_not_null($HTTP_POST_VARS['products_price' . $count]) &&
isset($HTTP_POST_VARS['products_qty' . $count]) && tep_not_null($HTTP_POST_VARS['products_qty' . $count])) {
$price_breaks_array[] = array(
'products_price' => $HTTP_POST_VARS['products_price' . $count],
'products_qty' => $HTTP_POST_VARS['products_qty' . $count],
'products_delete' => (isset($HTTP_POST_VARS['products_delete' . $count]) && tep_not_null($HTTP_POST_VARS['products_delete' . $count])));
}
}
// EOF qpbpp

that is, the following line should not be delete
} elseif (tep_not_null($HTTP_POST_VARS)) {

otherwise when you EDIT an existing product with price break, the existing price break will be gone :)
   Posted on: 09/06/2008     See contribution details

534. Royal Mail Online Postage Data Transfer (Firefox) Request Installation with Paid service
This is just the new Firefox Extension, compatible with FF 3.5 and upwards. All the rest of the package is the same as v2, which you'll need to download too.
   Posted on: 07/22/2009     See contribution details

535. Linked Products Request Installation with Paid service
New Features:
- Added "Product Types - Products as Options" (with extra features)
- Show Products as Main product
- Show Products as Linked product
- Show Products as Options
- Add Products as Options
- Add Products as Main Product (and "overtake" any matching Options)
- Add Products as Extra Product
- Add Multiple Products (also as Options) (From Linked Listing with checkboxes)
- Added (Linked-) Option Types v2 Compatibility (Also Needed for "Products as Options")
- Added Attribute Manager (with Option Types v2 - Adjusted for Products as Options)
- Various Updates/Bugfixes.

Sorry, but I have no time nor the will to write any half-decent installation- or usermanual.
(outdated user manuals are included in the package)
Let's first see some users before putting any time in that ;)
Updated package with quite extensive Readme for:
- Linked Products
- Product Types
- Product Types - Replace Buttons
(Actual contribution unchanged)
This contribution is built on top of:

* osCommerce 2.2rc2a
* "Product Types" Contribution - (included in installation)
Product Types is used as base, to seperate the Main and Linked products

This allows us to Link Products (and Types) together, and display/use them in various ways:
* When displaying a product with Linked Products, a 2nd (Linked) Product Listing can be displayed.
* When clicking one of the linked products in the 2nd (Linked) Product Listing, a 2nd (Linked) Product Info can be displayed.
* Linking the products can be both ways (Show either product in the other product's Linked Product Listing and Product Info)
Things can also easily be setup to work one way.
* The Products can then be bought seperately, both at the same time, or with checkboxes in the Linked Product Listing
This last option (checkboxes) allows us to add multiple products at the same time (with or without the main product).

Actually, I wrote this contribution after using the contribution "Master Products" for quite a while.
I found "Master Products" to be overly complicated and very difficult to use or merge alongside other contributions.
Using this "Linked Products" contibution together with the "Product Types" contribution,
you'll get a lot of the same functionality as the "Master Products" contribution.

The Support Thread can be found here: http://forums.oscommerce.com/index.php?showtopic=339538
   Posted on: 06/28/2009     See contribution details

536. Ad Tracker (where did they come from?) Request Installation with Paid service
Code provided in Install.txt (Step 4) didn't work for me. I fixed it. Works great with Ultimate Seo Urls 5. It's not a full package, just a code to application_top.php! Enjoy!
Just a "Newbie to newbies" tip :
clickable referer + Limit number of characters displayed
See file.
   Posted on: 07/02/2009     See contribution details

537. Customer Export to CSV - for MYOB Request Installation with Paid service
Version 1.2 - Full Package

- Corrected output from .CSV to .TXT for easier import to MYOB
- Added Usage Instructions to INSTALL document
Customer Export for MYOB Australia v18
This package was written for MYOB v18 but can easily be modified (if at all required) to fit the tabular fields for other MYOB versions.

Features:
- Export customers in CSV format for direct import into MYOB
- Link in the admin pannel to open the exportcustomers.php (in category customer/orders).
- Export customers as they relate to Order numbers - eg export all customers for orders #320-355
- You can leave both fields empty if you want to export all customers or leave one of the fields empty to export all customers for orders FROM X or all orders TO X
   Posted on: 07/20/2009     See contribution details

538. Show Subcategories Only Request Installation with Paid service
I forgot to include which file to edit at the installation instruction.

Please use this instead.

###############Details#################
This addon speaks for itself however id like to give a detailed specification on this.

If subcategory is clicked, it wont show the main categories or if a product is clicked and this product is under a subcategory - it also wont show all the main categories.

Use it at your own risk
   Posted on: 07/21/2009     See contribution details

539. Tikkey Buttons Request Installation with Paid service
Image files in compressed GIF format (with transparency).
Red color buttons with white text.
Free to use.
   Posted on: 07/21/2009     See contribution details
Displaying 478 to 486 (of 1445 contributions) Result Pages: [<< Prev]  ... 51  52  53  54  55  56  57  58  59  60 ...  [Next >>]