magento

Magento: How to show only products with a custom binary attribute

I created some custom attributes for my Products in the backend, put together in a single attribute set. Attributes are like: "Can be used to fill holes in teeth" "Can be used to to cover up fillings" "Is absorbable" All of those attributes are of the "yes/no" kind. I made all of them searchable, yet when I search for "fillings" or "...

Magento - using Mage to edit a product?

I'm trying to integrate some functionality of Magento into my custom CMS to make it easier for my clients to update some of their products. I already have classes written to retrieve all the data information I need, but I'm trying to figure out how to save changes to a product in the same fashion (IE, attributes such as color, size, pac...

Magento site - Embed an email contact form which allows user to send a file attachment

Hi, I'm trying to add a page to my Magento site which contains an enquiry form. User would fill out name, email, tel no and add a file attachment. The store owner would then get the email with the uploaded file as an attachment. I'm a Magento newbie and the client I'm doing this for is reluctant to pay for an extension. My understandi...

Create A Product Review In Magento

I am trying to import product reviews from an older site to our new Magento site. I am having troubles trying to create the actual product review in a script. Has anyone tried doing this before and know how to accomplish this? It looks like reviews use the entity models and I can't seem to get the review object to do what I want it t...

fatal error Varien_Autoload not found

Goodday everyone, I installed magento with the sample data I refreshed the page and everything seemed to work. My complete shop was filled with sample data. A couple of minutes after I refreshed again and since then I keep getting this error: PHP Fatal error: Class 'Varien_Autoload' not found in /var/www/vhosts/shop.cyberned.com/httpdo...

Magento loop through pages

I found enough documenatation about how to loop through all available categories in Magento, only the thing i want is to loop trough available pages in Magento to include them in my global navigation. So im asking you guys, someone knows how to do this? I imagine myself it should look something like this foreach ($this->getPages() as ...

how two website share same category and subcategory in magento

i have created a addom domain(website) on a primary domai now i want to my addon domai share all the category and subcategory in magento 1.4 please any body tell me or provide some link which help me to solve this problem..how both domain share same products category..thanks.. ...

magento bundle.js error

I just discovered on my site using magento 1.3.2.2 that on a bundled product, when adding different options the price does not change in internet explorer. It works fine in all other browsers however. In internet explorer I get the error message. Message: Object doesn't support this property or method Line: 34 Char: 9 Code: 0 URI: /ski...

Magento: Catalog Page 1 different from other pages

I want to setup the category catalog pages in Magento such that the first page contains the category image and the first three products in that category. Then the following pages contain six products per page without the category image. I can't figure out how this can be done. ...

packaging extensions in magento through magento connect manager..

Disallowed extension release file type. I am getting this error when trying to upload the package.xml. any help ... ...

addAttributeToFilter not working in magento 1.4

Hi All, I am using addAttributeToFilter but it is retrieving the wrong result: $collection->addAttributeToFilter(array( array( 'attribute' => 'Author_first_name_1', 'like' => "%" . trim(Mage::helper('catalogsearch')->getQuery()->getQueryText()) . "%", ), array( 'a...

New products by category in Magento

Hi all This should be supposed to be silly thing but it’s driving me nuts! All I want is to show the new products for a specified category, but all I get is new products from any category. Supposing I want to show up the category 74, I’ve tried almost any combination of that code {{block type="catalog/product_new" name="home.catal...

how i can make url in magento which do not end with .html

i have created two website now i want one of them all url of web site do not end with .html how i can do it.please help me. ...

internal server error during accessing magento admin

I have changed some setting in the URL rewrites in the Magento admin panel. Now, the URL is showing correctly on front end, but I am having a problem accessing the admin panel. It shows "internal server error with 500 error". Please help me with this problem. ...

Pulling in Magento Session Information is buggy

Hello, I am pulling in Magento session information on a custom page using this code structure: require_once ( "../app/Mage.php" ); umask(0); Mage::app("default"); Mage::getSingleton("core/session", array("name" => "frontend")); $session = Mage::getSingleton("customer/session"); $test = array(); //print_r($session); if($session->isLo...

how can i import all product of another website in my website running in magento

Possible Duplicate: how to import the all products of another site into magento site i have created two website in magento according my client requirement.now i want to import all the product which are running in another website.in to my created website in magento how can i do it.please some body provide me solution.help will ...

Can't override a core model in Magento

Hi, I’m trying to override Mage_Catalog_Model_Layer_Filter_Category. In system.log I’m getting a warning: Warning: include(Mycomp_Catalog_Model_Layer_Filter_Category.php): failed to open stream: No such file or directory in /var/www/magento/includes/src/Varien_Autoload.php on line 93 Warning: include(): Failed opening ‘Mycomp_Cat...

Magento Order Import Extensions, Commercial or Otherwise

Is there a standard third-party module that everyone/anyone is using for programming batch order imports in Magento? I need to do a complicated history import for a client, and the SOAP API doesn't have an order creation API, and an Order model existing in the system is dependent on so many other things already existing that it's not a...

update magento currency rates using custom php file

Hi all, I'm trying to use a custom file to update currency rates using cURL from my local bank and insert the data into the currency database table. Do I have to create a module to do that, or can I do that without creating a module? I intend to use cron too. Does anyone have any advice on how to achieve this, and are there any tutorial...

Magento: getting attributes from an attribute set without a product

I have set an attribute set in my Magento shop which has several binary attributes. For a pulldown I need a list of ALL the attributes inside this one attribute set, including their internal name and their label. Since this pulldown should appear in places that not necessarily have a product selected I can't go the usual route of "getti...