I am working on a “for fun” project that I hope to release as a “for fun” open source project. I’ve built an Arduino web-connected order notifier and I am building up the Magento adminhtml interface side of it. This might seem overly complicated for what I am doing, but this has other applications that [...]
Archive: module
Posts Tagged ‘module’
I have a sql installer file for my custom Magento module. It attempts to insert many thousands of rows into a custom database table but it runs out of memory and the module doesn’t install. Everything works fine if I put the table in manually with normal mysql and there is no ‘memory balloon’ doing [...]
Compatibility Community – 1.4, 1.4.1.1, 1.4.2, 1.5, 1.6, 1.6.1, 1.6.2.0 This module changes the way Magento calculates tier prices of configurable products. Possibly Related Posts: Multiple warehouses Order Notification Email Game license delivery Points.com for Magento videoPlus
This probably seems like a stupid question off hand, and maybe it is actually, but there are a few specific reasons I’m leaning away from using them. The paypal recurring profiles implementation seems like it doesn’t work very well for a couple reasons: There are a number of bugs in the process, including that new [...]
I’m creating a module that requires a few things to be done (once only) when the module is installed. There may be a number of things that need to be done, but the most basic thing that I need to do is make an API call to a server to let the external server know [...]
If you have active Magento compiler, it is always recommended to disable it before any module installation. You can easy to do it in Magento administrator panel, but what if you installed module by mistake, when compiler was active?Magento Design and Magento Developmen… Magento Tips: Disable Magento compiler from Linux command shell … Possibly Related [...]
I am working on a magento admin module and currently I am running a database query in a sloppy fashion, by directly loading a php file and connecting with a php file outside of the module: <?php header(“Content-type: text/xml”); $host = “localhost”; $user = “root”; $pw = “foo”; $database = “db”; $link = mysql_connect($host,$user,$pw) or [...]
Compatibility Community – 1.5, 1.6, 1.6.1 Simple module to list the categories a product belongs to on the category page. Possibly Related Posts: Multiple warehouses Order Notification Email Game license delivery Points.com for Magento videoPlus
In magento admin I am creating a lookbook module which will have a list of lookbooks and each lookbook can have images and related products. I have it working to the point where I can upload the images and able to save it but can’t find a way to associate products to each lookbook. I’m [...]
I am implementing my own payment module for Magento, where I implemented getCheckoutRedirectUrl() method in my payment model. class My_Module_Model_Payment extends Mage_Payment_Model_Method_Abstract {} This method is supposed to just return URL of payment gateway where user is redirected to, but I should also append current orderId to this URL. The problem is am not able [...]