Integration two Fedex account in Magento - magento

We are looking in Magento having the option to integrate the Fedex account based on the user location. We want to use the two Fedex account in our Magento store.
Can any one give some solution for this?

At my company we ran into a similar problem: provide shipping rates through two different FedEx accounts based on the country of origin.
My solution was something along the lines of:
Create a module to extend Mage_Usa_Model_Shipping_Carrier_Fedex.
Add the account information for the second FedEx account through the system.xml of the new module.
Rewrite the setRequest model to load the relevant account data based on whatever criteria you wanted to apply.
That way the calls were directed to specific accounts and were transparent to both the front and back-end users.
I hope this helps.

#Kalvin Klien Here is the repo for the sample code: https://viribus.kilnhg.com/Code/Repositories/Public/Fedex-Alt
The code is not complete and is just to demonstrate how to extend the model and create the secondary configuration data. You will need to create the name space/module to let Magento know that are you extending Mage_Usa_Model_Shipping_Carrier_Abstract.

Related

How to create e-wallet in laravel website

I am developing a website in laravel I want to apply a e-wallet system on my website(Like Paytm).
This is first time I am doing this, I read on different places, saw methods using java and also read that I can sign-up for existing Wallets like PayTM, Payu Money, etc and integrate the same in the store.
But how to do it?
I used: https://github.com/tzsk/payu to add payu on my website.
Can you please tell me how can I make such a wallet? I have a wallet named table in databse when I added payu with one of the pages, I think it might bs used?
I made this wallet link, which will link user to different page where he can add money to his wallet as in here : https://paytm.com/paytmwallet
But, how can I add the payu feature of adding money to the wallet there?
You have to register as a merchant for a payment gateway on payemnt gatway providers like traknpay or payu and if your business is approved they will provide you with all details about integrating it in your website using there apis.

Share customer account in multi shop with session id in Magento

We have a multishop setup and are trying to share the shopping cart in Magento. We are using the tutorial at http://turnkeye.com/blog/share-magento-cart-between-multistores/ and are by part 2. In this part there is explained how to share customer account by session id as following:
If you have different domains, in this case you can add session ID to the URL for another store. Use this construction "Mage::getModel('core/url')->addSessionParam()->getUrl('...')" to get the URL with session parameter.
We are trying to make this work, but do not find out where we have to place / replace the "Mage::getModel('core/url')->addSessionParam()->getUrl('...')".
Can someone help us how to insert this part?

multi store magento - different domain, same products

friends,
I'm in doubt about the possibility of a configuration with multiple store magento.
I will explain my business:
I have a online store selling jewelry.
What I need:
I want to create micro franchise scheme to expand my shop
I want to provide a copy of my partner shop:
Different domain
Same products
Receive different paypal account
The seller will only see a list of your customers (independent customers)
The seller will only see a list of their requests (requests independent)
The main shop can see everything (requests, customers)
Is that possible?
Is there any technical procedure?
Is there any extension that makes it work so simple in creation of additional stores?
Please help me on how I can do this.
I have interest in hiring the service of realizing this project.
Thank you all!
Rodrigo Rodrigues (rodrigopantaneiro # gmail)
Brazil
This is totally possible and easy enough to do with the multi-store and store front views.. You will need to edit the httpd.conf file for your domain problem Magento Multiple Store and Views
then the login to the admin area for the sellers would be set to only view their customers/items etc. via the roles and permissions on the system.

Varied registration form for different Joomla user types

I have two user groups: customers and vendors. At the time of basic registration I have a radio button which allows me to put a new user into the respective user groups.
Once the user (customer or vendor) logs in I need one additional registration form for each of them so that (s)he can give specific details such as a customer will have to give vehicle details, while a vendor will have to give his/her bank details.
So how do I get/create two different additional registration forms after login? I am using Joomla 2.5.
Unless you're going to use a community component of some kind like CB or JomSocial, I believe you'll have to write a custom profile plugin to make the distinction yourself.
The Joomla Extension Directory for Communities has a long list of possibilities that you can review to see which best suits your needs.

Add role to the customer and give certain permissions in Magento

I am working on the website where by using magento I need to create an account when the user is registered, then I need to give that user permission to add products to my predefined categories. I don't know how this could be done. And I really need help with this.
I think you're looking for a dropshipping extension.
This one is said to be one of the best: http://www.magentocommerce.com/magento-connect/magento-vendor-dropshipping-extension.html
There are few of these types of extensions, so a quick google search will show you all of them.
are you referring to a customer on the front-end or an admin user on the back-end?
For an admin user you can limit a admin users permissions by assigning them to a role that can only interact with the catalog module.

Resources