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 541 to 549 (of 1445 contributions) Result Pages: [<< Prev]  ... 61  62  63  64  65  66  67  68  69  70 ...  [Next >>] 
601. Attributes Copier Request Installation with Paid service
If you want to copy the attribute of a particular product and add the same attribute to another product through admin this contribution very easily solve your purpose.
   Posted on: 07/07/2009     See contribution details

602. Corrupted character on mysql with utf-8 Request Installation with Paid service
Changes:
I have removed the SET CHARACTER SET line and kept the SET NAMES line and moved it
outside of the if clauses for simplicity.

In catalog/includes/functions/database.php and catalog/admin/includes/functions/database.php,
in the function tep_db_connect(), add the lines
// Added for oscommerce utf-8
mysql_query("SET NAMES 'utf8'");

before the line

return $$link;

Entire function:

function tep_db_connect($server = DB_SERVER, $username = DB_SERVER_USERNAME, $password = DB_SERVER_PASSWORD, $database = DB_DATABASE, $link = 'db_link') {
global $$link;

if (USE_PCONNECT == 'true') {
$$link = mysql_pconnect($server, $username, $password);
} else {
$$link = mysql_connect($server, $username, $password);
}

if ($$link) mysql_select_db($database);

// Added for oscommerce utf-8
mysql_query("SET NAMES 'utf8'");

return $$link;
}

Why I changed it:
It would appear that one should use either one or the other but not both.
Moreover, SET CHARACTER SET is similar to SET NAMES, but sets the connection character set
and collation to be those of the default database rather than the one you specify
which is probably *not* what you want. The way the original (below) was written,
the SET NAMES being second perhaps overrides the other.
I placed the charset in single quotes as shown on the dev.mysql.com site.


Sources :
http://dev.mysql.com/doc/refman/5.0/en/charset-connection.html http://forum.alsacreations.com/topic-17-40579-1-resolu-Chinois-et-base-de-donnees.html
http://wiki.pooteeweet.org/MDB2/CharacterSet
   Posted on: 07/07/2009     See contribution details

603. Extra pages-info box w/ admin Request Installation with Paid service
I have replaced all the <? with <?php in the
adminextra_info_pages.php file.

As some servers treat <? as XML tag which cause error.


This package requires FCKeditor (http://addons.oscommerce.com/info/2900) already installed.
Do not start installation without it.


The Auto Installer script requires PHP 5.2.0

Download the package and view the screenshots of what you will get after the installation

The content of the ep_autoinstaller/index.php file was moved to control.php to make the php version check work.

This package requires FCKeditor (http://addons.oscommerce.com/info/2900) already installed.
Do not start installation without it.


The Auto Installer script requires PHP 5.2.0

Download the package and view the screenshots of what you will get after the installation

The "Edit Manually" button fixed

This package requires FCKeditor (http://addons.oscommerce.com/info/2900) already installed.
Do not start installation without it.


The Auto Installer script requires PHP 5.2.0

Download the package and view the screenshots of what you will get after the installation

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

This package requires FCKeditor (http://addons.oscommerce.com/info/2900) already installed.
Do not start installation without it.


The Auto Installer script requires PHP5

Download the package and view the screenshots of what you will get after the installation

The autoinstaller/index.php file was corrected to use the directory name for the unique session name.


This package requires FCKeditor (http://addons.oscommerce.com/info/2900) already installed.
Do not start installation without it.


The Auto Installer script requires PHP5

Download the package and view the screenshots of what you will get after the installation
This is a new upload of the news_box addon for extra pages infobox with a fix of language bug.

Only change done:
tep_href_link($link)
To:
tep_href_link($link, 'NONSSL')

This fix can also be used for the language problem with links in the information infobox in some versions of Extra pages-info box w/ admin

Or as a better sollution for the fix represented in version 4.6.1
What this does is put an infobox in the right or left column that shows the title and content of one of your infopages - you can change which one.

I use it as a latest news box

The title of your infopage will be shown in the head of the infobox, and a part of the text will be shown in the content area of the infobox. The text links to the infopage.

screen shot included
   Posted on: 10/04/2008     See contribution details

604. Monthly Sales Graph and CSV file Request Installation with Paid service
Made a few changes
- Add Graphic factor 1, for small values of sales
- Add button translation (was on HTML Code)
- Portuguese translations added
- All translations in one package (EN, PT, DE)

____________
Pequenas alterações realizadas:
- Adicionado o factor 1, para valores de vendas pequenos
- Adicionado a opção de tradução ao texto do botão (estava no código HTML)
- Adicionado a tradução em Português
- Criado um único pacote com as línguas EN, PT, DE

Instruções em português para a instalação

Habe noch einen Fehler behoben, der dazu geführt hat, dass der Name falsch angezeigt wird.
   Posted on: 01/29/2009     See contribution details

605. Add Multiple Products Request Installation with Paid service
Same great contribution. I just added Plus/Minus javascript button to make it more user friendly.
updated file with two corrections
This contribution is a simplified version of the Add Multiple Products mod
It allows customers to add multiple quantities of listed products with one Add To Cart button.
It differs from the original mod in that it makes the smallest changes possible on product_listing.php to
take into account the many different modified versions of that page someone might have.
Multiple product adding processing code in application_top.php is same as original mod.
   Posted on: 06/10/2009     See contribution details

606. TrustCommerce Payment Module Request Installation with Paid service
Adds support for CID of 4 digits in length. Seperates DDL changes from data entry changes for ease of deployment. Adds a workaround for MySQL default values for stored procedures on datetime.
   Posted on: 07/06/2009     See contribution details

607. WorldNet TPS Payment Module Request Installation with Paid service
Provides secure online payment through the WorldNet TPS gateway.

Version 1.5 fixes a small issue when processing large value transactions.
Provides secure online payment through the WorldNet TPS gateway.

Version 1.4 supports up to two transaction currencies
Fixed order id generation
   Posted on: 04/08/2009     See contribution details

608. SSL Help Request Installation with Paid service
Minor improvements

Full package

Support thread:
http://forums.oscommerce.com/index.php?showtopic=334107
Changes to all files.

Complete package.

Support thread:

http://forums.oscommerce.com/index.php?showtopic=334107
Minor edits to myenv.php and mybigenv.php

Full package.
Added version number to files.

Added unsecure.php to help find "unsecure" items on SSL pages.

Support thread:

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

Full package.
Utilities to help debug SSL installation on your osC 2.x Store.
   Posted on: 04/16/2009     See contribution details

609. VAT_NUMBER Request Installation with Paid service
Forgot to add a line in pacage:
// Vat Address Field mod:
$vat_number = tep_db_prepare_input($HTTP_POST_VARS['vat_number']);
// :Vat Address Field mod

to address_book_process.php
This contribution lets you add extra field called vat number and placed under company name..

I make this Contribution becouse VAT identify number company is requested for billing and shipping in EU.

With this contribute use Order Editor 5.0.6.6 and Home or Business Customer
Screenshots included
   Posted on: 06/24/2009     See contribution details
Displaying 541 to 549 (of 1445 contributions) Result Pages: [<< Prev]  ... 61  62  63  64  65  66  67  68  69  70 ...  [Next >>]