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

  QTpro v1.0 - Quantity Tracking Professional

The following osCommerce contribution is a 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.
QTPro v4.6.1 - osC RC2a PayPal Standard integration v1.1

Only the /catalog/includes/modules/payment/paypal_standard.php file is included in this archive.

Updates:

+ Small bug was fixed that caused an additional record to be created in
the orders_products table instead of updating the existing record.
I have added the add weight to product attributes (http://www.oscommerce.com/community/contributions,1622) changed a few of the files in QTPro all is listed in install.txt

Is idea if you have different sizes of the same product and want to charge different postal rates on weight.

Hope this helps a few of you out,spent the night looking for this so decided to do it myself.

All I did was change some of the text in the files and organise the files, all credit must go to the guys who made both scripts.

Feel free to email me at phil@vtrdesign.co.uk if you have any questions.
English_______

Unified file config.sql and in a new_install.sql

Español______

Unificado el fichero config.sql y el new_install.sql en uno
Llinks to screenshots were corrected in the Manual.htm file.

Autoinstaller 2.14 for Quantity Tracking Professional v4.51b by Olof Larsson (26 Oct 2008)

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 qp_autoinstaller/index.php file was moved to control.php to make the php version check work.

Autoinstaller 2.14 for Quantity Tracking Professional v4.51b by Olof Larsson (26 Oct 2008)

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

Autoinstaller 2.14 for Quantity Tracking Professional v4.51b by Olof Larsson (26 Oct 2008)

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.

Autoinstaller 2.13 for Quantity Tracking Professional v4.51b by Olof Larsson (26 Oct 2008)

The Auto Installer script requires PHP5 !

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

Autoinstaller 2.12 for Quantity Tracking Professional v4.51b by Olof Larsson (26 Oct 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 !

Download the package and view the screenshots of what you will get after the installation.
Authors: "Olof Larsson".
Bug reporters: "escri2".
Integration paypal_standard: "surfalot".
New in this version:

* Small fix: More detailed path to qtpro_functions.php in general.php
* Integration QT Pro in catalog/includes/modules/payment/paypal_standard.php
Hat man auf einer Datenbank mehrere Shops (mit Prefix) bekommt man Probleme, da ein Teil von stock.php hardcodet ist:

find:
$q=tep_db_query($sql="select products_name,products_options_name as _option,products_attributes.options_id as _option_id,products_options_values_name as _value,products_attributes.options_values_id as _value_id from ".
"products_description, products_attributes,products_options,products_options_values where ".
"products_attributes.products_id=products_description.products_id and ".
"products_attributes.products_id=" . (int)$VARS['product_id'] . " and ".
"products_attributes.options_id=products_options.products_options_id and ".
"products_attributes.options_values_id=products_options_values.products_options_values_id and ".
"products_description.language_id=" . (int)$languages_id . " and ".
"products_options_values.language_id=" . (int)$languages_id . " and products_options.products_options_track_stock=1 and ".
"products_options.language_id=" . (int)$languages_id . " order by products_attributes.options_id, products_attributes.options_values_id");
//list($product_name,$option_name,$option_id,$value,$value_id)


correct :
$q=tep_db_query($sql="select products_name,products_options_name as _option,".TABLE_PRODUCTS_ATTRIBUTES.".options_id as _option_id,products_options_values_name as _value,".TABLE_PRODUCTS_ATTRIBUTES.".options_values_id as _value_id
from ".TABLE_PRODUCTS_DESCRIPTION.",". TABLE_PRODUCTS_ATTRIBUTES.",".TABLE_PRODUCTS_OPTIONS.",".TABLE_PRODUCTS_OPTIONS_VALUES."
where ".TABLE_PRODUCTS_ATTRIBUTES.".products_id = ".TABLE_PRODUCTS_DESCRIPTION.".products_id
and ".TABLE_PRODUCTS_ATTRIBUTES.".products_id =" . (int)$VARS['product_id'] . "
and ".TABLE_PRODUCTS_ATTRIBUTES.".options_id = ".TABLE_PRODUCTS_OPTIONS.".products_options_id
and ".TABLE_PRODUCTS_ATTRIBUTES.".options_values_id = ".TABLE_PRODUCTS_OPTIONS_VALUES.".products_options_values_id
and ".TABLE_PRODUCTS_DESCRIPTION.".language_id=" . (int)$languages_id . "
and ".TABLE_PRODUCTS_OPTIONS_VALUES.".language_id=" . (int)$languages_id . "
and ".TABLE_PRODUCTS_OPTIONS.".products_options_track_stock=1
and ".TABLE_PRODUCTS_OPTIONS.".language_id=" . (int)$languages_id . "
order by ".TABLE_PRODUCTS_ATTRIBUTES.".options_id, ".TABLE_PRODUCTS_ATTRIBUTES.".options_values_id");
//list($product_name,$option_name,$option_id,$value,$value_id)
RC2a PayPal Standard integration for QTPro v4.51b.

Only the /catalog/includes/modules/payment/paypal_standard.php file is included in this archive.
Version 4.51b

Authors: "Olof Larsson".
Bug reporters: "escri2".
New in this version:

* Small fix: More detailed path to qtpro_functions.php in general.php
Some stores have a high product turnover rates with lots of products disabled.

QT Pro doesn't account for this issue and can be a nuisance when checking stock for active products.

To fix this simply change
$prod_query = tep_db_query("SELECT products_id FROM " . TABLE_PRODUCTS);

To:
$prod_query = tep_db_query("SELECT products_id FROM " . TABLE_PRODUCTS . " where products_status = '1'");

in admin/includes/functions/qtpro_functions.php

And in
admin/stats_low_stock_attrib.php
add products_status = '1' somewhere after the sql where clause on line 101.

I'm still new to the code so there might be other files that need this change.
In admin/includes/functions/general.php set

//++++ QT Pro: Begin Changed code
require('qtpro_functions.php');
//++++ QT Pro: End Changed code


by


//++++ QT Pro: Begin Changed code
require(DIR_WS_FUNCTIONS . 'qtpro_functions.php');
//++++ QT Pro: End Changed code

on line 1597 aprox
New in this version:

Bugfix: The "stock table" and "Actual Price Pull Downs" in products_description.php will now handle specials correct. Previously the special price was not considered and the original price was used instead.
New in this version:

* The QTPro Doctor will now inform you about any sick products when entering the admin panel.
   Posted on: 08/02/2008     See contribution details Request Installation with Paid service