Hello friends,
I currently migrated my magento website to a different server, and here's the process I used:
1) made a dump of the database.
2) copied all the system files from the FTP to my hard drive.
3) emptied the VAR folder
4) emptied the media cache folders
5) replaced the strings in the SQL dump from http://www.oldsite.com to ht...
Hi,
I'd like to return the customers from Magento who where created the day before OR who where updated the day before. I tried to play with addFieldToFilter, without any success.
I also tried to manipulate Zend_Db_Select, no success.
So now I'm stuck!
Here are some of my tries :
$customer = Mage::getModel('customer/customer');
$cust...
I would like the user to be sent to the category landing page when the user clicks the category in layered navigation.
So instead of the user getting /category.html?cat=11, they would get /category/RedWidget.html?cat=11 when they click the RedWidget category.
I found this link, but his code doesn't work.
Thanks ahead of time!
...
I'm setting up a new store using 1.4.1
I'm trying sort the products in the list by the subcategories they belong to. At the top of list.phtml is
$_productCollection=$this->getLoadedProductCollection();
I tried adding sort filters to that by adding the line
$_productCollection->setOrder('category_ids', 'asc')->setOrder('name', 'asc')...
Ok so in install of magento in the knowlege-base says to changes permissions to 777. is that right that doesn't sound right to me at all in fact it sounds very insecure what should I do
...
On a Magento shopping cart, there are 2 forms that need to be filled out: shipping estimate and coupon code. Each refreshes the page after submitting the form. The shipping estimate form needs to be submitted before the coupon form so that the coupon can validate the country.
What I'd like to do is to call the shipping form's coShippin...
hi,
What is difference Difference Between Import All Products/import Product Stock when your importing a profile in Magento? Thanks
...
I am installing Clicky code on a Magento website. I would like to use their HTTPS tracker only on HTTPS enabled pages of Magento. How can I do this?
I tried
<?php if($_SERVER['https'] == 'on') : ?>
but that doesn't work.
Any suggestions on identifying HTTPS pages will be of great help!
Thanks.
...
I was having a problem with my Magento checkout whereby the browser was reporting that the page wasn't fully encrypted. I had a look and realised that one of the images was using http://
This is the code I was using to display the image:
getSkinUrl('images/search_button.png') ?>
As a temporary solution I have hard coded the full path ...
I'm trying to get some currency exchange rates in a seperate php file in magento and saving them:
<?php
// Initiate application
$mageFilename = 'app/Mage.php';
require_once $mageFilename;
Mage::app();
// Code to create my $rates array
/** CODE **/
foreach ($rates as $currencyCode => $currencyRates) {
Mage::getModel('directory/c...
Hi,
I'd like to add an attribute to products, and I want to do this programmatically. So I added a mysql-install-0.1.0.php to a module of mine, and I added this (inspired from existing examples) :
<?php
$installer = $this;
$installer->startSetup();
$installer->addAttribute('catalog_product', 'collection', array(
'type' ...
i have installed magento on http://www.example.com the url for it is http://www.example.com/Category/Subcategory but i want it to http://www.example.com/Storename/Category/subcategory. and i have also created a addon domin http://info.example.com/Category/subcatgory i need it as it is.how can i make my http://www.example.com/Storename/ca...
Hi,
I find that I can add own layout handles with this script:
$this->getLayout()->getUpdate()->addHandle('myhandle');
Then I checked Alan Storm Layout viewers: http://alanstorm.com/2005/projects/MagentoLayoutViewer.tar.gz
?showLayout=handles
Handles For This Request
default
cms_page
STORE_default
THEME_frontend_def...
I have no doubt magento can handle multiple stores, but I was wondering if each stores can handle with such specific user wherein they can access their catalog, sales, inventory, etc like administrator, but limited only on their specific store.
Here's my sample representation:
Magento website:
->Store Categories
-->Store1
...
Hi,
The import products profile allows you to filter which products to export by name, sku...
I want to have the same functionality in the manage products page.
The admin will filter products in the grid and then click a "export" button to get the filtered products.
How can I add the "export" button? what template/block do I need to ov...
Hi, i've been triyng to change the default result page of magento, i want the products grouped by categories, it don't include the subcategories but the products, the search criteria is the product name, so, i was triyng to use the defalt simple search of magento, untill now no result, maybe i have to override the search and make a new o...
Will appreciate any ideas on this error in Magento 1.4.1.1. I wonder why this happens but Magento 1.4.0 and Magento 1.3.2.4 works fine.
The error is caused by accessing Magento Sales Shipment List API with "order_created_at filter. This filter worked in previous versions but with this version it fails.
I wonder why this could happen.
...
Does anyone know if it's possible to create one of the stores with magento where visitors have to log in first before being able to browse through categories and products?
I need it for one client who wants to have a section for retail and separate for wholesale customers.
...
I need a suggestion on what Standard Magento version the Enterprise version 1.8.0 could be based?
Possible answers are:
1.4.0
1.4.0.1
1.4.1.0
1.4.1.1
We have one customer with a error related probably to one of the versions which can be found on forum. But to proof that it's related to certain error I need to know to what version 1.8...
I have a template file under the 'page' directory. This template has been assigned to be a category's 'Page Layout' through the backend. In this template I have a configurable product object.
The following pulls in the view, but all it has in it is the product's name and short description.
$prod = /* get product object here */;
$layo...