magento

Own Shipping Module for Magento - Next step in onepage checkout does not work anymore.

Cheers, I created my own shipping module for magento 1.4.1.1. , which so far does not work. After really getting frustrated with this, I exactly copied everything from http://www.magentocommerce.com/wiki/5_-_modules_and_development/shipping/create-shipping-method-module . As with my own module, it does not work. In the onepage checkout,...

Magento Multiple Authorize.net Gateways

I have a CAD and USD gateway accounts for processing credit card payments, both from a payment provider with support for the Authorize.net API. I've successfully configured one using Magento's built-in Authorize.net support... but how can I configure a second Authorize.net Gateway for use in my store? ...

How to do Eclipse + Zend (Magento) Debugging on Local Machine?

I'm trying to figure out how to do debugging on Zend (more specifically Magento) code using Eclipse. This is the workflow I'd like: Set breakpoints in Eclipse. Open up Firefox or Chrome, pull up the site in the browser When code hits the breakpoint, Eclipse halts execution, letting me look trace everything. Right now, I debug the ap...

How to call a method before the mehtod of requested controller is executed : magento

Hello Experts, I want to call a method before the execution of every and each controller's method. I don't want to go and call the method in every method. I just want to call it from one place and it will be called before any method of any controller in magento. And I am sure we can do this but I don't know how it can be accomplished. ...

What is the cheapest payment processing system for Magento?

What is the cheapest payment processing system for Magento? Better if is is the easiest to implement as well ...

Magento - Passing data between a controller and a block

Really quick and simple question but I can't find a decent answer to this - What is the best way to pass data from a controller to a block in Magento. Incase it makes a difference, I am loading the layout as follows: $this->loadLayout(array('default', 'myModule_default')); $this->_initLayoutMessages('customer/session') -...

Magento - accumulating custom options in script

In the script below I iterate through a bunch of products. For each of these I want to add one custom option "Eskestørrelse". Works like a charm on the first product, however for the following products the custom options from the previous products are somehow kept and the product will end up with multiple custom options. For example - t...

Magento custom blocks

Hi, I am trying to show the popular product list using ajax in magento on the home page using ajax, I could do that for 5 or "N" no.of products, but what i want is the pagination toolbar to be added with the result set. This is what i added to show the popular products, // Magento layout $magento_block = Mage::getSingleton('core/layou...

Magento whitescreening when data model load called

Hi, I've set up my config.xml and my controller, my data model class and resource class and I can see that the classes are loading and can echo out the object and NULL data object information. However, when I try to call the ->load method of the data model object, I get the whitescreen of death. I've double checked and triple checked m...

Magento-How can i override admin module correctly

Hi friends: I have overrided some modules : "Enterprise/Pci/Model/Observer.php","Mage/Admin/Model/User.php","Mage/Admin/Model/Session.php","Mage/Admin/Model/Observer.php". And configuration as follows(config.xml): `<global> <models> <Pci> <rewrite> <observer>App_Pci_Model_Observer</observe...

my python client for magento is not installing.

I downloaded the python client for magento from Here But When I am downloading is using python setup.py install then it shows following error. How can i rectify this error? error: File "setup.py", line 31, in <module> import magento File "/home/sam/Downloads/magento-0.1.1/magento/__init__.py", line 21, in <module> from api...

Full Magento / Wordpress integration

Can anyone offer any advice on the best way to fully integrate a wordpress blog into a magento store? I have seen many different approaches of this integration (lazzymonkeys, sonassi etc), but none seem to fully integrate the entire blog, i.e. posts, categories, archives, search etc. So far, I have created a module that is essentially ...

How do I modify the Magento Share Wishlist email template??

I don't know where to find the "Share Wishlist" email template. I want to change the part where it says "Demo Store" to the proper store name. I also want to change it to a variable that points to the store name specified in the store configuration so that it automatically changes whenever the store name changes. ...

How do I modify the Magento Order Slip to show a custom product attribute?

I need to display an additonal custom attribute from a product on the Order Slip PDF so that our distributor can find the proper product id. We have 3 different types of SKUs being used; one is our own, the other is from our supplier and another is from the manufacturer. Which part of Magento do I have to change in order to add the cust...

How to add custom uploded images to cart in magento 1.4.1.1?

Hello, How to add custom fields as well as custom images to cart in magento 1.4.1.1 ? Any one have any idea about this??? ...

How can I sell a profile on magento?

Hi guys, I want to build a magento virtual store, where i can sell profiles in a website community. A profile is actually an account (identified with a unique code or password and username) where the user can fill some data, in my website community (the community is a separated platform, with a separated database). How can i do that? Is ...

Set session time out limit for magento frontend

Hi everybody, I am trying to set session time out limit to 30 minutes in magento. But it is not expiring in 30 minutes. I gone into System->Configuration->Web->Session Cookie management and set 1800 value for the field Cookie Life time but still it is not expiring the session in specified time out limit. I don't know what is the wrong w...

POST data, Sessions and other forms transmitted to another website

Hi, I am an affiliate of an online store, and I promote it through my own website which is targeted for a specific language. One of the issues i'm having with my affiliated site, is that he would not translate his website to the language I am promoting it in. Meaning, when I redirect to his website with my referral code, the visitor is...

Adding values to a magento dropdown or multi-select product attribute while adding a new product

I'm wondering if anyone has found or written an extension that would allow a magento website administrator the ability to add values to their products attribute while adding the product. For example, if I sell books and want the book author to be in a drop down list so that it would be used in layered navigation, it seems odd that I wou...

Join a Flat Table to an EAV Table with Magento?

Hi, I am trying to manke an Adminhtml Grid which joins a table that I made called "facility" to "customer_entity" and all of its attribtues. I'm noticing that since my table is flat, and the model inherits fomr Mage_Core_Model_Mysql4_Collection_Abstract, I'm not able to use all the class_methods that I've seen as examples on the back...