Tagged Questions

Magento is an e-commerce platform written in PHP atop the Zend framework. It has both open-source and commercial licenses available. It is written in an Enterprise Java idiom that uses the MVC pattern, Java-style OOP, and XML configuration files, aiming for a very high degree of flexibility and ...

learn more… | top users | synonyms (4)

101
votes
7answers
34k views

How to create a simple 'Hello World' module in Magento?

How can the following be accomplish in Magento? Display a "Hello World" message using a controller/view/model approach. So, if I went to http://mysite.com/myController it would show the string ...
11
votes
2answers
4k views

ALTER TABLE in Magento setup script without using SQL

Jonathon Day says "updates SHOULD NOT be in the form of SQL commands". I haven't come across any DDL or DML statments that cannot be executed via Magento's config structures. (In the ...
4
votes
4answers
3k views

My Magento Extension Install Script Will Not Run

I am trying to create an install script for my extension and for some reason it will not the install script. The extension will show up in the core_resource table, but the attributes I am trying to ...
3
votes
2answers
2k views

Saving extra data with an order in Magento

I have to add a column to the orders page which means adding a column to sales_flat_order_grid. Both of those are possible however I don't know how to add a value so that it gets saved in my new ...
24
votes
6answers
9k views

Beginning Magento development

I'm starting a project e-commerce site with Magento. I've been using the Microsoft Stack for a while now, but I'm excited about working with PHP. Before I really dig in, I need some resources. I've ...
8
votes
2answers
3k views

Adding attributes to customer entity

my current goal is to add a new customer attribute (with int type) which should appear as select with predefined options (loaded from a model with entries editable in backend, which is done). I'm ...
1
vote
1answer
3k views

Magento - Adding a new column to sales_flat_quote_item and sales_flat_order_item

I'm working with Magento version 1.4.1.1, and I want to save a value in sales_flat_quote_item table (and pass it to sales_flat_order_item). I've found this tutorial, but I'm not sure if it's still ...
3
votes
2answers
5k views

Adding a custom field to Magento's subscribtion module

The newsletter subscription module in Magento has only one field (email) by default. After I add an extra field to the form (say country), how can I get the form data to show up in the Magento ...
2
votes
3answers
1k views

sort Magento collection AFTER load

The Magento collection sorting functions (e.g. Mage_Eav_Model_Entity_Collection_Abstract::addAttributeToSort) work by adding an ORDER BY clause to the SQL select statement. However, there are times ...
2
votes
3answers
2k views

Can no longer add registration fields in Magento 1.4.2.0

I have used this tutorial before for adding registration fields to the Magento registration page. It has always worked, but since I have upgraded to Magento 1.4.2.0 it no longer does. The attributes ...
1
vote
2answers
986 views

Error : Not all products are available in the requested quantity !! what does this mean?

i get this error when trying to submit the order in the shopping cart : Not all products are available in the requested quantity I have set the quantity to 1000 and made it in stock ... I have just ...
0
votes
1answer
519 views

Fatal error: Call to a member function toOptionArray() on a non-object

I am developing a payment method module in Magento. When I click payment methods menu in Configuration of Magento I get the below error Fatal error: Call to a member function toOptionArray() on a ...
8
votes
3answers
2k views

Should I use EAV model?

I'm am designing my database/domain for an eCommerce application and I'm having a hard time figuring out how to store products. The website will sell a wide range of products, pens, thongs, tattoos, ...
7
votes
4answers
2k views

Can someone recommend some Magento tutorials?

I am trying to learn Magento, where can I find some video tutorials? I need some offline viewable video tutorials like the tutorials that are sold at Lynda.com or TotalTraining, VTC, etc. Also, ...
12
votes
4answers
5k views

Magento & Subversion (SVN) - Getting a Development Environment Started?

I'm working on building a Magento site, and it's by far the most mammoth package I've ever worked with. I've decided to set up a proper development server and use Subversion for version control. I'm ...
21
votes
10answers
13k views

SVN\Tortoise painfully slow

I'm experiencing painfully slow operations with one of our svn repositories\projects. For example its taking 5-10mins to revert the changes in one small file (10 KB). Or about 40-60mins to check out ...
17
votes
2answers
1k views

Magento - Quote/order product item attribute based on user input

Summary I want to create a product attribute that is not saved to products, or displayed on the product edit page like ordinary product attributes. Instead I want it to be saved to order/quote items ...
10
votes
6answers
14k views

Magento products will not show in category

I've recently been tasked with the build and deployment of a large Ecommerce site. In the past we've had to use the clients legacy X-cart installation for redevelopment (too far integrated with their ...
3
votes
1answer
1k views

Magento: adding duties/taxes to a quote during review

I need to make a call to a 3rd party API to get up to date Duties/Taxes for international shipping during the review stage of the checkout process. I have the API call ready to go, however I am ...
3
votes
2answers
420 views

Magento: How can I migrate configuration changes from development to production environment?

We are actively developing modules and when we push the changes to our production site, there are usually several configuration changes we need to make. Would be nice to automate this...thoughts?
1
vote
4answers
2k views

Add column to Magento admin catolog > manage products

Hi I want to add a column to the catolg > manage products section (not the product but the list of products), this column needs to list any related products the product has identified with it - maybe ...
1
vote
7answers
12k views

Magento search not returning expected results

Our site, www.wearport.com (sorry - I'm not trying to post this for links stuffing/ad'ing! It's necessary for this question), uses search for users to find products in our catalog. We use the search ...
5
votes
4answers
12k views

How to get Custom Options Programmatically in Magento

I have a couple products at checkout that I need to be able to get all of the custom options that are selected for them through code. Any help is much appreciated!
1
vote
2answers
2k views

Magento - load only configurable products

I have the following code: $_productCollection = $this->getLoadedProductCollection(); foreach ($_productCollection as $_product) { if ($_product->_data['type_id'] == 'configurable') { ...
1
vote
6answers
2k views

Magento Debug HEADERS ALREADY SENT error

I am receiving the following error in my system.log file: 2011-01-12T14:16:52+00:00 DEBUG (7): HEADERS ALREADY SENT: [0] ...
2
votes
1answer
1k views

Magento - Database repair tool - Added missing foreign keys problems

I recently ran the database repair tool as per this link: http://www.magentocommerce.com/wiki/1_-_installation_and_configuration/db-repair-tool At the bottom of the instructions, it says “Added ...
0
votes
0answers
44 views

How to Make use of Adapter model of Payment Method

I am new to Magento. I have, using some Tutorials online and by the help of some awesome guys on Stack overflow wrote Payment Module. I don't know how to use the Adapter class of Model, I don't ...
0
votes
1answer
103 views

Payment Method Module doesn't show in Store

Hi I developed a magento payment module, It shows in Admin area but not in Frontend Store Check out page. folder structure app/local/Company/Cashondelivery/Block ...
0
votes
1answer
337 views

Magento date of birth field validation is not working properly

In Magento registration page validation is not allowing me to submit the form for some valid date's. For example :- 08/24/1988 MM/DD/YYYY the above date is not working for me. The field class are ...
0
votes
2answers
625 views

Magento - Registration problem - User is sent to My Cart after entering billing information

When a user goes to checkout for their items, they are given the option to register. If that option is chosen, they proceed to enter their information. After entering their Billing Information and ...
0
votes
3answers
6k views

Magento ->addCategoryFilter - filtering product collection by root category

Concerning the use of the ->addCategoryFilter on a product collection. Why is it not possible to filter by the root category? I have 2 stores, both with different root categories. I want to show a ...
40
votes
13answers
27k views

Why is Magento so slow?

Is Magento usually so terrible slow? This is my first experience with it and the admin panel simply takes ages to load and save changes. It is a default installation with the test data. The server ...
13
votes
1answer
2k views

Magento staging and production

I have been developing with magento for a while now and hints are starting to make sense and become much more deliberate Nd organised. One aspect though still seems quite messy - moving a site from ...
7
votes
3answers
2k views

Gernerate custom urls within Magento

I am currently looking at trying to generate custom urls/routing using magento, currently i have set a default route in config.xml within the local module. <frontend> <routers> ...
5
votes
9answers
7k views

What are the best steps to improve magento performance?

I have a magento shop (ver 1.2) running under a dedicated LAMP setup. I have made the following changes to it: Enabled magento caching Enabled APC MySQL Query caching GZip compression of ...
4
votes
9answers
49k views

How to get a category listing from Magento?

I want to create a page in Magento that shows a visual representation of the categories.. example CATEGORY product 1 product 2 ANOTHER CATEGORY product 3 My problem is, their database is ...
12
votes
5answers
5k views

Programmatically add product to cart with price change

I want to add a product to cart programmatically. Also, I want to change the product price when added to cart. Suppose, my product's price is $100. I wanted to change it to $90 when added to cart. ...
3
votes
5answers
5k views

magento limiting number of returned items in product collection call

Im trying to limit the number of returned results manually in a copy of the list.phtml template, but its turning out to be alot harder than I anticipated. Ive tried manually setting the collection ...
2
votes
4answers
16k views

Magento products by categories

Does anyone know how I can get a list of products belonging to a specific category from within a view file in Magento?
4
votes
1answer
2k views

Magento - Programatically added bundle product isn't showing up in frontend

I am trying to insert bundled products to the Magento database from a PHP script. The version in question is Community 1.5.1.0. I tried the method described in the question "Programmatically add ...
0
votes
3answers
2k views

Magento - How do I add an invoice fee to an order during checkout process

How do I add an invoice fee to an order with my payment module? I guess this should be done during the checkout process through my payment method model. Perhaps I should create and add an item/product ...
5
votes
9answers
10k views

ubercart VS drupal commerce VS Magento

Drupal + UC VS http://www.drupalcommerce.org (still in dev) VS Magento anyone running all 3 and have opinions?
3
votes
2answers
1k views

Magento - xml layouts, specify value for ifconfig?

I'm sure I saw before somewhere, specifying a value for xml ifconfig statements (as default is just boolean). Anyways, disabling modules in the admin doesn't actually work (only disables module ...
2
votes
3answers
3k views

Programmatically add Bundle Products in Magento, using the SKU / ID of Simple Items

I have some simple catalog products in Magento, so I have their SKUs & IDs. Now I want to create a Bundled product using the array elements "bundle_options" & "bundle_selections" of the Bundle ...
1
vote
11answers
626 views

Starting with Magento

I want to start with magento. I know the basic installtion and running the admin and front end. I want to know the folder and file structure and the coading structure. Please anyone send me any ...
4
votes
1answer
485 views

Add an auto_increment column in Magento setup script without using SQL

Previously I asked how to ALTER TABLE in Magento setup script without using SQL. There, Ivan gave an excellent answer which I still refer to even now. However I have yet to discover how to use ...
3
votes
1answer
706 views

Trying get dynamic content hole-punched through Magento's Full Page Cache

I am using Magento Enterprise 1.10.1.1 and need to get some dynamic content on our product pages. I am inserting the current time in a block to quickly see if it is working, but can't seem to get ...
3
votes
4answers
990 views

Is it possible to send an e-mail programmatically in Magento?

Is it possible to send an e-mail programmatically in Magento? Maybe from a controller in a custom module, could you get hold of a template, populate its variables, and send the e-mail? Thanks.
2
votes
1answer
366 views

Looking for the best practive with SVN / GIT for Magento projects

we are a small team, 5 people now (2 dev, 1 projet manager, 1webdesign, 1 integrator) and we are working on Magento since 1&half years. We must jump a new stage because we have new projects and 3 ...
2
votes
3answers
304 views

is there a reason why Magento shouldn't support uninstall/downgrade for modules

Automated instant rollback is an important feature of enterprise-grade deployment mechanisms. Currently, it's not possible to achieve this using Magento's built-in installation tools. Given that ...

1 2 3 4 5 23