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 1279 to 1287 (of 1445 contributions) Result Pages: [<< Prev]  ... 141  142  143  144  145  146  147  148  149  150 ...  [Next >>] 
1421. Availability Request Installation with Paid service
* this is a complete package.

+ Fixed issue when adding second language caused:
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /Library/Apache2/htdocs/satnam/catalog/backstage/includes/functions/database.php on line 100
+ Remove unnecessary enctype="multipart/form-data" in submit form of configurer that may have
been causing problems with the functionality on some systems
+ Fixed issue where products quantity was not derived correctly for display.
+ Fixed missing catalog/includes/database_tables.php from comparison files

Support:
http://forums.oscommerce.com/index.php?showtopic=253046
   Posted on: 10/30/2008     See contribution details

1422. iDEAL Easy - ABNAMRO Request Installation with Paid service
in wiegant_ideal.php

find:

$website = HTTP_SERVER; // The url pointing to your shop
$success = HTTP_SERVER ."/checkout_process.php";
$failure = HTTP_SERVER."/checkout_payment.php";

change to:

$website = HTTP_SERVER; // The url pointing to your shop
$success = "/checkout_process.php";
$failure = "/checkout_payment.php";


Because later in the script, HTTP_SERVER; is called again like HTTP_SERVER. $success, making it double and messing up the return URL.
   Posted on: 10/29/2008     See contribution details

1423. Product Sales and Stats Report v2.0 Request Installation with Paid service
Fixed cron file. Full Version.
Moved the data to a new table so it does not hamper site performance and added some fields to allow for future planned improvements.
   Posted on: 10/22/2008     See contribution details

1424. Mail_Validation Request Installation with Paid service
the current version forces user to login again after registering even when mail_validation is turned off
in create_account_success.php,
//add this
if (EMAIL_VALIDATION=='true'){
//before tep_session_unregister('customer_id'); tep_session_unregister('customer_default_address_id');
tep_session_unregister('customer_first_name');
tep_session_unregister('customer_country_id');
tep_session_unregister('customer_zone_id');
tep_session_unregister('comments');
//and add
}
//after
Italian translation added, uno minor fix (ortographical error)
The attached file contains an updated Install.txt file, that adds the English translation for the MySQL entry.

The enlish translation is the ONLY change from the original install file.
   Posted on: 09/25/2008     See contribution details

1425. Recover missing order info from DB Request Installation with Paid service
This SQL statement will find products in the shopping cart with or without product attributes. You can specify one or as many Customer IDs as you want. Just change the '000', '111', etc. to the Customer IDs you have.

SELECT cb.customers_id, cb.customers_basket_quantity, p.products_model, pd.products_name, pov.products_options_values_name
FROM customers_basket cb
JOIN products p ON p.products_id=cb.products_id
JOIN products_description pd ON pd.products_id=cb.products_id
LEFT JOIN customers_basket_attributes cba ON cba.products_id=cb.products_id
LEFT JOIN products_options_values pov ON cba.products_options_value_id=pov.products_options_values_id
WHERE cb.customers_id IN('000','111','222')
AND pd.language_id = '1'
ORDER BY cb.customers_id
Try this instead of the previous post. I should have used LEFT JOIN instead of JOIN. This way, both orders with products that have attributes and those that don't have attributes are found.

Some people may need products attributes information. Here is the MySQL code to do that. Substitute the actual customer's id for <PUT CUSTOMERS_ID HERE>. This SQL statement will find orders whether there are product attributes or not.

SELECT cb.customers_basket_quantity, pd.products_name, pov.products_options_values_name
FROM customers_basket cb
LEFT JOIN products_description pd ON pd.products_id=cb.products_id
LEFT JOIN customers_basket_attributes cba ON cba.customers_id=cb.customers_id
LEFT JOIN products_options_values pov ON cba.products_options_value_id=pov.products_options_values_id
WHERE cb.customers_id ='<PUT CUSTOMERS_ID HERE>'
AND pd.language_id = '1'
   Posted on: 10/22/2008     See contribution details

1426. SecureTrading STability Request Installation with Paid service
Added:
<input type="hidden" name="oscsid" value="$oscsid"/>

To: /catalog/includes/modules/payment/SecureTrading/myst/form.html

Made no other edits.
   Posted on: 10/27/2008     See contribution details

1427. Secure Config File Request Installation with Paid service
UPDATED: changed from editing the application_top.php file to changes below.

This will fix shops that have scripts calling includes/configure.php directly and not from the applications_top file.

Full mod
This mod will move the shop/includes/configure.php file to below the public_html folder, a more secure location.
   Posted on: 10/27/2008     See contribution details

1428. Custom Products 1.0 Request Installation with Paid service
there's a bug in previous version: the custom products' category is shown on the Log Off page. It is hidden on refresh
This bug is now fixed. In the includes/boxes/categories.php file
//find
if (strlen(trim($customer_id.""))==0
//add after
|| !tep_session_is_registered('customer_id')
   Posted on: 10/28/2008     See contribution details

1429. Error Reporting Request Installation with Paid service
Are you aware of the server errors on your site? Do you check your error logs?

This script will report all new or changed error_log files created by the server.

This will save you from checking them! You will receive a daily email every time there is a new or changed error_log file.
You will not receive any email report if there are not any errors to report.

The first time the script is run it creates a ref file, after that it will only email you if a new error_log was created or if an existing error_log was updated or if a error_log was deleted. This is a stand alone script that needs Cron to run.
   Posted on: 10/28/2008     See contribution details
Displaying 1279 to 1287 (of 1445 contributions) Result Pages: [<< Prev]  ... 141  142  143  144  145  146  147  148  149  150 ...  [Next >>]