Questions tagged [magento-1.5]

Magento is an Ecommerce platform written in PHP. It uses a configuration-based MVC system and heavily leverages Java style OOP patterns in the business logic, UI, and layout rendering application layers. This is a tag for Magento's 1.5.x.x version

Magento is an Ecommerce platform written in PHP. It uses a configuration-based MVC system and heavily leverages Java style OOP patterns in the business logic, UI, and layout rendering application layers.

Several sub-systems employ meta-programming languages (Layout, DataFlow) implemented via XML. The system also features a factory method for instantiation of certain class types (Models, Helpers, Blocks).

The application code is organized into Modules which may be selectively loaded during the bootstrapping process.

Many of the Models are implemented with an EAV style structure that sits on top of MySQL, which means data for a single Entity (object) is spread across multiple tables.

Because of the deep abstractions, Magento allows you to do almost anything with the system programmatically.

Because of the deep abstractions, there are some things in Magento that can only be achieved programmatically.

Because of the deep abstractions, many PHP programmers struggle with the initial steep learning curve, and end up on Stack Overflow.

Because of the deep abstractions, you will almost certainly need a modern IDE that allows you to debug the codebase to trace the object hierarchies.

601 questions
3
votes
2 answers

magento bulk products upload images but do not display in version greater than 1.6?

These are the steps i followed : I created a category and added product to it in the backend of magento System->Import/Export-> "export" the csv file . Removed the current values of the product already added then added values new values to…
atif
  • 1,693
  • 13
  • 38
  • 70
3
votes
4 answers

Unable to save the invoice

After upgrading magento from 1.4.0.1 to 1.5.1.0, i'm not able to submit an invoice. When i'm pointing my browser to Sales -> Orders -> [order] View -> Invoice and click Submit invoice, i'm getting the error saying Unable to save the invoice. I've…
mbajur
  • 4,406
  • 5
  • 49
  • 79
3
votes
1 answer

Magento categories listing using getCollection & addLevelFilter but exclude Default Root Category

I'm using the following code to grab a collection and to filter on a level using addLevelFilter(2). This outputs all my categories at level 2 perfectly except it also pulls through the Default Root Category in my list. I want to exclude this from…
Sahus Pilwal
  • 97
  • 2
  • 7
3
votes
1 answer

Magento - SQLSTATE[42S22]: Column not found: 1054 Unknown column 'billing_name' in 'where clause'

I've change app/code/local/Mage/Adminhtml/Block/Sales/Order/Grid.php to customize what's on the Orders grid. In _getCollectionClass() I have this: protected function _getCollectionClass() { //return 'sales/order_grid_collection'; return…
Geoff
  • 3,534
  • 5
  • 30
  • 33
3
votes
3 answers

Magento - How to add Ship to information to order grid in Magento 1.5.1.0

I found a great way to put the customer email address on the Magento Admin Sales Order grid via this Q&A (http://stackoverflow.com/questions/6416864/how-to-add-customer-email-to-order-grid-in-magento-1-4/6906254#6906254) by Ben Incani and it works…
Geoff
  • 3,534
  • 5
  • 30
  • 33
3
votes
4 answers

Magento redirect to login page while user not login on landing

I want to redirect the user to login page on landing, While user is not logged in. for example :- example.com ->(not logged in)-> redirect to login page. example.com ->(logged in)-> redirect to Home page. How can i do this ? I was found some…
Gowri
  • 16,587
  • 26
  • 100
  • 160
3
votes
7 answers

Magento EAV: how to hard delete an attribute value?

Let's ask the question clearly before entering into the details: Is there a way of hard deleting an attribute value from a product? By hard I mean, removing the row from the database and not only setting the value to null or empty. Now, the…
liquidity
  • 1,312
  • 20
  • 27
3
votes
1 answer

Magento AddAttributeToSelect() on custom added attribute (observer)

I have set up an observer on catalog_product_collection_load_after and the following code is called:
GManz
  • 1,548
  • 2
  • 21
  • 42
3
votes
2 answers

Magento: how to write own catalog navigation render function?

By default function Mage_Catalog_Block_Navigation->renderCategoriesMenuHtml render it. Now I would like to change the way catalog navigation render. What I should do then? 1) write own module? - then I have to copy the same files from category…
Anthony
  • 3,218
  • 3
  • 43
  • 73
3
votes
2 answers

Magento: how to translate action tag content?

I have default page.xml. I have added Some text! to
Anthony
  • 3,218
  • 3
  • 43
  • 73
3
votes
1 answer

Fatal Error: Magento Add Column to Admin Customer Grid

I wanted to add a column to Admin Customer Grid is_onHold (there is column in customer_entity table named is_onHold, tinyint(1) {want to store boolean value}). I tried Fabrizio d solution from : Magento - Add column to customer grid, but, it's…
Ravish
  • 2,383
  • 4
  • 37
  • 55
3
votes
1 answer

Magento table rate not working after migration

We migrated from 1.4 to 1.6 I am not sure if this is a problem in the migration but our table rate shipping is not worked. I have this 2 examples; This one works Country Region/State Zip/Postal Code Weight (and above) Shipping Price USA …
Luis Valencia
  • 32,619
  • 93
  • 286
  • 506
3
votes
1 answer

Magento "place order" redirection for payment gateway

this is my first actual post on StackOverflow. I'm on here quite often because you guys always solve my queries! We have a problem in a checkout cart on a Magento on localhost. We have Magento version 1.5 and are using the direcpay payment…
3
votes
0 answers

How to Insert Values in Database Table in Magento

I have created an Admin (Backend) module in Magento where i have created few text fields .. I have created the respective Model for that as well.. When i press my save button it posts the data and I can print_r the value in my Controller. Now I want…
user769394
3
votes
1 answer

Why isn't my new payment method showing up on one-page-checkout in Magento?

I have followed the tutorial located in the wiki: http://www.magentocommerce.com/wiki/5_-_modules_and_development/payment/create-payment-method-module The module is visible in the backend. This means, the "Config->advanced->advanced", and…
cmgriffing
  • 117
  • 2
  • 12