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 271 to 279 (of 1445 contributions) Result Pages: [<< Prev]  ... 31  32  33  34  35  36  37  38  39  40 ...  [Next >>] 
301. IWSmile credit cards gateway Request Installation with Paid service
Hi All.

The Old Version is not correct.

Doesnt pass the correct amount value to the Credit Card Processor.

It miss to pass useful information as FIRST NAME, last name and email

It is not possible to pass the Order_Id. OS commerce calculate Order_Id, after returning back from Credit Card Processor
IW Smile / IW Bank credit cards Italian gateway payment for OSC.

http://www.iwsmile.it

Italian and English languages included.
   Posted on: 11/24/2008     See contribution details

302. Randomize Anywhere Request Installation with Paid service
This is a slightly modified Version of V.1.1 .
There are shown all products from the database randomly, but they have to be on "ACTIVE" STATUS.
Moreover, the prices are shown now INCLUDING TAX.
All the credits go to Patrick for inventing this contrib and to Tooltime from the German board for coding my ideas. Thank you, guys! ;-)
   Posted on: 09/08/2009     See contribution details

303. Credit Class & Gift Voucher Request Installation with Paid service
catalog/checkout_process.php

@line 73
find:

if ( ( is_array($payment_modules->modules) && (sizeof($payment_modules->modules) > 1) && !is_object($$payment) ) || (is_object($$payment) && ($$payment->enabled == false)) ) {
tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . urlencode(ERROR_NO_PAYMENT_MODULE_SELECTED), 'SSL'));
}

replace with:

if ( ( is_array($payment_modules->modules) && (sizeof($payment_modules->modules) > 1) && !is_object($$payment) && (!$credit_covers) ) || (is_object($$payment) && ($$payment->enabled == false)) ) {
tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . urlencode(ERROR_NO_PAYMENT_MODULE_SELECTED), 'SSL'));
}

2 days of work to undestand it!
Enjoy!

fix payment problem!
*Sorry. Forgot some files in last upload. This is the full package.

When installing on a fresh install of RC2a, the following errors occur in admin section:

errors on admin/coupon_admin.php
Warning: mysql_num_rows(): supplied argument is not a valid MySQL result resource in /gearupaz/public_html/admin/includes/functions/database.php on line 107

errors on admin/gv_mail.php:
Warning: mysql_insert_id(): supplied argument is not a valid MySQL-Link resource in /gearupaz/public_html/admin/includes/functions/database.php on line 117

Warning: Cannot modify header information - headers already sent by (output started at /gearupaz/public_html/admin/includes/functions/database.php:117) in /gearupaz/public_html/admin/includes/functions/general.php on line 22

This is a fix for the CCGV (Contibution 282) where certain database.php errors and other problems are happening with the admin side.

This is a full package for new installation, where the previous package caused some problems for new (drop-in) installations.

*Built onto version 5.21
*Credit for these solutions goes to original contributors and forum users.

Fix gv_mail.php error:
On line 64 replace:
$insert_id = tep_db_insert_id($insert_query);
with:
$insert_id = tep_db_insert_id();

Fix coupon_admin.php (under case: voucherreport, lines:227-230)
replace:
$cc_query_raw = "select * from " . TABLE_COUPON_REDEEM_TRACK . " where coupon_id = '" . (int)$coupon_id . "'";
$cc_query_numrows = tep_db_num_rows($cc_query);
$cc_split = new splitPageResults($HTTP_GET_VARS['page'], MAX_DISPLAY_SEARCH_RESULTS, $cc_query_raw, $cc_query_numrows);
$cc_query = tep_db_query($cc_query_raw);
with:
$cc_query_raw = "select * from " . TABLE_COUPON_REDEEM_TRACK . " where coupon_id = '" . (int)$coupon_id . "'";
$cc_query = tep_db_query($cc_query_raw);
$cc_query_numrows = tep_db_num_rows($cc_query);
$cc_split = new splitPageResults($HTTP_GET_VARS['page'], MAX_DISPLAY_SEARCH_RESULTS, $cc_query_raw, $cc_query_numrows);

*Thanks OSC community for all efforts and making one of the most practical contributions a possibility.
Upgrading from 5.19 to 5.21 broke several of my payment methods. The
problem happens in includes/classes/payment.php. To fix it, find the
OLD line and replace it with the NEW line.


OLD:
if (defined('MODULE_PAYMENT_INSTALLED') && tep_not_null(MODULE_PAYMENT_INSTALLED) && !$module == 'credit_covers') {


NEW:
if (defined('MODULE_PAYMENT_INSTALLED') && tep_not_null(MODULE_PAYMENT_INSTALLED) && $module != 'credit_covers') {
1) Remove illogical condition.

file: catalog/checkout_payment.php

line: if (MODULE_ORDER_TOTAL_INSTALLED)

action: remove this line

2) Add missing constant.

file: catalog/includes/languages/add_ccgvdc_english.php

line: define('ERROR_NO_ACCOUNT_GV', 'You must sign in to your account to
redeem a Gift Certificate');

action: add this line
When changing the coupon status from Active to Inactive the Dropdown Status form field auto sets to Active Coupons.
This makes the Inactive Coupons invisible. If you want to see the Red Active and the Green Inactive status when changing statused then simlpy follow the these instructions:
Enjoy

in catalog/admin/coupon_admin.php

find:

if ($HTTP_GET_VARS['status']) {
$status = tep_db_prepare_input($HTTP_GET_VARS['status']);
} else {
$status = 'Y';
}

Replase with:

if ($HTTP_GET_VARS['status']) {
$status = tep_db_prepare_input($HTTP_GET_VARS['status']);
} else {
$status = '*';
}
The fix did not show correctly in the description in my last submission - it is in the downloaded file
In checkout_payment.php, if your tables become lop-sided here is the fault.

search for directly below the <!-- body_text //-->:

<?php
// Start - CREDIT CLASS Gift Voucher Contribution
// <td width="100%" valign="top"><?php echo tep_draw_form('checkout_payment', tep_href_link(FILENAME_CHECKOUT_CONFIRMATION, '', 'SSL'), 'post', 'onsubmit="return check_form();"'); ?><table border="0" width="100%" cellspacing="0" cellpadding="0">
<td width="100%" valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="0">
<?php /* End - CREDIT CLASS Gift Voucher Contribution */ ?>

replace with:

<?php
// Start - CREDIT CLASS Gift Voucher Contribution
// <td width="100%" valign="top"><?php echo tep_draw_form('checkout_payment', tep_href_link(FILENAME_CHECKOUT_CONFIRMATION, '', 'SSL'), 'post', 'onsubmit="return check_form();"'); ?>
<td width="100%" valign="top"><table border="0" width="100%" cellspacing="0" cellpadding="0">
<?php /* End - CREDIT CLASS Gift Voucher Contribution */ ?>


no file attached, it is simply a table in the wrong spot
patch of the difference between 5.20_1 and 5.20_2 included in package

Full package
Credit Class and Gift Voucher/Coupon V5.20 contribution for osCommerce RC2/RC2a

Includes all fixes up to June 18 2008.


Fixed a typo error. only one file changed - but this is a FULL package

Feel free to give feed back!

The NEW Paypal has NOT been tested (paypal_standard.php - only). Other older versions have been depreciated - grab and old file if you still want it.

Feel free to give feed back!
Credit Class and Gift Voucher/Coupon V5.20 contribution for osCommerce RC2/RC2a

Includes all fixes up to June 18 2008.

Cleaned up files - coded and formatted to OSC standards - properly marked all changes with the same type of comment.

The NEW Paypal has NOT been tested (paypal_standard.php - only). Other older versions have been depreciated - grab and old file if you still want it.

Feel free to give feed back!
   Posted on: 10/13/2008     See contribution details

304. [TiM's osC Modules] Payer Sweden AB Request Installation with Paid service
2008-10-15
+ Meddelande om säker överföring för order_confirmation.php.

2008-10-15
+ Stöd för egen titel och beskrivning för metodval i språkfilen.
   Posted on: 10/15/2008     See contribution details

305. Dynamic Image Resizing Request Installation with Paid service
i've just add the code for homothetie image

source : http://www.oscommerce-fr.info/faq/qa_info.php?qID=57

++
Presenting product images in your store is always a nightmare with osCommerce. You upload your image to your store only to find it has been resized and looks awful. Our Resize module solves this problem by dynamically resizing your product images to a more suitable size.

Once generated, the image is then displayed to the user and cached for future use. The advantage of this method is you use less bandwidth and your images always appear clean and clear.

With our module you can:

*
Upload a single high quality image and have it resized on different page types
*
Customise the output size using the osCommerce admin site
*
Enhance the enlarge image display

Source: http://www.gocreations.co.uk
   Posted on: 07/13/2009     See contribution details

306. osC_MySQL_admin 1.0b Request Installation with Paid service
It's a small, but usefull modification - adjusting to osCommerce file structure.

So it will be better and more comfortable :)
great contrib, just one typo in install file

OPEN /catalog/admin/includes/filenames.php
ADD before the closing ?>
define('FILENAME_MYSQLADMIN', 'mysaladmin.php');

should be

OPEN /catalog/admin/includes/filenames.php
ADD before the closing ?>
define('FILENAME_MYSQLADMIN', 'mysqladmin.php');
Not much to say FULL package.
First of all this isnt a real "Addon" but more a quick way to get MySQL admin functions in to osCommerce..

Are you tired of not having remote access to your db ?
Are you tired of having to login to like Plesk and use myphpadmin to admin your db ?

Well here is a quick way to get it all in osCommerce you dont even have to use osCommerce to use it.

No need for comments about me using iframes in this mod since its in admin, SEO and such isnt a problem they shouldnt be in the admin pages anyway ;-)

If it dont work for you or if you have questions please send mail to lasuppnu@hotmail.com

As a side note since this is my first "contrib" WHY on earth cant we post the contrib as rar??? Sigh..
   Posted on: 08/24/2009     See contribution details

307. [TiM's osC Modules] Samport - Kortbetalning Request Installation with Paid service
+ Stöd för ikoner.
   Posted on: 09/05/2009     See contribution details

308. Enlarge Prod-Pic with SWF Request Installation with Paid service
...with this Contrib the customer can enlarge the Product Pics with the Mouse. Fla-Source within. Don`t hasitate to expand the functions...
   Posted on: 09/07/2009     See contribution details

309. Contribution Tracker Request Installation with Paid service
Version 1.7.17
Revised installation instructions - rsscache directory no longer used
+ Rewrote XML parser - no longer uses rdf_class.php
+ Rewrote RDF file handling code - no longer caches feed in contrib_rss.php, works with PHP5 as if cURL is available
+ Revised email notification now only reports once per update, not every time the cron job is executed
+ three files no longer needed:
/catalog/includes/classes/rdf_file.php
/catalog/includes/functions/contrib_tracker.php
/admin/includes/classes/rdf_file.php

Full package upload

Support link: http://forums.oscommerce.com/index.php?showtopic=247157
Changes made in rdf_class.php and installation instructions

+ Fixed the Warning-Message by editing Line 344 in rdf_class.php
+ better sort ordered to the Installinstructions.
Version 1.7.15
Changes to catalog/contrib_tracker.php:
+ Fixed detection/creation of local cache file for servers where DIR_FS_CATALOG != DIR_WS_CATALOG
+ Made the HTML output compliant with the HTML 4.01 DTD
+ Cleaned up the email notification option.

Full package upload

Support link: http://forums.oscommerce.com/index.php?showtopic=247157
Version 1.7.14
+ Several bug fixes in insert routine for correct processing of non-osCommerce support site contributions
+ date added can now be edited
+ clears sID on page change
+ Fixed bug in function old_to_new_url() that caused a crash
+ Created new 'check all' buttons in both English and Danish
+ Includes Danish language file contributed by TheExterminator

Full package upload

Support link: http://forums.oscommerce.com/index.php?showtopic=247157
+ Have make a danish translate
+ have add a danish check_all button
+ When adding a new contrib date added and last official update were getting mixed up
+ changed a couple of variables so they are more obvious
+ Quick Add now searches for a support topic and inserts it into the database
+ Insert now adds support topic if user didn't provide one and one exists in the contribution description
+ Quick Add and Insert no longer add duplicate records
+ toggleDivBlock() now uses the code from osC 2.2RC2a
+ Extensive use of tep_get_all_get_params() to preserve parameters - no longer loses sort order on updates
+ Fixed two minor HTML errors that occurred with empty searches and an empty contrib_tracker table
+ Clicking anywhere on a row in the table of contributions will select it
+ Fixed the operation of the manual check button (manualcheckall worked; manualcheck didn't)
Version 1.7.8
+ Changed config update to use key LAST_CONFIG_CHECK instead of raw configuration_id, which is installation dependent
Removed old step 9 from installation instructions and moved succeeding steps up.
+ Fixed Quick Add so it works with contributions with apostrophes in their titles
+ Rebuilt all tables in body text to ensure correct HTML structure under all conditions
+ Re-created missing Javascript function toggleDivBlk() to make "info" links work in editor
+ Modified logic to suppress search, quick add, and last update boxes in edit and preview modes
+ Escaped a ton of ampersands to "&amp;" for HTML 4.01 Transitional DTD conformance
+ (Note that some modes still generate non-conforming HTML due to minor bugs in osC functions tep_draw_form() and tep_draw_textarea_field() )
+ Cleaned up some text in the English language file

Full package upload (Danish language file will need minor updates)
THANK YOU to mmph for the following bug reports and fixes.
+ catalog/includes/functions/contrib_tracker.php and the catalog/admin/includes/functions/contrib_tracker.php files need to be swapped with each other.
+ fixed the sql file
+ clarified step 9 in install document
+ fixed a problem when editing a contrib, the created date and last updated date was not filling in.
Simple update


Full Package + update guides
+ added a check all contrib pages for updates button. This may take a couple of minutes it is far better to just let contrib tracker monitor the rss feed. But I have a test shop on a local server that doesn't always get updated regularly, thus my contribs don't show when they needed to be updated. Maybe if your server goes down or you move your shop and it is down for awhile, you would need this. I recommend you use this sparingly to avoid bogging the oscommerce server.
+ rename added .txt extension to history, install, and update guides names
+ renamed some update guides to sort correctly


Full Package + update guides
+ FIXED: when editing a contrib, the support url is lost.
+ FIXED: when clicking the contribs name to go to it's page the contrib tracker page wen tto the edit page
+ fixed some some code that was not correctly handling dates when checking for updates when adding a contrib
+ fixed: when editing last updated and added dates were missing
+ fixed bug that didn't allow inserting a contrib.
+ increased memory for reading rss file

Full Package + Update Guides
The current versions are unuseable. Please use v1.7 until further notice.
Added a field and button for support thread urls.
Fixed sql query as suggested by carry_g

Full Package+update guides
If date status change is now defunct, it should be removed from the sql command:

INSERT INTO contrib_tracker (contr_id, contrib_osc_id, contrib_name,contrib_link, config_comments, status, date_status_change, note_created, contr_last_modified, last_update,contrib_vers) VALUES ('','4815','Contribution Tracker Now Installed','http://addons.oscommerce.com/info/4815', 'Congratulations! Contribution Tracker now installed! You may now delete this Contribution or use it to play around with and get the feel of your new osC contribution.', 1, '0000-00-00 00:00:00', '2005-04-15 12:55:45', '2005-04-15 12:55:45', '2005-04-15','1.6.6e');

Full package with correction.
One instruction missing in sql left out the date_status_change, added to sql file, rezipped FULL PACKAGE included. Still has issue reading Who's Online though, where 's throws error.

Here is command to issue if you already installed files below - without this you cannot click Green/Red lights manually.

ALTER TABLE `contrib_tracker` ADD `date_status_change` DATETIME NOT NULL DEFAULT '0000-00-00 00:00:00' AFTER `config_comments` ;
I saw another contrib that tracks contributions and liked some of the features. It checks the actual page that the contrib is on by id #. For me I thought that is alot of pages to always be checking, but once in awhile and when you add a contrib it seemed great. You now add the contrib by it's id# and the EXACT title will be retrieved as well as the latest versions date. I also added a new button for a manual update which connects to the pages and checks for updates, in case your shop was down or your server or whatever reason the rss feed was unreachable.


+ fixed a potential bug when entering dates
+ added a today checkbox to date added to store
+ cleaned up some code
+ added success and error messages
+ added a quick add box
+ when updating a contrib the old add-ons URL will be automatically be changed to the new add-ons URL
+ changed some variables that were not clear as to what they were(mostly date related) for easier future identification
+added a check to manually update a contrib from it's oscommerce add ons page. This maybe useful if your server goes down you move shop locations, don't have a way to cron your contribs, the rss feed is probably the better way to go but if you need it it is there. I am not sure but this should probably be used sparingly as it probably eats up osc's bandwidth as where the rss feed is meant for being constantly checked.
+ deleted a useless database table

FULL PACKAGE + update guide
   Posted on: 09/10/2008     See contribution details
Displaying 271 to 279 (of 1445 contributions) Result Pages: [<< Prev]  ... 31  32  33  34  35  36  37  38  39  40 ...  [Next >>]