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 28 to 36 (of 1445 contributions) Result Pages: [<< Prev]   1  2  3  4  5  6  7  8  9  10 ...  [Next >>] 
31. Artes Lusas Request Installation with Paid service
Artes Lusas want to market and promote the craft Portuguese North to South including the Islands.
We stress that our art has distant origins predate the formation of Portugal as a country, which took place in 1143, and inherited influences of historical and artistic contacts with other nations such as India, Persia, China and the various tribes of the Continents Africans and Americans. Over the past few centuries also suffer the influence of various European countries as Anglo Saxon and Latin.
So Portugal in addition to inheriting the craft knowledge of ancient civilizations that inhabited the Iberian Peninsula, also meet with the civilizations that were crossed in our history influencing Crafts Portuguese with ancient production techniques and new trends and technological knowledge.
We conclude therefore that our rich cultural and Crafts is a very strong heritage of our history.
   Posted on: 11/09/2009     See contribution details

32. Events Scheduler Request Installation with Paid service
This contribution allows the ability to add, delete, and modify upcoming events for the vendor, like shows or conventions.
   Posted on: 11/09/2009     See contribution details

33. Products options added to product edit page Request Installation with Paid service
New File For: Products options added to product edit page
   Posted on: 11/09/2009     See contribution details

34. Administration Access Level Accounts 2.0 Request Installation with Paid service
the last upload was corrupt repacked and uploaded again
This is a full package
updated the install docs to be more compatible with 2.2 RC2A
added 3 new file for the modular index.php

NOTE: multiple reports of the zip not being able to be opened
This is a full package
updated the install docs to be more compatible with 2.2 RC2A
added 3 new file for the modular index.php
This is a Full Package for 2.2RCA2A
This is an addon for the contri Administration Access Level Accounts 2.0.

By this addon, the user which is logged of because of he didn't request a page for too long, goes back to the page where he came from before he was logged of. Installation requires the editting of 2 files! Also Dutch installation file included.

-------------------------------------------

Dit is een toevoeging op de contri Administration Access Level Accounts 2.0.

Door deze addon gaat de gebruiker, indien deze uit is gelogd doordat deze te lang geen pagina heeft aangevraagd, na het opnieuw inloggen terug naar de pagina waar de gebruiker vandaan kwam. Ik had zelf de ergenis dat ik steeds terug moest naar waar ik vandaan kwam. Nu is dat verleden tijd!

Installatie benodigd de bewerking van slechts 2 bestanden! Inclusief Engelse installatie.
If you use the categories extension for this Contribution, there are two problems inthe SQL query in admin_members.php:

1. The language_id is set to '2'. Ihave changed it to '" . (int)$languages_id . "'
2. $top_categories_query is wrong
tep_db_query("select categories_id from " . TABLE_CATEGORIES . " where parent_id = '0' order by sort_order")
If you have more then one subcategories, others then admin_id=1 cannot access these.
You need to change it to
$top_categories_query = tep_db_query("select categories_id from " . TABLE_CATEGORIES . " order by sort_order");
File is attached
I have found a typo in login_admin.php on the line 39.
Change
$login_groups_id = $check_admin[login_groups_id];
to
$login_groups_id = $check_admin['login_groups_id'];

The file is attached
I installed this great contribuition. I got stuck on the catalog files it showed error on mysql where id=1 near to line (ALL)).
I had this great idea to make another top admin so it would be different from id=1. It really worked. So I suggest if someone has the same kind of trouble just do that as well.
Bug fixed.
Thanks for this great contribuition.
No file add - just a file with this text.
WARNING: This contrib should NOT be used on version RC2a of osCommerce.

It's made for 2.2 ms2 and will not work on RC2a, since the file structure is not the same and alot of the code is not the same too.

For example: the admin/index.php in RC2a is totally diffrent than in MS2.

The contrib should be updated by someone to support version RC2a before you use it on such version.

Hopefully someone will do that soon, because it is a GREAT and popular contrib!
if u want to use this contribution and make a cron job add the following:


1. in the script u want to make: let's say test.php

add at the begining of the file (the first line is for a file that is in the admin protected area)


#!/usr/local/bin/php -q
<?

define ('execute_cron_job','1');
?>


2. in admin/includes/application_top.php

look for

// comment out below line to disable this contribution
if (basename($PHP_SELF) != FILENAME_LOGIN_ADMIN && basename($PHP_SELF) != FILENAME_PASSWORD_FORGOTTEN && basename($PHP_SELF) != FILENAME_FORBIDDEN) {
tep_admin_check_login();
}


and change with

if (basename($PHP_SELF) != FILENAME_LOGIN_ADMIN && basename($PHP_SELF) != FILENAME_PASSWORD_FORGOTTEN && basename($PHP_SELF) != FILENAME_FORBIDDEN) {
if (execute_cron_job == 1) {
$login_id = '1';
$login_groups_id = '1';
$login_firstname = 'test';

tep_session_register('login_id');
tep_session_register('login_groups_id');
tep_session_register('login_first_name');

}else{
tep_admin_check_login();
}
}


the ideea above is when u came from your script to register your sessions and not the go to the function tep_admin_check_login();


3. in the script u want to make: let's say test.php add before the ?>

// so it doesn't remain any sessions
tep_session_unregister('login_id');
tep_session_unregister('login_firstname');
tep_session_unregister('login_groups_id');



So finaly the cron job task looks like: don't forget the php from fron
00 21 * * * php /home/username/public_html/admin/test.php



The file attached containt only this explanation
version 2.3.1 with french language
Added a Configuration flag and corresponding code to categories.php to allow the disabling of user-level restrictions on catalog access and catalog operations. If Configuration flag is 'true', groups with access to categories.php will be able to view/edit all products. If 'false', category access and allowable operations will need to be expressly assigned, user by user.

This zip file is NOT the full package, only the installation SQL file and the new categories.php and installation instructions.
Access with Level Account (v. 2.3.0) for the Administration Area of osCommerce (MS2) with categories extension

================

Version Information:

This is the full previous Admin-Access-Level package (2.1_1) with UPDATE to be compatible with osCommerce-2.2ms2-051113

This package has been originally written for osCommerce's Administration Tool (MS1) by Zaenal Muttaqin <zaenal@paramartha.org> (donation to http://www.stormpay.com <zaenal@paramartha.org>)

After, customized by Seth Lake to works on osCommerce (MS2) and refinements by Herald Ponce De Leon (hpdl@oscommerce.com)

Then, the existing works have been joined by Piero Trono (http://php-multishop.com) in this package that include the complete translation in German, Spanish, Italian and French (translation in French thanks to CRDD - coroidedroite@yahoo.fr), including the button images and some missing variables.
Note: as I don't speak German, some German Definitions are written in English, I'm sorry.

This package is released under the GNU/GPL License with absolutely no warranty
(read LICENSE.txt file).

In addition, it includes the contribution Extension to Administration Access Level Accounts 2.0 by Oliswiss http://forums.oscommerce.de/index.php?showuser=6697 with the corrections from Thomas Shittli and me, Pedro Parrilla.

===================

# Main Features

- Login box to access the Administration Panel
- Password forgotten - email password feature.
- Logoff function
- Create, edit and delete multiple administration accounts
- Create, edit and delete multiple administration groups
- Assign and define boxes and file permissions for individual groups
- Head Administrator can add and remove boxes as well as files from certain groups
- Automatically displays accessable boxes and files in the Left Menu
- Email notification when you create an administrator account

# Added features with categories access contribution:

- It is possible to set rights to product categories on their highest level for administrators.
- The Administrators see only those categories, on which them corresponding rights possess.
- Administrators of the group 1, thus the Top administrators, have full rights for all categories.
- The options for categories (new category, edit, delete, move) as well as those for products (new product, edit, delete, copy, move) can be assigned to each administrators, which are not member from the Top-Admin group.

# Added features my me:

- I have added more text to the emails to indicate the name of the corresponding admin, as well as an email copy for the store admin email so that we can always track any changes on any account, even the password changes.

- Spanish text correction.

- I have added a drop down menu on the login_admin.php form so that it is possible to select the language from the beginning.

- The user/admin logging into the administrative area will be redirected the categories page, as it does not make sense to go into the main admin page, where most of the links won't be accessible, depending on the rights defined for that admin.

- Now, the code pay attention to the rights defined not only for the main categories, but also for the sub-categories, which makes much more sense to me.

# Bugs fixed:

Apart from the integration of all the bugs posted at http://www.oscommerce.com/community/contributions,1359, I have fixed and added some bug fixes from the forum>

- I have cleaned up some links and drop down menus which should not appear in a restricted access for an admin not in the Top admin group.

- Problems with the name of the categories when editing a member.

- Database problems, as the warning one with the function tep_num_rows.

- Some general bugs regarding basic operations, as delete admin... or the edition of the categories for the top admin members.

- Of course, all bugs fixes by Thomas posted at http://www.oscommerce.com/community/contributions,1359, 6-June-2006.

- ...and the rest of the fixes posted till the current date 16-Oct-2008, including the register globals issue, the "idden" issue and so on.

====================


NOTE: This contribution comes from several contributions and fixes which I decided to integrate to help anyone which might be interested on it, given that there were some bugs and many questions on the forum, so I thought that I might share my work on trying to improve it with eveybody.

I would like to thank all people who have done/collaborated in it, starting from Zaenal Muttaqin, Seth Lak, Piero Tron, Oliswiss, of course, and Thomas Shittli.

This set of contributions (let's call this that way) has been tested with Oscommerce 2.2 Ms2.
   Posted on: 10/16/2008     See contribution details

35. Prize Draw Competition Request Installation with Paid service
Changes:-
Updated Set Up instructions.
Changes:-
Updated Set Up instructions.
Added code to include Entrants Name to winner email; and in admin email.
Added code to include Entrants Email address to winner email; and in admin email.
Added code to better format email notification.
If updating just replace: admin/stats_prize_draw.php and admin/includes/languages/english/stats_prize_draw.php

This is a complete package.
Changes:-
Changed continue button at page bottem to java back button.
Added code to show Model #
Added code to show Value (i.e.) cost in competition.php and help_prize_draw.php

If updating just replace:
catalog/help_prize_draw.php
catalog/competiton.php

This is a complete package.
Changes:-

Bug fix: Fixed the bug where when the customer was logged in the prize discription wouldnt display.

If updating just replace catalog/competition.php and catalog/help_prize_draw.php

This is a complete package.
I forgot to include the
catalog/includes/boxes/information.php to the files for new install in 1.7, so added it. SORRY

I went ahead and added the code to the installer to complete it as supplied by Johnnybebad via the forum. and updated the instructions to reflect the change.

This is a complete install
Added code to include a picture of the Prize, prize name and descrition in the help_prize_draw.php, As I have the store set to not alow guest to enter drawing I thought that seeing the Prize while reading the Rules might help them decide to register.

Added some new defines to help fill the text in catalog/includes/languages/english/help_prize_draw.php

This is a complete package
Changes:-

Added files so if clean install can just copy over new files.


This is a complete package.
I left out a few things in the instructions in the file below. All fixed now.

This is the complete package.
The previous package by me v1.4 loaded a java popup help window. A few customers complained that if they entered the prize draw rules from my site map and clicked (close window) they left the site.
So in this version I converted the gift registry by SammySolutions.com ltd help file to work with prize draw.

Full package
Thanks to all involved in this great mod and to Carl Skerritt for introducing it

This is a complete package of files.

Remember to back up your files and database first.

Changes:-
Admin
1. Entry of dates using java calendar rather than having to type them in.
2. Entry values for Answers A, B and C rather than including in as part of question
3. E-mail sent to winner with auto filled store information
SHOP
1. Automatic end date of competition displayed
2. Radio buttons displayed to select answer rather than typing a value.
3. Duplicate entry error fixed
General rewrite of instructions and changed text to make it more general, i.e win the goblets text has been replaced, with win thios fabulous prize.
Please note as I am not knowledgeable enough at the moment to update the database installation script I have given manual instructions regarding the three entries that need to be made.

Make sure you enter them correctly as I had a space in front of my first entry COMPETITION_ANSWER_A in the database, this in turm made it not display in the catalog/competition.php file, I had to delete the entry in the database and insert the correct information to get it to work, note just correcting the error by deleting the space and updating the database did not work for me.

Thanks to all involved in this great mod and to Carl Skerritt for introducing it

This is a complete package of files.

Remember to back up your files and database first.

Changes:-
Admin
1. Entry of dates using java calendar rather than having to type them in.
2. Entry values for Answers A, B and C rather than including in as part of question
3. E-mail sent to winner with auto filled store information
SHOP
1. Automatic end date of competition displayed
2. Radio buttons displayed to select answer rather than typing a value.
3. Duplicate entry error fixed
General rewrite of instructions and changed text to make it more general, i.e win the goblets text has been replaced, with win thios fabulous prize.
Please note as I am not knowledgeable enough at the moment to update the database installation script I have given manual instructions regarding the three entries that need to be made.

Make sure you enter them correctly as I had a space in front of my first entry COMPETITION_ANSWER_A in the database, this in turm made it not display in the catalog/competition.php file, I had to delete the entry in the database and insert the correct information to get it to work, note just correcting the error by deleting the space and updating the database did not work for me.

Hi, updated the instructions and included a full pacakage of files.

Those installing this on a virgin shop (no mods installed)

Should install the files to the relevant places install the database, and everything should be fine.

This has been tested oon V2.2 Rc2 and I have re-installed this following my instructions only.


Thanks to everyone who has contributed to this great mod.

Working on instructions and files for radio buttons and java calender date installer.
Hi, updated the instructions and included a full pacakage of files.

Those installing this on a virgin shop (no mods installed)

Should install the files to the relevant places install the database, and everything should be fine.

This has been tested oon V2.2 Rc2 and I have re-installed this following my instructions only.


Thanks to everyone who has contributed to this great mod.

Working on instructions and files for radio buttons and java calender date installer.
Just added radio buttons for options A, B and C on competition page.

Values A, B and C can be entered in admin

This is my first modification and I have tested the files on osc version 2.2 RC2.

Included is how to update and install from scratch.

Please note that the auto database installer has not been modified to include the extra 3 entries required for this mod to work, but I have included on what needs to be added where.

As this is my first attempt, and I have tested it so fingers crossed
   Posted on: 12/16/2008     See contribution details

36. Simple Multi Image Add-on (Un-Limited) Request Installation with Paid service


1. Fixed issues with titles, see notes with the docs.
2. Removed links on 'Click to enlarge' as this was causing issues.
3. Modified title coding to cope with reserved characters in titles.
4. Added code to categories.php to provide selection of image folder when editing a product, the path is included within the image field, so no changes are required anywhere else for this mod to work.

Changed files: admin/categories.php product_info.php images/js/jquery.fancybox.js images/js/fancybox.css
admin/includes/languages/english/categories.php


Upgrading: Replace those changed or edit existing files to apply changes.

Tested on PHP 4 & 5, SQL 4 & 5, osC 2.2 ms2, rc1 & rc2a and is register_globals off compatible.

FULL PACKAGE
1.Fixed occasional issue with image url.
2.Added back 'Click to enlarge' removed by the ealier mods.
3.Added temporary fix for long product titles (permanent fix in development).

Changed files: product_info.php

Upgrading: Replace those changed or edit existing files to apply changes.

Tested on PHP 4 & 5, SQL 4 & 5, osC 2.2 ms2, rc1 & rc2a and is register_globals off compatible.

FULL PACKAGE
1.Added un-install SQL file.
2.Added a 'also remove from server' to the delete image option.
3.Added code to ensure osCThumb watermarks will appear on popup images if enabled in osCThumb. This function will work whether or not scripts are enabled in the browser.
4.Added FAQ section to this file.

Changed files: product_info.php, admin/categories.php
New files: Uninstall SQL.txt

Upgrading: Replace those changed or edit existing files to apply changes.

Tested on PHP 4 & 5, SQL 4 & 5, osC 2.2 ms2, rc1 & rc2a and is register_globals off compatible.

FULL PACKAGE

1.Fixed errors in the SQL files, I forgot to escape the quotes!!
2.Fixed issue with IE8 (black border/blank popup)


Changed files: product_info.php, SQL files, js/jquery.fancybox.js

Upgrading: Replace those changed or edit existing files to apply changes.
Run the V1 to V1.1 SQL.

Tested on PHP 4 & 5, SQL 4 & 5, osC 2.2 ms2, rc1 & rc2a and is register_globals off compatible.

FULL PACKAGE
1.Added missing installation instruction & missing character in the SQL
2.Adeed instructions to this file.
3.Added Background dimming option (Thanks to Charles for tip)
4.Added Popup Image Dragging option (Thanks again to Charles for another tip)
5.Added the option of adding a swing effect to popup zoom.
6.Added option to position navigation icons in the popup.
7.Added option to make the navigation icons permanently visable within the popup.

Tested on PHP 4 & 5, SQL 4 & 5, osC 2.2 ms2, rc1 & rc2a and is register_globals off compatible.

FULL PACKAGE
There are many multi image contributions, but I found many have become much too bloated or just didn't fit, so I created this, allowing as many extra product pictures as you want with admin control and fancy lightbox like popups.

Features:

1.Its a simple strait forward design, only two files to edit.
2.An un-limited number of additional images can be added to any product without modification.
3.Any product can have as many (or few) images as wanted.
4.Additional images can be deleted if needed.
5.Fancybox is used for the image popups, so all product images can be browsed within a single popup. (Fancybox is like lightbox but better lighter code).
6.Additional image layout can be modified in admin, selecting a horizontal or vertical layout and the number or images to show per row
7.Additional image size is also set in admin.
8.I recommend this is used with OscThumb for auto thumbnailing & faster load times.
9.As a bonus addition, a function is added in the product edit page to give a instant update option.

Fancybox is released under the MIT License, details and examples can be found here .


To work Fancybox is particular about the doc-type used, check at their site & in the installation.


Tested on PHP 4 & 5, SQL 4 & 5, osC 2.2 ms2, rc1 & rc2a and is register_globals off compatible

Support thread will be found here http://forums.oscommerce.com/index.php?showtopic=344580
   Posted on: 09/10/2009     See contribution details

37. Admin Reports Count Reset Request Installation with Paid service
enthält nur die deutschen Sprachdateien
This version of the contribution should be fully compatible with osCommerce 2.2 RC2a and register globals (on or off). Other changes include (see the changelog for complete list):

1) Switched the minus to descending and the plus to ascending.

2) Updated Clear All to use * instead of 0 as the magic value.

3) Added tep_db_prepare_input and (int) casting when using int parameters with the DB.

Support thread: http://forums.oscommerce.com/index.php?showtopic=344632
   Posted on: 09/10/2009     See contribution details

38. Coupons by Ingo Request Installation with Paid service
Hi
This is my very 1st upload ...

This contribution update is for those that use Fast Easy Checkout with Oscommerce RC2a

The other discount package doesnt work with Fast Easy Checkout, but this one does, and I have had a programmer adapted it to my needs.

I am not a programmer therefore I have copied the scripts that were changed from my very heavily modified oscommerce site.

Please make sure you BACKUP everything 1st and check the files, as I have overwritten the old files with my new ones.

The contibution now allows you to state how many times a coupon can be used in total and by each customer, it does a $ amount and a % amount

Unfortunatly you can only choose 1 product to have the coupon redeemed against a small update to the script would allow you to choose 1 or 5 or all products, hopefully by sharing this some one can develop it further.

Again remember BACKUP
   Posted on: 11/07/2009     See contribution details

39. Customer Export Request Installation with Paid service
Full package with french
Multi languages

Screenshots visible at: http://www.oscommerce-screenshots.com/customer-export-p-41.html

***********************************

Pack complet avec français
Multi langages

Copies d'écrans visible à : http://www.oscommerce-screenshots.com/customer-export-p-41.html
   Posted on: 11/07/2009     See contribution details
Displaying 28 to 36 (of 1445 contributions) Result Pages: [<< Prev]   1  2  3  4  5  6  7  8  9  10 ...  [Next >>]