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 334 to 342 (of 1445 contributions) Result Pages: [<< Prev]  ... 31  32  33  34  35  36  37  38  39  40 ...  [Next >>] 
371. Alertpay Request Installation with Paid service
changes to allow for the following currencies : 'CAD', 'EUR', 'GBP', 'USD', 'AUD'
all other currencies will default to USD. no other changes have been made.
   Posted on: 08/27/2009     See contribution details

372. DHTML State Selection Request Installation with Paid service
This add on addresses a missing feature and fixes a bug in address editing. In standard osCommerce, when you add or edit an address, you have to enter the state (or province or county or region or whatever it is called in your country) free hand into a text box. The desired feature being to select from a drop down to avoid typos, etc. Then, if you submit, it replaces your entry with a drop down menu of all the states in that country. However, if you selected the wrong country, you then have to change the country and submit the form to get the correct drop down. That's the bug.

This add on dynamically switches between drop down menus for the various countries. For example, with the default osCommerce install, it will allow you to select the United States as the country and then pick Alabama (or any of the other US states) from a drop down menu. Then, if you change your country to Canada, the drop down will show a list of Canadian provinces. If you pick a country that does not have any zones in the database, it will show the standard text input.

The add on also defaults the country to the store country setting.

Support thread: http://forums.oscommerce.com/index.php?showtopic=343680
   Posted on: 08/27/2009     See contribution details

373. osC3 Multilangism Request Installation with Paid service
Important collection of osC3 Multilangism in other contibutions


- better ISO/UTF-8 email
- better osc3 default template 1.0



Some bug fix
- Templates Module Layout (Box, Content) listing fix
- Fix for table_heading_key and table_heading_value in admin tools-languages
- admin countries flag icon bug fix
- Bugfix for Batch Edit Configuration

The same in zip file.
   Posted on: 08/27/2009     See contribution details

374. USPS Methods Request Installation with Paid service
I know that I like to be able to test my USPS before I go public with it, so I made the following change.

* Added back in the ability to choose between a test and production server.

This is a full release.
*Fixed bug caused by misplaced if statement that caused an error result if Display Transit Time was not selected
*Fixed hard coded text that should have come from language file
*Fixed error caused by reference to misspelled configuration variable
*Corrected configuration of allowed international types (Global Express Non-Document Rectangular got listed twice when one of them should have been Global Express Non-Document Non-Rectangular)
*updated US insurance costs to those current since May 11, 2009

If you already have 4.3.0 installed replace it with this version. This one at least works now.

Yet to be done:

Add handling fee definitions for International methods.
Add support for the packaging module used by UPSXML 1.3.6 since the post office also bases prices at least partly on size.
Same package as the last one except added to the troubleshooting the fact that many people experience an error when trying to run in test mode even if everything else is set up correctly.

Hope this saves some time.
This is NOT the latest version using the v3 API. However, it still works just fine. If you want the latest, download v4.0.3 ALPHA.

Since v3.0
-----------
* Added sorting of USPS rates from least to most expensive
* Added separation of weight into pounds and ounces
* Removed "without insurance" option since insurance can be turned "on" or "off" in the admin
* Updated domestic and international insurance rates to be current

Scott
v4.3.0 has Domestic and International Insurance

PLEASE NOTE: THIS IS AN ALPHA VERSION AND HAS NOT BEEN TESTED
*********************************************************
Please note: The test server option will not work because there is no test server for the v3 API. You must email USPS and ask them to switch your account to the production server and tell them you are using OSCommerce.

INSTALLATION
You must read the installation instructions towards the bottom of the text provided. A few files need to have some code added.

Changes since USPS Methods v4.3.0
-------------------------
NEW FEATURES
*Dedicated Priority Flat Rate Box and Envelope and Standard options.
*GUI weight thresholds for weight related shipping options.
*GUI handling charges for domestic shipping options

FIXES
*Added a round up function to eliminate some problems
*Fixed a couple coding errors found in the default configurations
-----------------------------
What we could use help on:
1. I want to split the weight entry for new products into lbs and oz.
   Posted on: 09/08/2008     See contribution details

375. UPS XML Rates and Services v1.0 Request Installation with Paid service
Fixed a bug where UPSXML was changing the value of $shipping_num_boxes provided by osCommerce without ever using the changed value. This was causing problems with the USPS shipping module.

In testing the packaging with an order for a large number of "ready to ship" products I discovered that the UPS rates tool cannot process a shipment with more than 50 boxes. While it isn't likely that anyone will actually place an order that will be divided into more than 50 boxes we still don't want an error message returned if such an order does get placed. I therefore added code to the _upsGetQuote routine to split such orders into groups of 50 boxes in order to retrieve all of the quotes and then more code in the parseResult routine to combine the multiple shipment quotes into a single set of rate quotes so that service types aren't listed more than once.

Added code to display the billed weight for each service (the dimensional weight) if weights are being displayed.

Note: The only changes were made to the two upsxml.php files. If you already have version 1.3.6 installed you can simply replace those two files and be done since no configuration variables were changed from version 1.3.6.
Small bug fixes for example using exec with curl no longer gave shipping quotes because of a small change in the UPS API for Rates. When a line break was added after <?xml version="1.0"?> in the Rates reply suddenly the array that curl using exec returns contained in array[0] the <?xml version="1.0"?> and in array[1] the rest of the message.
See changes.txt for more details.
In upsxml.php, find (line 345) :

if ( ($this->manual_negotiated_rate > 0) && ($this->use_negotiated_rates != 'True') ) {
$cost = ($this->manual_negotiated_rate * $cost)/100;
}

and change 'True' to 'False' so it look like :

if ( ($this->manual_negotiated_rate > 0) && ($this->use_negotiated_rates != 'False') ) {
$cost = ($this->manual_negotiated_rate * $cost)/100;
}


Also, for some reason I was getting a rate from Canada to US without any name but with a quote. After this line :

// changed to make handling percentage based
if ($this->handling_type == "Percentage") {

you find 2 lines starting with $methods[] = array('id' .....

simply add at the beginning of those 2 lines (350 & 352) : if ($_type) so it look like :

// changed to make handling percentage based
if ($this->handling_type == "Percentage") {
if ($_type) $methods[] = array('id' => $type, 'title' => $_type, 'cost' => ((($this->handling_fee * $cost)/100) + $cost));
} else {
if ($_type) $methods[] = array('id' => $type, 'title' => $_type, 'cost' => ($this->handling_fee + $cost));
}

Full 1.3.5 package with bug fixed

Marc
   Posted on: 01/03/2009     See contribution details

376. Box_categories_pro_V1.1 Request Installation with Paid service
exactly the same thing but this times it's w3c standards compliant
code improved for a best use of CSS
this version use a list like this:
<ul>
<li>categorie1</li>
<ul>
<li>sub-cat1</li>
<li>sub-cat2</li>
<li>sub-cat3</li>
</ul>
<li>categorie2</li>
... etc.
</ul>
Box categories pro V2 + CSS

- displays permanently and main categories
and sub-categories of 1st row
(it's still possible to view all sub-categories).

- introduces 4 CSS classes to easily customize
the appearance of the menu
(main category, opened main category,
subcategory, opened subcategory).

- correction of errors tag from Box categories pro v1.1

- easy installation : new categories.php file and some lines to add in the stylesheet.css file.

-
   Posted on: 09/17/2008     See contribution details

377. MoneyBookers IPN Request Installation with Paid service
Hi.. I was wondering if this package can be used with oscommerce-2.2ms2 and not just Rc2 ?

PS. file is a dummy file
Geez, this contribution was so buggy that I have no idea how anyone could have used it at all.
I can't even start to explain how many bugs it had in it, which I believe I fixed them all.
The only possible reason I can think of that anyone would release such a buggy contribution in the first place is if he can get money (errm, something like 50 pounds per hour for 3 hours work for example) on support requests...

This new version 2 is based on the latest version and includes all the fixes listed below plus many more.

I changed the way the stock is updated to the way the Paypal IPN works.
From now stock is updated only when the customer completes the payment.
The order is first saved in the DB and can be seen in admin/orders.php but no stock is updated at this stage.

I also added a safety check to the IPN to see if stock was already updated and it only update if it hasn't been updated yet.

I only tested this with 1 of the modules - amoneybookers_ipn.php which is the credit cards module, that's all I need, and it works perfectly.
I did not test it to work with any of the other included modules because I don't need any of them, but if you try and find any bug with the other modules and you can fix it, please remember to post the fix here.

This is a FULL PACKAGE. Enjoy!

P.S.

If you already installed the previous version, you should not update the SQL again.
The only SQL change, if you already installed previous versions is:
ALTER TABLE orders ADD stock_updated TINYINT(1);

Please remember to run this SQL command to add the new column stock_updated to your database.
The package had a bug where orders with total value greater than 999.99 (regardless the currency) could not be

processeed. Error shown: 'Invalid amount'. This was a small issue regarding the "," used as thousands seperator.

To solve it you need to change the code in

catalog/checkout_amoneybookersipn.php (if you use other modules besides checkout_amoneybookersipn.php you also need

to change them)


FIND

'&amount=' . number_format($order->info['total'] * $currencies->get_value($moneybookers_currency), $currencies-

>get_decimal_places($moneybookers_currency)) .
'&amount2=' . number_format($order->info['shipping_cost'] * $currencies->get_value($moneybookers_currency),

$currencies->get_decimal_places($moneybookers_currency), '.', '') .
'&amount2_description=' . urlencode($order->info['shipping_method']) .
'&amount3=' . number_format($order->info['tax'] * $currencies->get_value($moneybookers_currency), $currencies-

>get_decimal_places($moneybookers_currency)) .

and REPLACE by:

'&amount=' . number_format($order->info['total'] * $currencies->get_value($moneybookers_currency), $currencies-

>get_decimal_places($moneybookers_currency), '.', '') .
'&amount2=' . number_format($order->info['shipping_cost'] * $currencies->get_value($moneybookers_currency),

$currencies->get_decimal_places($moneybookers_currency), '.', '') .
'&amount2_description=' . urlencode($order->info['shipping_method']) .
'&amount3=' . number_format($order->info['tax'] * $currencies->get_value($moneybookers_currency), $currencies-

>get_decimal_places($moneybookers_currency), '.', '') .


This is the updated module with the new product of Moneybookers called Quick Checkout and IFRAME support. Moneybookers Quick Checkout enables you to take payments from credit cards, debit cards and local payment options in over 200 countries without the need for direct registration.
A few bugfixes and a status report finally working.
Just fixed minor sql. Full Package.
Credit goes to the Author.
   Posted on: 10/25/2008     See contribution details

378. SEO Assistant Request Installation with Paid service
- Changed Google search condition in includes/modules/seo_google_position.php to work with their new code.
- Changed MSN search condition in includes/modules/seo_msn_position.php to work with their new code.
- Changed Get Header to return better results.
- Fixed layout problem in seo_assistant.php that affected how the page looked in FireFox.

This is a full package.

Support thread is located here:
http://forums.oscommerce.com/index.php?act=ST&f=7&t=108319
   Posted on: 01/04/2009     See contribution details

379. Merchant Partners (PayMeNow) Request Installation with Paid service
- Disregard previous version (v1.65) as it contained old files.

Support systems where PHP is not compiled with cURL support.
(complete install package). Only replaced the cc/ck modules. New modules will support cURL and utilize the MerchantPIN security feature.
   Posted on: 07/02/2009     See contribution details
Displaying 334 to 342 (of 1445 contributions) Result Pages: [<< Prev]  ... 31  32  33  34  35  36  37  38  39  40 ...  [Next >>]