osCommerce and osCMax shopping cart software forums

Shopping Cart Software

osCommerce with teeth!

 
 

Multi Vendor Shipping

This is a discussion on Multi Vendor Shipping within the osCMax Projects Discussion forums, part of the osCMax v2.0 Forums category; A new project_project entry has been added: Multi Vendor Shipping - osCMax - osCommerce Maximized This contribution changes the way ...


Go Back   osCommerce and osCMax shopping cart software forums > osCMax v2.0 Forums > osCMax Projects Discussion

Register FAQ Members List Calendar Mark Forums Read


Free community membership! Fast easy FREE membership
Reply

 

LinkBack Thread Tools
  #1  
Old 01-23-2008, 11:22 AM
drillsar drillsar is offline
New Member
 
Join Date: Jan 2008
Posts: 26
Thanks: 1
Thanked 0 Times in 0 Posts
Thanks: 1
Thanked 0 Times in 0 Posts
Rep Power: 0
drillsar is on a distinguished road
Default Multi Vendor Shipping

A new project_project entry has been added:
Multi Vendor Shipping - osCMax - osCommerce Maximized


Quote:
This contribution changes the way Oscmax handles shipping. You can now set the shipping parameters for each product individually. All of the following (and more) are possible:
1. Most products ship by a selection of standard shipping methods, but certain large and heavy items ship by truck.
2. Products ship from one of two or more locations.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #2  
Old 01-24-2008, 04:22 AM
New Member
 
Join Date: Jan 2008
Posts: 26
Thanks: 1
Thanked 0 Times in 0 Posts
Rep Power: 0
drillsar is on a distinguished road
Default Re: Multi Vendor Shipping

It's very buggy yet, It's not working at the moment, I think it has something to do with the modules in admin. Maybe someone can help
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #3  
Old 01-25-2008, 02:06 PM
New Member
 
Join Date: Jan 2008
Posts: 26
Thanks: 1
Thanked 0 Times in 0 Posts
Rep Power: 0
drillsar is on a distinguished road
Default Re: Multi Vendor Shipping

Ok I fixed it, now it should work. Thanks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #4  
Old 02-03-2008, 06:14 PM
New Member
 
Join Date: Jan 2008
Posts: 26
Thanks: 1
Thanked 0 Times in 0 Posts
Rep Power: 0
drillsar is on a distinguished road
Default Re: Multi Vendor Shipping

I fixed the usps.php to integrate with the new usps system also added insurance to it.

download MVS1.1c
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #5  
Old 02-04-2008, 12:12 PM
New Member
 
Join Date: Jan 2008
Posts: 26
Thanks: 1
Thanked 0 Times in 0 Posts
Rep Power: 0
drillsar is on a distinguished road
Default Re: Multi Vendor Shipping

Problems I found in usps.php

usps.php, goto line 177 and fix the typo
CODE
if (($maxins == 0) || (constant('MODULE_SHIPPING_USPS_INSURE_' . $vendors_is) == 'False')) {
Should be
CODE
if (($maxins == 0) || (constant('MODULE_SHIPPING_USPS_INSURE_' . $vendors_id) == 'False')) {

Then look at line 227. You'll see this
CODE
$uspsQuote = $this->_getQuote();
Change it to
CODE
$uspsQuote = $this->_getQuote($vendors_id);
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #6  
Old 03-13-2008, 07:18 AM
Member
 
Join Date: Mar 2008
Posts: 33
Thanks: 0
Thanked 2 Times in 2 Posts
Rep Power: 0
jack_strit is on a distinguished road
Default OSCMax and Multi Vendor Shipping Hellos

Hello,
Nice to meet everyone here. Thank you for these great contributions to the OSCommerce community. I have just installed Multi Vendor Shipping and I want to tell everyone that the SQL is missing a few small details that will muddle up your permissions for MVS. I did not know where to include the fixes so I will simply past one of them here. You may need to do something similar for the files 'prods_by_vendor.php' and 'orders_by_vendor.php'. This is a sample to fix the permissions for vendor_modules.php:
#BE SURE TO REPLACE 'oscmax2' WITH WHATEVER YOUR DATABASE #NAME #IS!!!!!!!
#
# mvs.sql
# For MVS V1.0 2006/03/25 JCK/CWG
# osCommerce, Open Source E-Commerce Solutions
#

#
# Fix for compatibility with multi-admin mod
#for table `admin_files`
#by jack_strit 2008/03/13
#Fixes problem with permissions which makes "Manage" button not work in #Vendor Manager
#
#Remember to replace 'oscmax2' with your database name.

INSERT INTO `oscmax2`.`admin_files` (
`admin_files_id` ,
`admin_files_name` ,
`admin_files_is_boxes` ,
`admin_files_to_boxes` ,
`admin_groups_id`
)
VALUES (
'127', 'vendor_modules.php', '0', '124', '1'
);
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #7  
Old 07-03-2008, 07:44 PM
New Member
 
Join Date: Jul 2008
Location: The Radioactive Desert
Posts: 11
Thanks: 2
Thanked 1 Time in 1 Post
Rep Power: 0
mithereal is on a distinguished road
Default Re: Multi Vendor Shipping

will you post the other changes you had to make to the db to work im still getting no access but the manage function works correctly thx.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #8  
Old 07-04-2008, 07:57 AM
Member
 
Join Date: Mar 2008
Posts: 33
Thanks: 0
Thanked 2 Times in 2 Posts
Rep Power: 0
jack_strit is on a distinguished road
Default Re: Multi Vendor Shipping

Well, the stuff I posted fixed an issue with the oscmax admin giving a permissions error...that is all. I am not sure why you are "not getting access". Maybe you could be more specific as to what you exactly do and what exact errors you get. You should concentrate on the major errors first, since trying to fix more then one error at a time is very difficult.

The biggest thing I would suggest is that (if you don't already) you should learn some basic stuff about SQL. It is very simple to learn the basics of "SELECT" and "UPDATE". You will then be able to tell basically what is going on when you look at SQL. You don't necessarily have to be an expert to understand what the programmer was trying to do. Then you can modify what you need and kind of understand what is going on. That is what I try to do.

The other modifications I did were almost exactly the same as the modification I posted except I was including other files that had given permission errors when I tried to go to them.

If you can give me an exact description of your problems, maybe I or one of the other people here can help you. I am glad my post above helped you some also...

Saludes

J
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #9  
Old 07-04-2008, 01:19 PM
New Member
 
Join Date: Jul 2008
Location: The Radioactive Desert
Posts: 11
Thanks: 2
Thanked 1 Time in 1 Post
Rep Power: 0
mithereal is on a distinguished road
Default Re: Multi Vendor Shipping

the error i am getting is Access Denied No Right Permission Access Please contact your Web Administrator to request
more access or if you found any problem.when i click vendors order list and move products between vendors.

The above fix fixed the manage function under vendors i just dont have permissions for the items stated above can someone tell me what i need to modify ot have permissions?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #10  
Old 07-04-2008, 08:38 PM
Member
 
Join Date: Mar 2008
Posts: 33
Thanks: 0
Thanked 2 Times in 2 Posts
Rep Power: 0
jack_strit is on a distinguished road
Default Re: Multi Vendor Shipping

What page is it attempting to request?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Sponsored Links
Advertisement
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads

Thread Thread Starter Forum Replies Last Post
Multi-Vendor? russellmcox Introduce yourself! 2 10-21-2007 09:02 PM
New vendor locator michael_s New osCommerce Contributions 0 08-28-2007 07:00 AM
Need Help setting up Price Based Multi-Zone Shipping Rates heathyre osCommerce 2.2 Modification Help 1 12-02-2006 04:46 PM
Multi vendor contribution problems gelali osCommerce 2.2 Modification Help 0 05-20-2004 01:25 PM
vendor lookup jloyzaga osCMax v1.7 Discussion 2 02-24-2004 01:17 AM


All times are GMT -8. The time now is 10:53 PM.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO
http://www.oscmax.com/forums/
Copyright 2008 osCMax