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 1081 to 1089 (of 1445 contributions) Result Pages: [<< Prev]  ... 121  122  123  124  125  126  127  128  129  130 ...  [Next >>] 
1201. customers stats orders Request Installation with Paid service
Fixes all bug, including division by zero in TOTAL and AVERAGE BASKET.

Spanish translation has been edited, too.
Just replace (near line 166)

$tot_HT = ($tot_sale['total']-$tot_shipping['total'])*(1-($tot_taxes['total']/$tot_sale['total']));

by

if($tot_sale['total'] == 0){
$tot_HT = 0;
$tot_sale['total'] = 0;
}else{
$tot_HT = ($tot_sale['total']-$tot_shipping['total'])*(1-($tot_taxes['total']/$tot_sale['total']));
}
I think now it works
While it's true that a divide by zero error occurs on months with $0 in sales, Varentino's fix corrects that problem but the TOTAL and AVERAGE BASKET entries no longer work.

This is the most recent file incorporating other fixes but excluding Varentino's fix (therefore, it is still subject to the divide by zero error).
When entering the page, a default selection made (current month, current year) but the dropdowns are set at 'all'. This small fix preselects the correct default.

Replace lines 212-213 with

<td class="main" align="center"><?php echo tep_draw_pull_down_menu('month', array_merge(array(array('id' => 'ALL', 'text' => TEXT_ALL_MOIS)), $list_month_array), $month, 'onChange="this.form.submit();"');?> </td>
<td class="main" align="center"><?php echo tep_draw_pull_down_menu('year', array_merge(array(array('id' => 'ALL', 'text' => TEXT_ALL_ANNEE)), $list_year_array), $year, 'onChange="this.form.submit();"'); ?> </td>
In catalog/admin/includes/languages/espanol/stats_customers_orders.php

Search:

define('JUI', 'Junio');

Replace by,

define('JUN', 'Junio');
   Posted on: 10/05/2008     See contribution details

1202. Callcenter Popup Request Installation with Paid service
Telefonnummer, Kosten + Einheit, Öffnungszeiten werden aus der DB entnommen (install_sql.sql) liegt bei
Sprache: Deutsch und English liegt bei (wechselt automatisch bei Sprachwechsel)

Supportthread:
http://forums.oscommerce.de/index.php?showtopic=67018
Dies ist ein Addon für alle Shops mit Callcenter, hier wird in der rechten Auswahlseite eine Box eingebettet die ein Popup öffnet um weitere Infos zu bekommen (Telefonnummer, Kosten und Öffnungszeiten)

Addon in english und german
(mit Callcenter.gif)
   Posted on: 12/29/2008     See contribution details

1203. PHPMailer for OsCommerce Request Installation with Paid service
If you need authentification on the mail server you have to add some few features to be allowed to send mails. This is compareable to the feature "Authentificate before SMTP" in your local mail program.

The PHPmailer Class uses the attributes Username, Password and SMTPAuth. We will fill them with the necessary information.

Step 1:
Install "PHPMailer for OsCommerce" as it is explained before.

Step 2:

In the files
/content/includes/configure.php
/content/admin/includes/configure.php

find:

define('SMTP_MAIL_SERVER', 'mail.yourmailserver.com');
define('SMTP_PORT_NUMBER', '25');
define('SMTP_SENDMAIL_FROM', 'valid_email@yourmailserver.com ');
define('SMTP_FROMEMAIL_NAME', 'store owner name');

and replace with:

define('SMTP_MAIL_SERVER', 'mail.yourmailserver.com'); define('SMTP_PORT_NUMBER', '25');
define('SMTP_SENDMAIL_FROM', 'valid_email@yourmailserver.com ');
define('SMTP_SENDMAIL_USERNAME', 'valid username for mail server');
define('SMTP_SENDMAIL_PASSWORD', 'valid password for mail server');
define('SMTP_SENDMAIL_SMTPAUTH', 'true');
define('SMTP_FROMEMAIL_NAME', 'store owner name');

Step 3:
In the files:
/content/includes/functions/general.php
/content/admin/includes/functions/general.php

find:

$message->Host = SMTP_MAIL_SERVER; // SMTP server

and replace with:

$message->Host = SMTP_MAIL_SERVER; // SMTP server
$message->Username = SMTP_SENDMAIL_USERNAME; // SMTP server username
$message->Password = SMTP_SENDMAIL_PASSWORD; // SMTP server password
$message->SMTPAuth = "true";

Done.
   Posted on: 12/30/2008     See contribution details

1204. easy csv import Request Installation with Paid service
v2.1.2 (29/12/2008)
- products_date_added is set only when inserting
- products_last_modified is updated when updating

v2 Features:
* Now you can import categories by name, even if it doesn't exist!
* You can automatically import images from URLs
* IMPORTANT: Now the default separator is semicolon (;) which is Excel default fields separator no more TAB, neither comma. If you prefer you can change it in configuration, see readme.txt inside the package.
v2.1.1 (17/12/2008)
- fixed bug in data parsing (price and weight)

Now you can import categories by name, even if it doesn't exist!

IMPORTANT: Now the default separator is semicolon (;) which is Excel default fields separator no more TAB, neither comma. If you prefer you can change it in configuration, see readme.txt inside the package.
Now you can import categories by name, even if it doesn't exist!

IMPORTANT: Now the default separator is semicolon (;) which is Excel default fields separator no more TAB, neither comma. If you prefer you can change it in configuration, see readme.txt inside the package.

v2.1.0 (29/09/2008)
- minor bugs fixed
- experimental configuration GUI
Now you can import categories by name, even if it doesn't exist!

IMPORTANT: Now the default separator is semicolon (;) which is Excel default fields separator no more TAB, neither comma. If you prefer you can change it in configuration, see readme.txt inside the package.

v2.0.3 (18/09/2008)
- little documentation revision (thanks to Vince)
Now you can import categories by name, even if it doesn't exist!

IMPORTANT: Now the default separator is semicolon (;) which is Excel default fields separator no more TAB, neither comma. If you prefer you can change it in configuration, see readme.txt inside the package.

v2.0.1 (10/09/2008)
- removed some unused code
- few bugs fixes
- changed default csv separator to semicolon
- few language adjustments
- few instructions additions and adjustments
- image remote import improvement. Now can import from script url (ex /get_image.php?id=#).

v2.0.0 (07/09/2008)
- code revision
- added configuration by ini file
- added categories import by name (path) or id. Non existant will be created. Can even add multiple categories.
- tax class can be either id or class name, if name not exists it will be created
- manufacturer can be either id or manufacturer name, if name not exists it will be created
- added capability to import images from remote locations (php curl library needed), just fill in the link in the image field (must start with http:// )
Now you can import categories by name, even if it doesn't exist!

IMPORTANT: Now the default separator is comma (,) no more TAB.

v2.0.0 (07/09/2008)
- code revision
- added configuration by ini file
- added categories import by name (path) or id. Non existant will be created. Can even add multiple categories.
- tax class can be either id or class name, if name not exists it will be created
- manufacturer can be either id or manufacturer name, if name not exists it will be created
- added capability to import images from remote locations (php curl library needed), just fill in the link in the image field (must start with http:// )
   Posted on: 09/08/2008     See contribution details

1205. Contact Us Form in DB with Admin Request Installation with Paid service
Incorrect id value being passed failed with register_globals disabled. Now corrected.

2 typos found. Now corrected.

This is a full package
   Posted on: 12/29/2008     See contribution details

1206. Google Friend Connect Boxes Request Installation with Paid service
Google Friend Connect Add On For OS Commerce By Seohost

You can see an example of the oscommerce modueles at http://www.eeeb.org
   Posted on: 12/29/2008     See contribution details

1207. Google Position Request Installation with Paid service
This contribution has been replaced by the SEO Assistant contribution located here:
http://addons.oscommerce.com/info/2370
   Posted on: 12/29/2008     See contribution details

1208. OSCNews Java Newsletter Tool Request Installation with Paid service
2.3 with Bugfixes

Languages:
English+short Help
German+full Help
Russian+full help

German Support on http://www.profiwartung.de/forum/
New Feature: Attachments

Languages:
English+short Help
German+full Help
Russian+full help

German Support on http://www.profiwartung.de/forum/
   Posted on: 10/26/2008     See contribution details

1209. Updated spiders.txt Request Installation with Paid service
Added strings:

(bot
daumoa
yanga
   Posted on: 12/28/2008     See contribution details
Displaying 1081 to 1089 (of 1445 contributions) Result Pages: [<< Prev]  ... 121  122  123  124  125  126  127  128  129  130 ...  [Next >>]