|
|
|
osCommerce Store Development |
|
|
|
What we can offer- Advice (and practical implementation) on all that is required to establish your e-commerce store.
For example what basic server features are required to operate osCommerce. - Installation of the basic osCommerce software on your server.
We will ensure that it operates as it should and set its configuration values to match your initial store requirements. - Advanced configuration including the addition of osCommerce contributions that are designed to add functionality to the software.
- Error debug and repair of an existing osCommerce set-up.
- PHP and MySQL custom programming.
- S.E.O. (Search Engine Optimization) modifications.
- We can modify the stock look of the basic osCommerce installation through the use of CSS sheet alterations and the addition of any pre-supplied graphics - such as your company logo. We can also integrate any of the commercial and free site design templates that you may obtain for osCommerce. (Check out some templates that may be suitable for your osCommerce store.)
- UK based support operation.
- Fixed price maintenance contracts to regularly maintain your osCommerce store at a defined level.
- We can quote you on any custom osCommerce development work you desire.
Simply tell us what you need and we can assess the level of work required. - Off site development. We can develop modifications on our servers using a copy of your site, freeing you to continue business as normal with your existing store set-up.
- Low cost - high value service delivery.
- HOSTING SERVICE! We are offering a hosting service that is ideally configured to host osCommerce stores. SPECIAL TIME LIMITED OFFER - Host with us and receive a 10% discount on any osCommerce project work we carry out on your hosted site for as long as you host with us!
This offer will be closed to new sign-ups at some point - don't miss out!
Whatever your hosting needs are, check out our available offers here: - Packages
How much?To install the standard (basic) osCommerce configuration and check that it fully operates using your required store values, costs $60.00USD or £30.00GBP.
All other osCommerce work will need to be assessed on a case by case basis. We can provide an hourly rate and fixed cost price structure on request. (We do NOT charge for any set-up time while linking to your site or any other non productive work. If we charge for an hour then it will be for a full, compact hour of work. )
Any questions?We would be delighted to hear from you if you have any questions on what we can offer. We have not detailed all possible examples of the services we can provide simply because they are so diverse. Nothing is too big or too small for us to consider! Leave Message.
|
|
Module News |
|
osCommerce Contributions
|
|
osCommerce, Open Source E-Commerce Solutions |
|
|
-
Scrolling bestsellers with images
I had a need to hide my FREE products from the infobox, thus only displaying the bestsellers that actually cost more than 0. Here is the query with the needed changes to hide free stuff if anyone needs it :)
if (isset($current_category_id) && ($current_category_id > 0)) {
$best_sellers_query = tep_db_query("select distinct p.products_id, p.products_price, p.products_image, pd.products_name from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c, " . TABLE_CATEGORIES . " c where p.products_price > 0 and p.products_status = '1' and p.products_ordered > 0 and p.products_id = pd.products_id and pd.language_id = '" . (int)$languages_id . "' and p.products_id = p2c.products_id and p2c.categories_id = c.categories_id and '" . (int)$current_category_id . "' in (c.categories_id, c.parent_id) order by p.products_ordered desc, pd.products_name limit " . MAX_DISPLAY_BESTSELLERS);
} else {
$best_sellers_query = tep_db_query("select distinct p.products_id, p.products_price, p.products_image, pd.products_name from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_price > 0 and p.products_status = '1' and p.products_ordered > 0 and p.products_id = pd.products_id and pd.language_id = '" . (int)$languages_id . "' order by p.products_ordered desc, pd.products_name limit " . MAX_DISPLAY_BESTSELLERS);
}
all i added was a check for products price above 0 like this "where p.products_price > 0 and "
njoy!
-
PayPal IPN for Easy Export
This modules uses the Holding Orders Contrib and PayPal IPN module to Store PayPal orders separately until payment is confirmed by PayPal IPN. This allows PayPal orders to work better with many export systems, including Stone Edge's Order Manager (this contrib is not by, nor is supported by Stone Edge.) and others.
-
Poll Booth
Again a refinement of the comment filtering - this will not allow users to post any comments with html tags, blank comments, or any comments which contain 'http' or 'www'. If you allow people to post comments with urls in them then you probably dont want to add this. However we have been getting a deluge of spam with people adding links to sites and ive got fed up deleting them out of the database. My last addition only removed html tags and still allowed people to post urls as text.
-
Product Sales and Stats Report v2.0
supplier_id which was causing an error was removed from code.
-
USPS Shipping with Delivery Time and Insurance
USPS Shipping with Delivery Time (Service Committment) and Insurance. Uses updated v3 USPS WebTools API
-
Seach Engine Friendly URL
Changes in .htacces
# SEF BEGIN
# Change ReWrite base according to where your store is located
# / is domain.com and /catalog is domain.com/catalog
RewriteEngine on
RewriteBase /catalog/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)/$ http://www.sitename.com/index.php?cPath=$1 [L]
# SEF END
This solves the problem
|
|
|
|
|
|