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 361 to 369 (of 1445 contributions) Result Pages: [<< Prev]  ... 41  42  43  44  45  46  47  48  49  50 ...  [Next >>] 
401. Customer with no purchases Request Installation with Paid service
Two missing function calls in the original post have been added to the end of the stats_register_customer_no_purchase.php - the only file in this download

These are not standard in adminincludesfunctionsgeneral.php
tep_customers_join_date()
tep_customers_lname()
customer who have register but not purchase yet, within date range(join date), pagination facility as well
   Posted on: 02/27/2009     See contribution details

402. osCommerce 3.0 alfa 5 full hungarian Request Installation with Paid service
Magyar elnevezések dinamikus csomagja 1.0 az Osc3.05a verzióhoz.

A név csomag felcseréli a Kereszt- és Vezetékneveket a magyar szabványnak megfelel&#337;en:

Vezetéknév és Keresztnév

Az osc3hu mappa tartalmát egyszer&#369;en másoljuk be. Amennyiben visza szeretnénk állítani,
akkor az osc3hu_reset csomagot másoljuk be.


Megjegyzés:


Az alábbi magyarítás nem alapul XML vagy egyéb PHP nyelvi fájlon. A változtatás a vázon történt.

A változtatás az alap sablon fájlokat is érinti, ami új sablon telepítése esetén kikapcsol.
Szükség szerint azt is "Magyarítani" kell.


A névhasználat jelenleg teszt verzió. A legjellemz&#337;bb funkciókra m&#369;ködik.


Fórum: http://forums.oscommerce.com/index.php?showtopic=341653
Only patch!

1. Delete before import hu_HU.xml file
Töröld a nyelv telepítése elött az alábbi fájlt.

includeslanguageshu_HUimagesbuttonsempty_buttonshu_HU.xml

2. unzip files (overwrite) from catalog.zip
Tömörítsd ki a mellékletet és írd felül a régi fájlokat

forum: http://forums.oscommerce.com/index.php?showtopic=341653
   Posted on: 07/29/2009     See contribution details

403. better default template 1.0 Request Installation with Paid service
better default template

contains:

for burned english words
- language extensions
- fixed bugs for variables

and recently_visited burned english "result" bug fix

Note: be carefull! Only a file replacing for English, but it contains Hungarian language too.
   Posted on: 08/20/2009     See contribution details

404. osCommerce PayPal IPN Module v1.0 For 2.2MS2 Request Installation with Paid service
kein Voll-Update.
Nur 2 Dateien zum Austauschen.
Benötigt wird paypal_ipn_3.0.1

not a full update.
Only 2 files to replace.
Needed is paypal_ipn_3.0.1
This is a quick-and-dirty fix to a bug that causes the user to be returned (after paying with PayPal IPN) to the shopping cart with items marked as unavailable rather than the checkout_success page.

This occurs if all of the following conditions are met:
1. Their order (or another order that took place in the meantime) causes any of the products to go out of stock.
2. Stock Checking is turned on.
3. An IPN has been received with payment_status == 'Complete' before the user returns to the store

It may happen in other conditions as well.


In catalog/checkout_process.php find the lines (approx line 56):


// Stock Check
$any_out_of_stock = false;
if (STOCK_CHECK == 'true') {


and change to:

// Stock Check
$any_out_of_stock = false;
if (STOCK_CHECK == 'true' && !tep_not_null($_GET['payment_status'])) {


This bypasses the stock check when the user has been sent to the checkout_process page by PayPal.

As I said, this is quick-and-dirty. Hopefully a cleaner fix can be rolled into the next release of the PayPal IPN contribution.
this fixes a bug where the temp "working" directory likes to delete itself on some servers.

goto paypal_ipn.php in /catalog/includes/modules/payment/

around line 542 find the 1st fopen for the working directory and add this BEFORE it:

if (!file_exists(MODULE_PAYMENT_PAYPAL_IPN_EWP_WORKING_DIRECTORY)) {
mkdir(MODULE_PAYMENT_PAYPAL_IPN_EWP_WORKING_DIRECTORY, 0755);
}


just a check to see if the temp working directory exists 1st, and if it doesnt then it creates it.



the attachment is a fake file. dont download it.

There is a bug if you use Price Sensitive Discount with PayPal IPN.
http://www.oscommerce.com/community/contributions,204

The final price not include discount.

To resolve this problem, you must made this modification.
Attached file shows how to add support for "Payment Type Surcharge". This surcharge is included on subtotal. "Payment Type Surcharge" must be configured to match settings with "PayPal IPN Module" (for example,show taxes and other things like that).
Hi, ich habe das mal etwas für Deutsche abgeändert.
man bekommt jetzt immer eine Mail, ob der Kunde über Paypal bezahlt oder nicht. Geht der Kunde von Paypal zurück zum Shop und wählt eine andere Zahlweise, gibt es eine neue Bestellung. In der Bestellung mit Paypal steht dann das nicht gezahlt wurde. Auch stellt das Contrib die Bestellung wieder auf Offen, wenn man eine Rückzahlung über Paypal macht.

Bei mir funktioniert das ohne Probleme.

Installation wie gehabt.
Alles in catalog Verzeichnis und dann im Admin Installieren. Fertig.
Since 2.3.4.x
--------------
Bug fix - added the order number not passed on bug to the fileset
Feature - added the delete order from database if order is cancelled and customer is returned to store
Updated readme "Installation" section and "Troubleshooting" section

Scott
This is a fix which updates the status always after receiving an IPN notification (for register_globals OFF or ON) .

For all versions :

Find in catalog/includes/modules/payment/paypal_ipn.php


tep_session_register('cart_PayPal_IPN_ID');
// Terra register globals fix
//$_SESSION['cart_PayPal_IPN_ID'] = $cartID . '-' . $insert_id;


Replace with

// FS start
$GLOBALS['cart_PayPal_IPN_ID'] = $cartID . '-' . $insert_id;
// FS stop
tep_session_register('cart_PayPal_IPN_ID');
// FS start
// Terra register globals fix
//$_SESSION['cart_PayPal_IPN_ID'] = $cartID . '-' . $insert_id;
// FS stop

The problem : $cart_PayPal_IPN_ID was not always a global (e.g. between functions confirmation and process_button.

Only this text included !
   Posted on: 12/29/2008     See contribution details

405. Master Password v1.0 Request Installation with Paid service
for the MD5 mod only

If you use the master password, it changes the customer's "last login" details. If you only want these changes when the actual customer logs in, then this simple mod will skip the update when you log in using your master password
   Posted on: 08/19/2009     See contribution details

406. Registry Request Installation with Paid service
I've noticed that others have been requesting this to be built for RC2a and I needed it as well. So, over the last few days, I took the time to port the latest release of this script to be compatible with RC2a. It's been fully tested to work and minimum modifications were made to enhance the cosmetic feel of the program. I tried to keep it the same for the most part.

Thanks again guys for the great original script!

Annie Smith
   Posted on: 08/19/2009     See contribution details

407. Viitenumero Finland Request Installation with Paid service
Viitenumero_Finland v.1.0
================================
rogerpe - rogerpe@gmail.com

SHORT IN ENGLISH:

This is a finnish payment module that creates a finnish reference number. ONLY FOR FINNISH WEBSHOPS

Joo, hommahan on se, että viitenumero piti välttämättä saada omaan kauppaan ja etsimällä en löytänyt mitään kunnollista
toteutusta sellaisen toteuttamiseen suomalaiseen tapaan (satunnaiset numerot + tarkistenumero) jonka piti olla oikean
pituinen. Lisäksi mysql:ään ei voinut laittaa yli 11 merkkiä ilman mittavaa koodin muokkausta oscommercen puolella.

Tiedoksi, että olen surkea php:ssä ja tämä on vain (toimiva) purkkaviritys ja sitä saa mielellään jatkokehittää. Mallia
olen ottanut unique_order_numberista ja viitenumeron laskenta täältä http://www.ohjelmointiputka.net/keskustelu/aihe.php?tunnus=17318&v=135944

Viitenumero-maininta on myös hyvä muokata kielitiedostoihin.

====================
TOIMINTAPERIAATE
====================

Tilausnumero muuttuu kuusinumeroiseksi koodiksi, jossa ensimmäiset 5 numeroa ovat satunnaisia ja sitten on vielä tarkistenumero. Lopputulos on virallinen viitenumero jota voidaan käyttää suomalaisten
pankkien maksuissa. Ongelmiahan tässä löytyy esim. se ettei tarkisteta, onko viitenumero jo olemassa.
   Posted on: 08/19/2009     See contribution details

408. Form Auto Selector v1.0 Request Installation with Paid service
Auto Selector detects the visitor's physical location automatically. It will fill up user registration forms and shipping forms based on the visitor's origin. Fields supported by this module include Post Code, City, State/Province, Country, and Area Code. This will accelerate the purchasing process and provide a more user-friendly interface for users.
   Posted on: 08/19/2009     See contribution details

409. Credit Card Fraud Prevention v1.0 Request Installation with Paid service
Credit Card Fraud Prevention helps to detect credit card fraud for your online payment. This module can automatically detects possible fraud by validate data sent by customer using FraudLabs Web service. You can review customer order in administrator area with additional information to verify your online transaction. FraudLabs can tells customer real location, distance from billing address, their ISP, bank name, bank telephone number, determines free email and anonymous proxies. Meanwhile, Fraud Score is provided to predict the possibilities of fraud in a transaction.
   Posted on: 08/19/2009     See contribution details
Displaying 361 to 369 (of 1445 contributions) Result Pages: [<< Prev]  ... 41  42  43  44  45  46  47  48  49  50 ...  [Next >>]